Garciat Posted January 2, 2009 Posted January 2, 2009 I know there are plugins ready for slipstreaming WinRAR, but I want to change a registry value once it's done installing:[HKEY_CURRENT_USER\Software\WinRAR\Setup]"CascadedMenu"=dword:00000001How can I do this?Thanks!PS: I can extract/create CABs, so no need to explain that
nomadturk Posted January 2, 2009 Posted January 2, 2009 Save that as a .reg file, run it at the end of your RunOnceEx.cmd with the command belowRegedit /S %CDROM%\YourFile.Reg(assuming you use a cdrom variable.)
MAVERICKS CHOICE Posted January 2, 2009 Posted January 2, 2009 You could also incorporate it into a cleanup file following your app. installs.
radix Posted January 2, 2009 Posted January 2, 2009 REG ADD "HKCU\Software\WinRAR\Setup" /v "CascadedMenu" /t REG_DWORD /d 1 /f
Garciat Posted January 2, 2009 Author Posted January 2, 2009 (edited) Thanks for the responses! Edited January 2, 2009 by Garciat
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now