convert .reg file
I'm just getting started with NSIS but was wondering is there an easy way to convert a .reg file into a NSIS script since this file has over 300 registry entries
6 posts
GetTempFileName $R0
File /oname=$R0 myreg.reg
ExecWait 'RegEdit.exe /S "$R0"'
Delete $R0 /S tells RegEdit to not show the dialog box asking the user if he's sure.