VMware PowerCLI 13.3.0 – is a command line and scripting tool built on PowerShell

VMware PowerCLI  – installation comes with PowerShell commands that are particular to VMware allowing users to interact with VMware environments

 

1. Find the module.

Find-Module -Name VMware.PowerCLI

Version Name Repository Description
——- —- ———- ———–
13.3.0…. VMware.PowerCLI PSGallery This Windows PowerShell module contains VMware.P…

2.1 Install modules for all users (install the latest version by default).

Install-Module -Name VMware.PowerCLI

2.2 Install for the current user without admin privileges.

Install-Module -Name VMware.PowerCLI -Scope CurrentUser

2.3 Check the version after installation.

Get-PowerCLIVersion

3. Whether to participate in VMware Customer Experience Improvement Program.

No: Set-PowerCLIConfiguration -Scope User -ParticipateInCEIP $false
Yes: Set-PowerCLIConfiguration -Scope User -ParticipateInCEIP $true

3. List all cmdlets.

Get-Command -Module *VMWare*

Leave a Reply

You must be logged in to post a comment.