Raymond.CC Blog
  • Home
  • Forum
  • Giveaway
  • X-Ray 2.0
  • Contact
  • About
  • I’m Feeling Lucky
Search the site...
You are here: Home » Computer » Reg2Exe Converts REG to EXE to Bypass Registry Editing Restriction

Reg2Exe Converts REG to EXE to Bypass Registry Editing Restriction

Updated by Raymond - 1 year ago - Computer
15
  • Like
  • +1
  • Tweet
  • Printer Friendly and PDF

It is possible to disable regedit in Windows by adding a DWORD value DisableRegistryTools in registry and setting the value data as 1. Obviously this restriction is meant for administrators to protect their computers in network from being messed around by the users but virus makers has used this feature to prevent the “not-so-leet” users from accessing the registry to possibly remove the virus from autorun. Normally you will see a message that says “Registry editing has been disabled by your administrator” if regedit has been disabled.
registry editing has been disabled by your administrator
At first I thought I could easily restore the changes by creating a .reg file that changes the DisableRegistryTools value data to 0 and then import it to a computer that has regedit disabled but I was wrong. When regedit has been disabled, there is no way to import a .reg file when you double click on it. So I’ve been using Remove Restriction Tool or RRT in short to enable back registry. There are times when RRT couldn’t run on a virus infected computer and I had to use other method such as using vbscript. Here’s another solution which is to convert the REG file to EXE so that it can import itself to registry without regedit.exe.

Reg2exe is a free and small tool that creates an EXE file from a registration (.reg) file. By executing the exe file, all settings within the reg file will be imported to the the windows registry. There are advantages in using the built-in Windows reg files or the exe file created by reg2exe.
reg2exe
For a .reg file, you can check what you import and modify easily using notepad. It also warns before you can import, the reg file is smaller in size and can be imported from DOS mode. As for exe reg file created by reg2exe, there won’t be warning when you import, can’t be easily modified and doesn’t require windows built-in regedit.exe.

It’s very easy to use reg2exe to convert a reg file to an exe. Just download the archive package from the link at the end of this article, run Reg2exe.exe and click the Register button. Now, you can simply right click on a .reg file and select “convert to exe”.
convert reg to exe
Within seconds, a new EXE file will appear at the same location as the reg file. If you encounter a computer that has registry editing tools disabled, just run the EXE file that you converted from a reg file and the settings will be imported.

Like I said earlier, you can import a registry setting using vbscript (.vbs) but it requires a little programming knowledge in order to convert a reg file to vbs. If you don’t want to waste your time in learning vbscript or begging for help in programming forums, then just export the reg file and convert it to exe using reg2exe.

[ Download Reg2Exe ]

You may also like:

4 Tools to Decode and Convert Windows Registry Hex Values to Text4 Tools to Decode and Convert Windows Registry Hex Values to TextDetect Packet Errors in Your Network LAN Connection StatusDetect Packet Errors in Your Network LAN Connection StatusDisable Write Access to USB Removable Storage DevicesDisable Write Access to USB Removable Storage DevicesFix or Restore Broken .EXE .LNK .COM Association Caused by VirusFix or Restore Broken .EXE .LNK .COM Association Caused by Virus

