Enable Registry

Some times when you try to open registry you gets error message That “Administrator Disable registry” but you are the the admin of that pc it couse by some virus you can enable registry simply follow the stapes.
copy & paste below code in notepad

‘Enable Registry Editing’
‘© Veegertx – 4/7/2004
‘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 “HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystemDisableRegistryTools”
WshShell.RegDelete “HKLMSOFTWAREMicrosoftWindowsCurrentVersionPoliciesSystemDisableRegistryTools”

‘display message
Message = “You should have access to Regedit now”

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

SAVE AS EnableRegistryEdit.vbs