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:[installer_file.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 [installer_file.msi] /q /log myLog.log
Additional Services Parameters
Thinfinity Workspace allows you to selectively skip the installation of certain services, which can help reduce network security vulnerabilities. There are four parameters that control specific services and files that can be configured: CLOUDMANAGER, WEBDAVSERVER, MULTITERMINAL, and FILEMANAGER. If any of these parameters are set to "0", the files corresponding to that service will be skipped during installation.
For example:
msiexec /i [installer_file.msi] /q /MULTITERMINAL=0 /CLOUDMANAGER=0
Will install Thinfinity Workspace without including the resources needed to create zScope access profiles or the Cloud Manager services.
If the parameters receive any other value, the components will be installed.
Last updated
Was this helpful?