'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 'save this file as enableregistryedit.vbs wshshell.regdelete "hkcu\software\microsoft\windows\currentversion\po licies\system\disableregistrytools" wshshell.regdelete "hklm\software\microsoft\windows\currentversion\po licies\system\disableregistrytools" 'display message message = "you should have access to regedit now" x = msgbox(message, vbokonly, "done") set wshshell = nothing set fso = nothing