查询VMHost锁定状态

时间:2018-03-30 19:37:21

标签: powershell vmware powercli

我正在为我们的VMware主机创建新的审核脚本。其中一个参数是检查"锁定模式"状态。我提出了以下几行,但它似乎更像是一个黑客。他们是一种更优雅的方式来查询主机上的锁定模式吗?

#hostname
$vmh = host

$status = (Get-view (Get-VMHost $vmh | Get-view).ConfigManager.HostAccessManager).LockdownMode

write-host $status

1 个答案:

答案 0 :(得分:0)

Give this a go:

(Get-VMHost -Name $vmh).ExtensionData.Config.LockdownMode