Monday, September 15, 2008

Re-Enabling Regedit

Sometimes, computer virus created protection so we can do several thing on our computer like opening Task Manager (Ctrl-Alt-Del), Start Up Configuration (MsConfig), Registry Editor (Regedit), or even to do "run" or "find" in your own computer!!.

But i won't go to far now. I assumed you understand what Regedit is, and you have any idea what does regedit used for. Here i will explain how to manually open regedit which had been closed by viruses, so you can repair your windows from damage causes by virus. (someday, i will write full tutorial to repair damage because of computer virus :D).

Copy this text into notepad and save it as .vbs file

dim yonatan
masuk()
sub masuk()
set yonatan = wscript.CreateObject("wscript.shell")
keterangan = "Pilihan:" & vbcrlf &_
"[0].Enable Regedit." & vbcrlf &_
"[1].Disable Regedit." & vbcrlf & vbcrlf &_
"[Program Karya Bangsa Indonesia]"
tanya = inputbox(keterangan,"Edit Regedit",0)
yonatan.RegWrite"HKCU\Software\Microsoft\Windows\CurrentVersion" &_
"\Policies\System\DisableRegistryTools",tanya,"REG_DWORD"
if tanya=1 then
msgbox "Registry Disabled",vbInformation,"Edit Regedit"
else if tanya=0 then
msgbox "Registry Enabled",vbInformation,"Edit Regedit"
yonatan.RegDelete"HKCU\Software\Microsoft\Windows\CurrentVersion" &_
"\Policies\System\DisableRegistryTools"
else
msgbox "Enter 0 or 1!",vbInformation,"Edit Regedit"
masuk()
end if
end if
end sub


This tiny program was created by Indonesia people to help repair computer because of virus's attack. After created that file, just double click it and enter "0" or "1" to Enable or disable The Registry Editor.

That's it :D

Related Posts by Categories



0 comments:

Template by - Abdul Munir - 2008