Can someone please direct me to the documentation which provides the definitive list of properties which can be obtained via the Get-VM cmdlet ?
For example I am aware of the following...
Name
usedSpaceGB
ProvisionedSpaceGB
...but that's purely from Googling.
What is the definitive list of items I can get from something like the following...
ForEach ($vm in Get-VM)
{
write-output "
Name: $($vm.Name)
Used Space: $($vm.usedSpaceGB)
Provisioned Space: $($vm.ProvisionedSpaceGB) "
}
Thanks.