I currently have this statement to show some of the attributes
$vms = Get-VM | sort-object name | select name, powerstate, host, NumCpu, MemoryMB, Notes | convertto-html
but I want to include a customed attributed URL, so how do I reference this attribute in the select statement? The following does not work - noticing I am trying to reference it as CustomFields.URL
$vms = Get-VM | sort-object name | select name, powerstate, CustomFields.URL, host, NumCpu, MemoryMB, Notes | convertto-html
Thanks a lot
Frank