Thursday, February 11, 2010

Want To Corrupt System Files

To make changes, modification etc. in system files you need to have full control on regedit. But whenever i open regedit ,it shows it has been disabled by your administrator. Many of you face this problem so I decided to come up with a solution. I've found a Script to solve this problem and gives you the access to bring modification in registry ;-) 






Here's the script :-

'Enable Registry Editing'
'© PsyhcoCoding - 12/02/2010
'This code may be freely distributed/modified
On Error Resume Next
'Prevents errors from values that don't exist
Set WshShell = WScript.CreateObject("WScript.Shell")
'Delete DisableRegistryTools registry values

WshShell.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
WshShell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"

'display message
Message = "Hey i m PsychoCoding. You should have access to Regedit now"

X = MsgBox(Message, vbOKOnly, "Done")
Set WshShell = Nothing
Set fso = Nothing



Save the above script as "Anyname.vbs" in notepad.

0 comments: