Tuesday, February 13, 2007

Task Manager di disable

bagaimana cara meng-enable task manager yang dikunci oleh virus ataupun oleh admin
caranya ketik script dibawa ini di notepad dan simpan menggunakan extention hancur.vbs

-----------------cut here ----------------------------------------------------------

Dim WshShell
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKCU\software\microsoft\windows\currentversion\policies\system\DisableRegistryTools", "0", "REG_DWORD"
WshShell.RegWrite "HKCU\software\microsoft\windows\currentversion\policies\system\DisableTaskMgr", "0", "REG_DWORD"


MsgBox "Akses registry telah kembali normal", 4096, "topengdigital"

------------------cut here --------------------------------------------------------