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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell SNIP | VMware - 主机 - 获取用户SATP规则相关的知识,希望对你有一定的参考价值。

#Multiple Hosts
	Get-VMhost | ForEach{(Get-EsxCli -VMHost $_.Name).storage.nmp.satp.rule.list() |where {$_.RuleGroup -like "user"}} |Select Description,Vendor,Model,DefaultPSP,Options,PSPOptions,Name,RuleGroup| ft -autosize
	
  #V2
	Get-VMhost | ForEach{(Get-EsxCli -VMHost $_.Name -V2).storage.nmp.satp.rule.list.invoke() |where {$_.RuleGroup -like "user"}} |Select Description,Vendor,Model,DefaultPSP,Options,PSPOptions,Name,RuleGroup| ft -autosize

#Single Host
	(Get-EsxCli -VMHost <NAME> -V2).storage.nmp.satp.rule.list.invoke() |where {$_.RuleGroup -like "user"}|Select Description,Vendor,Model,DefaultPSP,Options,PSPOptions,Name,RuleGroup| ft -autosize

以上是关于powershell SNIP | VMware - 主机 - 获取用户SATP规则的主要内容,如果未能解决你的问题,请参考以下文章

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详细信息