I’ve move this article to my troubleshooting blog. Please go here
This entry was posted on November 3, 2006 at 11:38 am and is filed under Tips & Tricks.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
when i tried to open gpedit.msc (look for it in C:\Windows\System32\),following error message is coming ,
Access restircted gpedit.msc . i don’t know what is the actual problem or my pc is infected.plz reply.
i tried to install TWEAK UI on my PC but a message would say that it is disabled by the administrator. how can i enable it ? i hope you guys can help me.
Hello Black Mind and all others affected by the same problem
Copy the following code,paste in any notepad and save as “regtools.vbs” file. Just double click it and you will get yor regedit enabled.(Be careful to copy the code exactly as presented here including everything.
Cath said
RUN command is shown in start menu but when i run the regedit an error comes out. How to run the reg edit?please help
Phil said
What error comes out?
Try typing in regedit.exe instead of just regedit?
hahaboy said
hey man thanx it works
i was tired searching the web on how to solve
thanxxxxxxxx alottttttttt
I’m just glad it solved your problem, dude
Sushil said
when i tried to open gpedit.msc (look for it in C:\Windows\System32\),following error message is coming ,
Access restircted gpedit.msc . i don’t know what is the actual problem or my pc is infected.plz reply.
Nik said
Your PC is most probably infected. Try downloading NOD32
Stacy Fabian said
that’s why it will never wor. Stacy Fabian.
vic said
i tried to install TWEAK UI on my PC but a message would say that it is disabled by the administrator. how can i enable it ? i hope you guys can help me.
copycat said
Hello Black Mind and all others affected by the same problem
Copy the following code,paste in any notepad and save as “regtools.vbs” file. Just double click it and you will get yor regedit enabled.(Be careful to copy the code exactly as presented here including everything.
Code goes here…….
___________________________________________________________________________________
‘Enable/Disable Registry Editing tools
‘© Doug Knox – rev 12/06/99
Option Explicit
‘Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype
Set WSHShell = WScript.CreateObject(”WScript.Shell”)
p = “HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\”
p = p & “DisableRegistryTools”
itemtype = “REG_DWORD”
mustboot = “Log off and back on, or restart your pc to” & vbCR & “effect the changes”
enab = “ENABLED”
disab = “DISABLED”
jobfunc = “Registry Editing Tools are now ”
‘This section tries to read the registry key value. If not present an
‘error is generated. Normal error return should be 0 if value is
‘present
t = “Confirmation”
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number
if errnum 0 then
‘Create the registry key value for DisableRegistryTools with value 0
WSHShell.RegWrite p, 0, itemtype
End If
‘If the key is present, or was created, it is toggled
‘Confirmations can be disabled by commenting out
‘the two MyBox lines below
If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If