How can I make my NSIS silent installer block until complete? -
when run silent nsis installer (from console, in installer.exe /s /d=c:\foo
) moves background. i'd wait until has finished installing before else. there flag can pass tell installer blocking?
you don't how start process in question! nsis installers "blocking", silent installer means have wait child process end.
if parent process nsis installer can execwait '"c:\path\to\installer.exe" /s /d=c:\foo'
or if batch file must use start "" /wait "c:\path\to\installer.exe" /s /d=c:\foo
Comments
Post a Comment