How to enable Task Manager , Registry Editor, Hidden Folder Option , Run promt, Search Option disbale by Virus
Saturday, April 10, 2010
Viruses ?
In some cases, when computers are infected and some Windows applications are blocked by Viruses, this means that you are unable to run those applications even if the Viruses are already cleaned up from your computer. This case, you have to use scripts or applications to enable the blocked applications after the Viruses are killed.
Applications that are often blocked by Viruses:
* Task Manager (taskmgr.exe)
* Registry Editor
* Folder Option
* Run promt
* Search Option
How to enable them in Windows XP
Copy some scripts bellow → Paste in Notepad → Save as VBScript (*.vbs) → run that file
You may need administrator permission.
To enable Task Manager (taskmgr.exe)
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\POLiCIES\System\DisableTaskMgr", "0", "REG_DWORD"
To enable Registry (Regedit)
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\POLiCIES\System\DisableRegistryTools", "0", "REG_DWORD"
To enable Folder Option
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\POLiCIES\EXPLORER\NoFolderOptions", "0", "REG_DWORD"
To enable Run
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\POLiCIES\EXPLORER\NoRun", "0", "REG_DWORD"
To enable Search Option
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\POLiCIES\EXPLORER\NoFind", "0", "REG_DWORD"
Thursday, August 5, 2010
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment