Well I am a little hyper today and a bit dramatic :p its just cuz the problem that viruses cause today are not only insane but really gets on your nerves even if your realllllly geeky. Once such problem hit me last week, I have a routine I’ve get hit by a virus, first I try to take my meds, get a good sleep, make a doctor’s appointment if it gets really worse….no WAIT!!! ….what am I doing? thats the wrong routine
let me start over. I meant to say that i have a routine when MY COMPUTER gets hit by a virus. Well I am little aware of what common viruses would do today with the help of creating registry keys. I pulled a few strings to learn more about what sort of registry keys would be malicious in my registry, I used to track them down and erase them for good. As far as the task manager is concerned, I use it to track down the culprit virus process that is hiding in the memory and creating the registry keys at every regular bootup. But some smart a$$ virus thinks it can ruin my day by disabling my tools of the trade (regedit & taskmanager) whilst carrying out its dirty work as usual. Well fear no more friends, I am about to put a solution in here for viruses like that which I am sure will make your day
when you end up in a situation like I did. Although there are numerous free tools and fixes in the internet to enable regedit , task manager bla bla, I am of the mindset, “you can do anything to make your life easier but never let that stop your geeky side to grow
” . Well lets talk business now shall we?….
I assume that you’ve been infected by a virus that has disabled all the required system tools that can possibly bring it down. So to renable everything follow the steps:
1.Make sure you have administrative privileges to your account.
2.Open command prompt and type the following:
“REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f” [without quotes]
“REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableSR /t REG_DWORD /d 0 /f” [without quotes]
“REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f” [without quotes]
“REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisallowRun /t REG_DWORD /d 0 /f” [without quotes]
“REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v NoControlPanel /t REG_DWORD /d 0 /f” [without quotes]
3.If hypothetically, command prompt is disabled too then you have to open a new text document and create a .reg file. Its content should be as follows, its copy and paste friendly ![]()
————————————
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
“DisableTaskMgr”=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
“NoControlPanel”=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
“DisableSR”=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
“DisallowRun”=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
“DisableRegistryTools”=dword:00000000
————————————-
4.Save the file with a name followed by “.reg” extension and then double click that reg file to add those entries into the registry.
5.Either method gives the same result, so its simply based on the fact whether your command prompt is malfunctioning or not.
6.There its done!! but before I finish, in step two I am using standard dos commands to do the job, which means the /d /t and /f are options to be used whilst the key is being added to the registry.
/v denotes the name of the New value to be added.
/t denotes the type of value to be added , be it BINARY or DWORD etc.
0 denotes the value that the key will hold once it is created. It can be 1 or 0 if its a DWORD key.
/f denotes to forcibly change the value of the key if the registry key already exists(because of the virus, which creates the key and sets the value to 1, where you set it back to 0)
I hope this tip helped you out, so until next time, take care
and thanks for reading
Tech Talks