2 May


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”.

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 ]
[tags]reg2exe, registry, convert, exe, regedit[/tags]
: Copying this article to your website is strictly NOT allowed. However, if you like this article, you can use the HTML code below to directly link to this article.
Restore Corrupted Folder Options Advanced Settings Caused by Virus Restore Task Manager, Regedit and Folder Options Disabled by Virus How to delete individual URLs from Firefox address bar history Download from MegaUpload Without Limit with Premium Link Generator Full Control Permission to Delete or Edit Restricted Windows Registry Fix Internet Explorer RunOnce2.aspx Customize Your Settings Problem GMER is a Powerful Rootkit Detector and Remover
Have computer technical problems? Get FREE help from Raymond.CC FORUM
Nice info. But it would be helpful for many users if you can give the converted exe reg for enabling regedit.
Why Unregister button doesn’t work?
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
very nice ray! xD
Another great ans useful tip, thanks mate, cheers!
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.
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……..
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.
Another Nice tool Raymond :-)
Thanks Raymond very useful for me im a software dev many thanks again
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 !!!
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.
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
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
i can disable my monitor power by regedit.please tell me this procces.