powershell SNIP | VMware - VM - 获取“所有者”和“应用程序”自定义属性,并将其写入“Notes”字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell SNIP | VMware - VM - 获取“所有者”和“应用程序”自定义属性,并将其写入“Notes”字段相关的知识,希望对你有一定的参考价值。

$MigrationVMs |sort Name | %{
    $vm = $_
    $owner = ($vm |select CustomFields -first 1 -ExpandProperty CustomFields |select Key,Value | ? Key -eq "Owner").value
    $application = ($vm |select CustomFields -first 1 -ExpandProperty CustomFields |select Key,Value | ? Key -eq "Application").value
    $NewNotes = $owner, $application -join " | "
    if ($NewNotes -ne " | ") {
        $temp = "" | Select VMName, Notes
        $temp.VMName = $vm
        $temp.Notes = $NewNotes
        $temp
        $null = set-vm $vm -notes $NewNotes -Confirm:$false -RunAsync
    }
} | ft -auto

以上是关于powershell SNIP | VMware - VM - 获取“所有者”和“应用程序”自定义属性,并将其写入“Notes”字段的主要内容,如果未能解决你的问题,请参考以下文章

powershell SNIP | VMware - 数据存储 - 获取空间信息

powershell SNIP | VMware - VM - 重命名VM

powershell SNIP | VMware - 主机 - 获取HBA WWN

powershell SNIP | VMware - 主机 - 获取用户SATP规则

powershell SNIP | VMware - 主机 - 重新登录FC适配器

powershell SNIP | VMware - 主机 - 获取/设置主机的NTP详细信息