TECH CORNER

Bite Into Technology

REGEDIT Disabled by administrator!

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

‘Code:

Option Explicit

Dim WSHShell, n, p, enab, disab,itemtype

Set WSHShell = WScript.CreateObject(“WScript.Shell”)

p = “HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\”

p = p & “DisableRegistryTools”

itemtype = “REG_DWORD”

n = WSHShell.RegRead (p)

If n = 0 Then

n = 1

WSHShell.RegWrite p, n, itemtype

MsgBox(” Registry Disabled”)

ElseIf n = 1 then

n = 0

WSHShell.RegWrite p, n, itemtype

MsgBox(“Registry Enabled”)

End If

January 15, 2008 - Posted by increa | Windows Hacking | | 12 Comments

12 Comments »

  1. That shows how weak is Windows. Windows admins beware of the pitfall…

    Comment by Balaji Ramakrishnan | January 17, 2008 | Reply

  2. invalid character was code 800A0408.. there was an error with the compilation of the code.

    Comment by Jenny | June 16, 2008 | Reply

  3. Hi Jenny here is there another way u try this.
    Just copy the below code and paste in start->Run then click ok.

    To Enable:

    REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f

    To Disable:

    REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 1 /f

    If it work successfully send ur feedback.

    Comment by increa | June 16, 2008 | Reply

  4. It works

    Comment by Nitin | July 18, 2008 | Reply

  5. tnx jenny… it works

    Comment by Salvador^^,™ | August 13, 2008 | Reply

  6. Hi jenny!
    it works
    :)
    thnx

    Comment by Dheeraj | October 19, 2008 | Reply

  7. Hi Increa, it works, thanks so much for your quick fix, been trying all options to get the registry access back including the group edit templates, this was just brilliant !

    thanks again!

    Comment by Asif | November 4, 2008 | Reply

  8. Hi Increa,
    Worked first time – thanks.

    Comment by Mike | January 5, 2009 | Reply

  9. Hi Increa,

    Worked Great!!!!! Hallejulah!!!

    Comment by Gerry | January 8, 2009 | Reply

  10. Hello webmaster
    I would like to share with you a link to your site
    write me here preonrelt@mail.ru

    Comment by Alexwebmaster | March 3, 2009 | Reply

  11. It works! you are genius!

    Comment by Vicki | August 11, 2009 | Reply

  12. It works..

    Great!!!!!!

    Comment by Arun | September 3, 2009 | Reply


Leave a comment