Mitel Connect extends voice and unified communications applications to your computer and integrates with your PBX to enable VoIP and cellular calling. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Mitel Connect from the command line using both the EXE & MSI installers.
How to Install Mitel Connect Silently
Mitel Connect Silent Install (EXE)
- Navigate to: http://upgrade01.sky.shoretel.com/ClientInstall
- Download the MitelConnect.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command:
MitelConnect.exe /S /v/qn
- Press Enter
After a few moments you should see the Mitel Connect Desktop Shortcuts appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Mitel Connect |
Vendor: | Mitel Networks Corporation |
Architecture: | x86 |
Installer Type: | EXE |
Silent Install Switch: | MitelConnect.exe /S /v/qn |
Silent Uninstall Switch: | MitelConnect.exe /S /x /v/qn |
Download Link: | http://upgrade01.sky.shoretel.com/ClientInstall |
PowerShell Script: | https://silentinstallhq.com/mitel-connect-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-mitel-connect-powershell/ |
Mitel Connect Silent Install (MSI)
- Navigate to: http://upgrade01.sky.shoretel.com/ClientInstall
- Download the MitelConnect.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command to extract the MSI:
MitelConnect.exe /S /x /b"C:\Downloads\MitelConnect" /v"/qn"
- Press Enter
- Navigate to the C:\Downloads\MitelConnect folder
- Enter the following command:
MsiExec.exe /i "Mitel Connect.msi" /qn
- Press Enter
After a few moments you should see the Mitel Connect Desktop Shortcuts appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Mitel Connect |
Vendor: | Mitel Networks Corporation |
Architecture: | x86 |
Installer Type: | MSI |
Silent Install Switch: | MsiExec.exe /i "Mitel Connect.msi" /qn |
Silent Uninstall Switch: | MsiExec.exe /x "Mitel Connect.msi" /qn |
Repair Command: | MsiExec.exe /fa "Mitel Connect.msi" /qn |
Download Link: | http://upgrade01.sky.shoretel.com/ClientInstall |
PowerShell Script: | https://silentinstallhq.com/mitel-connect-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-mitel-connect-powershell/ |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Create a Mitel Connect Installation Log File
The Mitel Connect installers offer the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following command to create a verbose log file with details about the installation.
Mitel Connect Silent Install (EXE) with Logging
MitelConnect.exe /S /v"/qn /L*v %WINDIR%\Temp\MitelConnect-Install.log" |
Mitel Connect Silent Install (MSI) with Logging
MsiExec.exe /i "Mitel Connect.msi" /qn /L*v "%WINDIR%\Temp\MitelConnect-Install.log" |
Change the Mitel Connect Default Installation Directory
You can also change the default installation directory by using the following command line parameters. In this example, I’m installing Mitel Connect to “C:\Mitel\Connect”
Mitel Connect (EXE)
MitelConnect.exe /S /v"INSTALLDIR=C:\Mitel\Connect /qn" |
Mitel Connect (MSI)
MsiExec.exe /i "Mitel Connect.msi" INSTALLDIR=C:\Mitel\Connect /qn |
How to Uninstall Mitel Connect Silently
Check out the Mitel Connect Install and Uninstall (PowerShell) post for a scripted solution.
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter the following commands:
Mitel Connect Silent Uninstall (EXE)
MitelConnect.exe /S /x /v/qn |
Mitel Connect 213.100.5477.0 Silent Uninstall (MSI)
MsiExec.exe /x {477A7F7C-4C41-4B45-A5D6-03AF6872B740} REBOOT=ReallySuppress /qn |
Mitel Presenter 213.100.5477.0 Silent Uninstall
MsiExec.exe /x {91870F3A-3E6E-4119-AA53-8A9E6FD4AA7D} /qn |
Mitel Teamwork 213.100.72.0 Silent Uninstall
MsiExec.exe /x {D8A82EAE-4D0E-4404-AD04-FFBF5310E264} /qn |
Microsoft Office 2010 Primary Interop Assemblies Silent Uninstall
MsiExec.exe /x {90140000-1105-0000-0000-0000000FF1CE} /qn |
Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.