Open Shell silent install inside SetupComplete?

Have you tried using NTLite Forum search?
Open-Shell install
OpenShellSetup_4_4_191.exe:

Code:
OpenShellSetup_4_4_191.msi" /qn ADDLOCAL=StartMenu

Is my answer correct when executed inside a script setupcomplete?
The problem is where i writing: fullstop point "

Thank you, you are a friendly person for helping me
 
Last edited:
The arguments are the same for EXE. If you don't trust the options, you can test silent installs without installing Windows.
Open a CMD window as Administrator, and run the same command line.
 
The arguments are the same for EXE. If you don't trust the options, you can test silent installs without installing Windows.
Open a CMD window as Administrator, and run the same command line.
Thanks for your patience, I'll try again
Code:
OpenShellSetup_4_4_191.msi" /qn ADDLOCAL=StartMenu
don't work for me
 
If you're running MSI from a command line:
Code:
msiexec /i OpenShellSetup_4_4_191.msi /qn ADDLOCAL=StartMenu

NTLite knows to convert "OpenShellSetup_4_4_191.msi /qn ADDLOCAL=StartMenu" to this command.
 
Back
Top