My sister needed a computer for reviewing for her medical exams so I lent her my old (ancient?) IBM Thinkpad X22 which is running Kubuntu. She needed Skype to be able to talk to her hubby who is in the US so we downloaded and installed Skype. Well, what do you know? It actually installed and ran without a hitch. Linux definitely has come a long way. If it we’re not for my games, I would have it on my Asus EEE PC 1000H. I wonder if it’s time to check out Wine, the Linux Windows Emulator, again. Hmmm.
Comment on source code:
/*
I’ve said it before, and I’ll say it again:
the following chunk o’stuff should likely be in common.jsp
since it’s used in several places.
When I get some free time, I’ll add it and will clean up
the pages that are using it. –MJ
I don’t believe that because MJ no longer works here. — TF
10 Mar 2001.
*/
RegEdit and Task Manager are two useful Windows tools for managing your computer. RegEdit allows you to edit the Windows registry, a global configuration setting repository. Task Manager, on the other hand, allows you to start and stop applications and processes among others.
What’s one use for these tools? Malware cleanup. Typically viruses, worms, and other malware would be hooked up into your registry to run upon Windows startup. You need to stop the malware process using Task manager. Press Ctrl-Alt-Delete, Select the Processes tab, choose the malware process, and click End Process. Of course you’ll need to know the name of the process. If I don’t, I would normally just stop everything I can and then run regedit :P
Once the malware process is (hopefully) stopped, you would want to be able to edit out their entries in the registry using RegEdit. Click Start->Run…, type “regedit”, and press Enter. Typically malware startup values would be under “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run”). Just carefully delete them.
Now here’s a problem: Some malware disables both these tools. The solution? Use alternate tools that provide the same or even bettter functionality such as RegAlyzer and Task Killer.
One big cause for your computer getting infected by viruses, worms, and other malware would be Window’s autorun “feature”. Plug in a hard disk, optical disk, memory card, etc and autorun launches and runs a program. Guess what that program usually is? Yup, malware.
So one of the easiest ways to protect your computer is to simply disable autorun. There are many ways to do it but by far, this procedure from annoyances.org works best for me:
- Click Start->Run…
- Type “regedit” and press Enter.
- Navigate the tree on the left pane to “My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies”
- Expand “policies”
- If there’s no “Explorer” folder, right-click “policy” and select New->Key. Type “Explorer” and press Enter.
- Open the “Explorer” folder.
- If there’s no “NoDriveTypeAutoRun” entry on the right pane, right-click on it and select New->DWORD Value. Type “NoDriveTypeAutoRun” and press Enter.
- Right click on “NoDriveTypeAutoRun” and select Modify
- Enter “ff” on the Value Data Field and select Hexadecimal for Base. Click OK
- Close Regedit
- As with anything you do in Windows, restart your computer.
Voila! No more autorun.
So I started reporting back to the office as per instruction. And what do I learn when I got there? We were to report to the client tonight! Good thing they had the mind to let us go home right after the meeting to prepare. I’m off to sleep after this.