Re: Silent Install using command switches in a batch command
Place "<Silent>" switch in batch file as below:
Add taskkill to make it completely silent:
Echo Installing dBpowerAMP and Codecs...
start /wait %systemdrive%\Install\dBpowerAMP.exe "<Silent>"
taskkill /F /IM musicconverter.exe
Echo Done!
"<Silent>" works for codecs as well, but taskkill is not necessary for these.
Place "<Silent>" switch in batch file as below:
Add taskkill to make it completely silent:
Echo Installing dBpowerAMP and Codecs...
start /wait %systemdrive%\Install\dBpowerAMP.exe "<Silent>"
taskkill /F /IM musicconverter.exe
Echo Done!
"<Silent>" works for codecs as well, but taskkill is not necessary for these.
Comment