Using PowerCLI in Powershell
From Tech-Wiki
Revision as of 17:49, 24 August 2023 by Fabricio.Lima (Talk | contribs) (Created page with "Category:VMware How to use PowerCLI to output VM information for ESXi. Install-Module -Name VMware.PowerCLI Set-PowerCLIConfiguration -Scope User -ParticipateInCEIP...")
How to use PowerCLI to output VM information for ESXi.
Install-Module -Name VMware.PowerCLI
Set-PowerCLIConfiguration -Scope User -ParticipateInCEIP $false
Set-PowerCLIConfiguration -InvalidCertificateAction Ignore
Connect-VIServer 10.1.1.10
Get-VM | Select Name,PowerState,MemoryGB,NumCpu,UsedSpaceGB
Get-Cluster "Test-*" | Get-VM | Sort | Select Name, @{N="IP Address";E={$_.guest.IPAddress[0]}} | export-csv report.csv -NoTypeInformation –UseCulture
Get-VM | Get-View -Property @("Name", "Config.GuestFullName", "Guest.GuestFullName") | Select -Property Name, @{N="Running OS";E={$_.Guest.GuestFullName}} | Format-Table -AutoSize