批量修改vm Annotation


$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 ***




}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章