The VMware vSphere Client is a Windows program that you can use to configure the host and to operate its virtual machines. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of VMware vSphere Client 6.0 from the command line using both EXE & MSI installers.
How to Install VMware vSphere Client Silently
VMware vSphere Client 6.0 Silent Install (EXE)
- Navigate to: https://vsphereclient.vmware.com/vsphereclient/9/1/0/3/8/9/1/VMware-viclient-all-6.0.0-9103891.exe
- Download the VMware-viclient-all-6.0.0-9103891.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: VMware-viclient-all-6.0.0-9103891.exe /S /v/qn
- Press Enter
After a few moments you should see the VMware vSphere Client Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | VMware vSphere Client |
Vendor: | VMware, Inc. |
Version: | 6.0.0.7541 |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: | VMware-viclient-all-6.0.0-9103891.exe /S /v/qn |
Silent Uninstall Switch: | MsiExec.exe /x {593390AC-CACE-4278-AA77-350012BF10B1} /qn |
Download Link: | https://vsphereclient.vmware.com/vsphereclient/9/1/0/3/8/9/1/VMware-viclient-all-6.0.0-9103891.exe |
PowerShell Script: | https://silentinstallhq.com/vmware-vsphere-client-install-and-uninstall-powershell/ |
VMware vSphere Client 6.0 Silent Install (MSI)
- Navigate to: https://vsphereclient.vmware.com/vsphereclient/9/1/0/3/8/9/1/VMware-viclient-all-6.0.0-9103891.exe
- Download the VMware-viclient-all-6.0.0-9103891.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
- Extract the MSI by entering the following command:
- VMware-viclient-all-6.0.0-9103891.exe /s /x /b”C:\Downloads\Temp” /v”/qn”
- Press Enter
- Navigate to the C:\Downloads\Temp folder
- Enter the following command:
- MsiExec.exe /i “VMware vSphere Client 6.0.msi” /qn
- Press Enter
After a few moments you should see the VMware vSphere Client Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | VMware vSphere Client |
Vendor: | VMware, Inc. |
Version: | 6.0.0.7541 |
Architecture: | x86_x64 |
Installer Type: | MSI |
Silent Install Switch: | MsiExec.exe /i "VMware vSphere Client 6.0.msi" /qn |
Silent Uninstall Switch: | MsiExec.exe /x {593390AC-CACE-4278-AA77-350012BF10B1} /qn |
Download Link: | https://vsphereclient.vmware.com/vsphereclient/9/1/0/3/8/9/1/VMware-viclient-all-6.0.0-9103891.exe |
PowerShell Script: | https://silentinstallhq.com/vmware-vsphere-client-install-and-uninstall-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 an Installation Log File
The MSI 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.
VMware vSphere Client 6.0 (MSI) Silent Install with Logging
MsiExec.exe /i "VMware vSphere Client 6.0.msi" /qn /L*v "%WINDIR%\Temp\vSphere-Install.log" |
How to Uninstall VMware vSphere Client Silently
Check out the VMware vSphere Client 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 command:
VMware vSphere 6.0 Client Silent Uninstall
MsiExec.exe /x {593390AC-CACE-4278-AA77-350012BF10B1} /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.