Потребовалось проставить Custom Attribute для виртуальных машин.
На помощь, как обычно, пришел Google и подсказал следующее решение:
1 2 3 |
$ca=Get-CustomAttribute -Name 'custom_attribute_name' get-vm -Location vm_folder_name | Get-Annotation -CustomAttribute $ca | %{Set-Annotation -entity $_.AnnotatedEntity -CustomAttribute $ca -Value 'new_value'} |
то же самое, но чуть проще
Похоже на https://vmind.ru/2013/08/21/perenos-custom-attributes-mezhdu-vmware-vcenter/