Skip to content

Get-PowerCLIVersion

VMware: Retrieves the installed PowerCLI version

#Requires -Version 5.1
[CmdletBinding()]
Param()
Process {
    try {
        $result = Get-Module -Name VMware.PowerCLI -ErrorAction Stop | Format-List
        Write-Output $result
    }
    catch { throw }
}

This script has no configurable parameters.

An interactive directory of PowerShell scripts.