4. Windows Install Options

Last modified by teamwire001 on 2026/07/08 06:34

Quiet installation

Microsoft Windows Installer is an installation and configuration service provided with Windows. It allows to run processes with the Windows command msiexec without any user interaction.

The msiexec display options allow a quiet installation. All available parameters can be found here: Microsoft > msiexec > Display options

To install the Teamwire app quietly, use the following command and parameters:

msiexec.exe /i <path_to_package> /qn

Example: msiexec.exe /i "C:\Users\USERNAME\Downloads\teamwire-setup.msi" /qn

Installation context

Microsoft Windows Installer is an installation and configuration service provided with Windows. It allows to run processes with the Windows command msiexec without any user interaction.

Windows Installer can install a package on a computer into two installation contexts: per-machine and per-user.

A per-machine installation of the package is required to enable all users of the computer to access and use the application. Because a per-machine installation makes changes to the system that affect all users, administrative permissions are required. Further information available here: Microsoft > Windows Installer > Installation context

A Per user installation

By default, the package is installed in the per-user installation context. The following command performs the per-user installation:

msiexec.exe /i <path_to_package>

Teamwire will be installed to the following directory: %LOCALAPPDATA%\Programs\Teamwire

B Per machine installation

To install the package in the per-machine installation context, the ALLUSERS parameter is required. The following command performs the per-machine installation:

msiexec.exe /i <path_to_package> ALLUSERS=1

Teamwire will be installed to the following directory: C:\Program Files\Teamwire

C Custom installation directory

You can define a custom directory for the Teamwire app installation with the following parameters:

msiexec.exe /i <path_to_package> APPLICATIONFOLDER=<absolute_application_path>

Example: msiexec.exe /i "C:\Users\USERNAME\Downloads\teamwire-setup.msi" APPLICATIONFOLDER="C:\Teamwire"

Quiet deinstallation

Microsoft Windows Installer is an installation and configuration service provided with Windows. It allows to run processes with the Windows command msiexec without any user interaction.

The msiexec display options allow a quiet deinstallation. All available parameters can be found here: Microsoft > msiexec > Display options

To deinstall the Teamwire app quietly, use the following command and parameters:

msiexec.exe /x <path_to_package> /qn

The MSI file path required for the deinstallation depends on your data management.

Example A: msiexec.exe /x "C:\Users\USERNAME\Downloads\teamwire-setup.msi" /qn
The file which was also used during the installation has remained in its directory.

Example B: msiexec.exe /x "C:\Windows\Installer\34237a6a.msi" /qn
You use the MSI file cached by the system. By default, it's stored under %SystemRoot%\Installer.