I created a setup.exe for my project using Install-shield Limited for visual studio 2015. I was able to run it silently with this command line:
Setup.exe /s /v/qb
It works fine. Now I want to run the installed application after completing the installation. How can I do it?
(I prefer to add something to the above command-line to do this).
EDIT: There is another question like mine. That question wants to run application after installation too. but my question is to run after silent installation (using command-line) and the other question is to run after a normal installation by user. I tried the answers of that question before and they don't work in my case.
setup.exe /s /v/qb & "C:\Program Files (x86)\Company\Product\program.exe"should do the trick. - Michael Urman