Friday, June 6, 2008

Enable and disable regedit program

Hi reader,
Function this program is for enable and disable regedit. OK, now open your notepad and type this code :


var vbCancel = 2;
var vbYesNoCancel = 3;
var vbYes = 6;
var vbNo = 7;
var vbQuestion = 32;
var vbInformation = 64;
var natan = WScript.CreateObject("WScript.Shell");
var pesan1 = "Regedit safe guard option:\n\n"+
"[Yes] For regedit deactived\n"+
"[No] Regedit actived.\n"+
"[Cancel] Exit\n\n"+
".::technology juice::.\n\n"+
"Are you sure to regedit deactived now?"
var tanya = natan.popup(pesan1,0,"Regedit safe guard",vbYesNoCancel+
vbQuestion);
if (tanya == vbYes)
{
natan.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion"+
"\\Policies\\System\\DisableRegistryTools",1,"REG_DWORD");
pesan2 = "Regedit Diactived!"
natan.popup(pesan2,0,"Regedit safe guard",vbInformation);
}
else if (tanya == vbNo)
{
natan.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion"+
"\\Policies\\System\\DisableRegistryTools",0,"REG_DWORD");
pesan3 = "Regedit Actived!"
natan.popup(pesan3,0,"Regedit safe guard",vbInformation);
}
else
{
natan.popup("Exit",0,"Regedit safe guard",vbInformation);
}


and last save as *.js

run with double click or right click and chose open with command promt.

click Yes for disable regedit, click No for enable regedit and Cancel for Exit.

Easy....




source : XCode magazine

No comments: