$vms = Get-Content C:\VMlists\vm.txt


echo $vms


foreach ($vm in $vms)

{


Write-Host "set $vm"


Get-vm $vm | Set-Annotation -CustomAttribute "Created" -Value ***

Get-vm $vm | Set-Annotation -CustomAttribute "Created by" -Value ***

Get-vm $vm | Set-Annotation -CustomAttribute "Description" -Value ***

Get-vm $vm | Set-Annotation -CustomAttribute "Domain" -Value ***

Get-vm $vm | Set-Annotation -CustomAttribute "Environment" -Value ***

Get-vm $vm | Set-Annotation -CustomAttribute "Owner" -Value ***




}