How would I export a registry entry into a .REG file?
I've been working on making an application usable from a USB drive, with changeable settings, and those come from the registry. Up to this point, I have the program load a .reg file into the registry with:
RunWait("regedit.exe /s File.reg", @ScriptDir)
and at the end, I have it running:
RunWait("regedit.exe /s File2.reg", @ScriptDir)
File2.reg removes the registry entries.