Changes

FAQ

16 bytes added, 12:01, 30 March 2013
My install command just stalls and never finishes
<install cmd='%SOFTWARE%\my-installer.exe /S' />
can be turned into:
<install cmd='%SOFTWARE%\my-installer.exe /S >NUL 2>&amp;amp;1' />
or re-directing the output to a file:
<install cmd='%SOFTWARE%\my-installer.exe /S >%TEMP%\install-log.txt 2>&amp;amp;1' />
This effectively prevents the buffer to fill up and your commands will finish properly.
Anonymous user