Passing Parameters as Arguments
Here is how to perform a Silent Install using msiexec
to pass parameters as arguments.
Prerequisites
Make sure to use the
.msi
installer files to run themsiexec
commands. For example, for Thinfinity Workspace the installer would be:Thinfinity_Workspace_v8.0.1.109_Setup_x64.msi
.Make sure to run your command prompt with administrator privileges.
To install a .msi
file silently, the required argument is /q
or /quiet
which allows the installation to run silently, without displaying the user interface.
msiexec /i [installer_file.msi] /q
Additionally, you can use the /log
argument followed by a file name to generate a log of the installation process. For example:
msiexec /i Thinfinity_Workspace_v8.0.1.109_Setup_x64.msi /q /log myLog.log
Last updated
Was this helpful?