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
‘© 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.
‘Delete DisableRegistryTools registry values
WshShell.RegDelete “HKCUSoftwareMicrosoft
WshShell.RegDelete “HKLMSOFTWAREMicrosoft
‘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