15 comments on “Reg2Exe Converts REG to EXE to Bypass Registry Editing Restriction”

  1. adhir ch. mondal says:
    2 years ago

    i can disable my monitor power by regedit.please tell me this procces.

    Reply
  2. eseth2k says:
    3 years ago

    For standalone Windows XP systems,This error is caused if the DisableTaskMgr restriction is enabled.

    To enable Task Manager, try one of these methods:

    Method 1: Using the REG.EXE console tool

    1. Click Start, Run and type or copy this command:

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

    try tyiping

    Reply
  3. eseth2k says:
    3 years ago

    For standalone Windows XP systems, perform the steps below to remove the registry editing restrictions.

    Method 1: Using the REG.EXE console tool

    1. Click Start, Run and type this command:

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

    exit

    Reply
  4. EDu says:
    4 years ago

    This program may be usefull for beginners and people who have malware and cant get rid of it somehow and needs to urgently merge some registry scripts into the registry.

    One can easily bypass this restriction by using a vbscript file (Wscript.Shell object has a method called RegWrite, in which u can edit the registry under the Wscript.exe program. other programs can instantiate activex such as IE, Windows Explorer, mshta, HTML Help, etc because they utilize the IE webbrowser control.

    Also it is possible to edit the registry using an INF file. This type of script has among other features the ability to write to the windows registry under Rundll32.exe.

    You can use the command line registry editor too, the comand line tool reg.exe, that comes on Windows 2000 and above.

    Reply
  5. mohan says:
    4 years ago

    Nice Hack! Thanks for the Excellent Idea!
    Is there any possibility of guests changing the registry without administrator by using the
    REGtoEXE?
    @BillytheGreat:Thanks for the VBscript !!!

    Reply
  6. Amirz says:
    4 years ago

    Thanks Raymond very useful for me im a software dev many thanks again

    Reply
  7. Firas says:
    4 years ago

    Another Nice tool Raymond :-)

    Reply
  8. Steven Mills says:
    4 years ago

    With more and more programs mucking with permissions, this is a nice tool.

    On another note – I wish there was a good alternative to RRT. That’s the most irritating program I think I’ve ever used.

    Reply
  9. 123vso says:
    4 years ago

    gt8 tip.but i am too agree with ,razor.it will be much great if you can give even the .reg file that enables the registry……..

    Reply
  10. ha14 says:
    4 years ago

    Sometimes when clicking on the reg the reg key is not imported and this tiny soft can come to help. Good soft did it again. Thanks.

    Reply
  11. roy raay says:
    4 years ago

    Another great ans useful tip, thanks mate, cheers!

    Reply
  12. Za3mOn says:
    4 years ago

    very nice ray! xD

    Reply
  13. BillyDaGreat says:
    4 years ago

    Other mention to enable regedit back:

    -open notepad
    -write down this script :
    **********************************************
    Option Explicit
    Dim WshShell, strUserName, strDomain, strSID
    Dim objWMIService, colItems, objItem, arrName, objAccount

    Set WshShell = WScript.CreateObject(“WScript.Shell”)
    Set objWMIService = GetObject(“winmgmts:\\.\root\cimv2″)
    Set colItems = objWMIService.ExecQuery(“Select * From Win32_ComputerSystem”)

    For Each objItem in colItems
    arrName = Split(objItem.UserName, “\”)
    strDomain = arrName(0)
    strUserName = arrName(1)
    Next

    Set objAccount = objWMIService.Get _
    (“Win32_UserAccount.Name=’” & strUserName & “‘,Domain=’” & strDomain & “‘”)
    strSID=objAccount.SID

    If trim(strSID) “” then
    WshShell.RegDelete (“HKEY_USERS\” & strSID & “\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools”)
    Msgbox “Completed!”
    End if

    **********************************************
    -save as regrepair.vbs
    -double click the regrepair.vbs
    -regedit.exe has been successfully enable

    Reply
  14. Aloha says:
    4 years ago

    Why Unregister button doesn’t work?

    Reply
  15. razor says:
    4 years ago

    Nice info. But it would be helpful for many users if you can give the converted exe reg for enabling regedit.

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

New Articles

  • task manager replacement icon

    Memory Usage Test to See Which is the Lightest Antivirus Software

  • kaspersky antivirus 2013 icon

    Activate Free Kaspersky Anti-Virus 2013 ROG with 1 Year License

  • remote access software

    Top 8 Remote Access Software for Providing Online Support

Popular Posts

  • Top 10 FREE Data Recovery Software

    Top 10 FREE Data Recovery Software

  • How to Hack Into a Windows XP Computer Without Changing Password

    How to Hack Into a Windows XP Computer Without Changing Password

  • 10 Free Software to Mount CD or DVD ISO Image File as Virtual Drives

    10 Free Software to Mount CD or DVD ISO Image File as Virtual Drives

Recommend on Google
Follow @raymond_cc
Subscribe Youtube »
(c) 2013 Raymond.CC Blog
  • Disclaimer
  • Disclosure
  • Privacy Policy
  • Terms of Use
  • Sitemap