How to install VMware PowerCLI offline

Download the PowerCLI package from and save the ZIP file on your PC https://developer.vmware.com/web/tool/vmware-powercli

Select the desired version from the drop-down menu, in most cases you will select the most recent version.

Extract the content of the ZIP file to a directory on your PC.

To install PowerCLI you have to determine the PowerShell Module Paths

Copy the extracted contect of the ZIP file to one of these directories, e.g. C:\Program Files\WindowsPowerShell\Modules

Unblock the new files in Powershell with the following command: Get-ChildItem -Path 'C:\Program Files\WindowsPowerShell\Modules' -Recurse | Unblock-File

Check if PowerCLI is active Get-Module -Name VMware.PowerCLI* -ListAvailable

You will get an output like this:

Last updated