标签:vm
$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
}
标签:vm
原文地址:http://littlebamboo.blog.51cto.com/4641172/1974599