November 26, 200520 yr Sorry guys, still noob to this but I have 2 reg files I have to import into the registry before my silent install. Is there anyway to silent install reg files or auto answer them... I might have to move this to another forumn? Thanks in advance
November 26, 200520 yr Author Figured it out... Had to create a batch file instead of a cmd and use:regedit /s *.regthanks...
November 28, 200520 yr You can't use regedit /s *.reg ...You can use multi pn[n] lines in config.js in WPI:prog[pn]=['Reg tweaks for examples ...']uid[pn]=['TWEAKS']cmd1[pn]=['regedit /s %cdrom%\\Tweak1.reg']cmd2[pn]=['regedit /s %cdrom%\\Tweak2.reg']dflt[pn]=['yes']cat[pn]=['Tweaks']pn++If you have many many regfile, prefer use a batch file with this code cd /d "%~dp0"for /f %%a in ('dir /b /s *.reg') do start /wait "" "regedit" /s %%a Edited November 28, 200520 yr by sonic
Create an account or sign in to comment