Host Driver Unattended Installation Tips

Host Driver Unattended Installation Tips

Installer Command Line options

1) Silent install

Quiet mode (there is no user interaction), this will set the UI level to no UI.
Usage:
FLUSB3.0-3.8.1.0.exe { /quiet | /qn }
msiexec.exe [/i][/x] <path_to_package> { /quiet | /qn }
Example:
FLUSB3.0-3.8.1.0.exe /quiet
FLUSB3.0-3.8.1.0.exe /qn
msiexec.exe /i "FLUSB3.0-3.8.1.0.msi" /quiet
msiexec.exe /i "FLUSB3.0-3.8.1.0.msi" /qn

2) Install without host connected

Install driver but without host connected.
Usage:
FLUSB3.0-3.8.1.0.exe DONOTCHECKHOST=1

3) Create a log

Specifies an alternate location and name of the log file, the file name must be specified.
Usage:
FLUSB3.0-3.8.1.0.exe { /log | /L*V } [<path_to_log>]
msiexec.exe [/i][/x] <path_to_package> { /log | /L*V } <path_to_log>
Example:
FLUSB3.0-3.8.1.0.exe /log "C:\flusb3.0.log"
FLUSB3.0-3.8.1.0.exe /L*V "C:\flusb3.0.log"
msiexec.exe /i "FLUSB3.0-3.8.1.0.msi" /log "C:\flusb3.0.log"
msiexec.exe /i "FLUSB3.0-3.8.1.0.msi" /L*V "C:\flusb3.0.log"

4) Administrative installation

Installs on the network. Administrators can run an administrative installation from the command line by using this command line option.
Usage:
msiexec.exe [/a] <path_to_package>
Example:
msiexec.exe /a "FLUSB3.0-3.8.1.0.msi"

5) Help information

Displaying the command line help. Use the syntax to display the usage for the available command line options.
Usage:
FLUSB3.0-3.8.1.0.exe { /help | /? }
Example:
FLUSB3.0-3.8.1.0.exe /help
FLUSB3.0-3.8.1.0.exe /?