Repair Common Setting in Windows XP after Virus Infection
This code will enable some restriction tha virus made to the system especially disable registry tools…
you can execute this code by paste it to notepad and save as vbs document….
for example repair.vbs
On error resume next
Dim Reg
Set Reg = CreateObject(”WScript.Shell”)if msgbox(”Aktifkan Start Menu RUN” , VbOkCancel) = VbOK then
Reg.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\Curr entVersion\Policies\Explorer\NoRun”, “0″, “REG_DWORD”
end ifif msgbox(”Aktifkan Regedit” , VbOkCancel) = VbOK then
Reg.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools”, “0″, “REG_DWORD”
end ifif msgbox(”Lihat File Tersembunyi (Hidden)” , VbOkCancel) = VbOK then
Reg.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\Advanced\Hidden”, “1″, “REG_DWORD”
end ifif msgbox(”Aktifkan Menu Find” , VbOkCancel) = VbOK then
Reg.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFind”, “0″, “REG_DWORD”
end ifif msgbox(”Aktfikan Menu Option” , VbOkCancel) = VbOK then
Reg.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFolderOptions”, “0″, “REG_DWORD”
end ifif msgbox(”Aktfikan Taskmanager” , VbOkCancel) = VbOK then
Reg.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr”, “0″, “REG_DWORD”
end if