Command line used after creating setup.iss
After you create the setup.iss file, what is the command line you should use to facilitate a silent installation with SCCM?
0 Comments
[ + ] Show comments
Answers (4)
Answer Summary:
Setup.exe -s -f1"" -f2""
Setup.exe -s -f1"" -f2""
Please log in to answer
Posted by:
Sweede
12 years ago
Just like normal commandline
setup.exe -s
will take setup.iss if exits in setup folder
Setup.iss = default name taken by default
Comments:
-
on General tab below Commandline: select Run: hidden - Sweede 12 years ago
Posted by:
Sweede
12 years ago
Posted by:
newbie123
6 years ago
As per some of the other gracious respondents:
InstallShield Installer will generate a setup.iss file with the -r switch
You must go through the setup wizard and make your choices regarding the install folder, desktop shortcuts, etc.
MyInstaller.exe -r
The 'setup.iss' file will show up in 'C:\Windows'
To run the installer silently after creating the setup.iss file:
try:
MyInstaller.exe /S /v"/qn" /f1"c:\windows\setup.iss" /f2"c:\windows\mylogfile.log"