MiCollab is a collaboration platform by Mitel, designed to integrate communication tools like voice, video, messaging, and file sharing for streamlined business communication. It enables real-time interaction, presence management, and remote collaboration to enhance productivity and teamwork within organizations. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of MiCollab from the command line using the MSI installer.
How to Install Mitel MiCollab Silently
MiCollab Silent Install (MSI)
- Navigate to: https://downloads.mitel.io/micollab/pcclient/prod/micollabPC_client.msi
- Download the micollabPC_client.msi 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 commands:
MsiExec.exe /i micollabPC_client.msi /qn |
TASKKILL /F /IM MiCollab.exe |
After a few moments you will see the MiCollab Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Mitel MiCollab |
Vendor: | Mitel Networks |
Architecture: | x86_x64 |
Installer Type: | MSI |
Silent Install Switch: | MsiExec.exe /i micollabPC_client.msi /qn |
Silent Uninstall Switch: | MsiExec.exe /x micollabPC_client.msi /qn |
Repair Command: | MsiExec.exe /fa micollabPC_client.msi /qn |
Download Link: | Mitel MiCollab Download |
PowerShell Script: | Mitel MiCollab | PowerShell Script |
Detection Script: | Mitel MiCollab | Custom Detection Script |
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 MiCollab Installation Log File
The MiCollab installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following commands to create a verbose log file with details about the installation.
Mitel MiCollab Silent Install with Logging (MSI)
MsiExec.exe /i micollabPC_client.msi /qn /L*v "%WINDIR%\Temp\MiCollab-Install.log" |
How to Uninstall Mitel MiCollab Silently
Check out the following posts 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 MiCollab Silent Uninstall on 32-bit System
MsiExec.exe /x micollabPC_client.msi /qn |
"%ProgramFiles%\MiShareApp\Uninstall MiShareApp.exe" /allusers /S |
Mitel MiCollab Silent Uninstall on 64-bit System
MsiExec.exe /x micollabPC_client.msi /qn |
"%ProgramFiles(x86)%\MiShareApp\Uninstall MiShareApp.exe" /allusers /S |
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.