您可以在虚拟机上停用 SEV-ES。 前提条件 确保已关闭虚拟机电源。 必须在有权访问您环境的系统上安装 PowerCLI 12.1.0 或更高版本。 过程 在 PowerCLI 会话中,运行 Connect-VIServer cmdlet,以管理员身份连接到 vCenter Server,该服务器负责管理要从中移除 SEV-ES 的虚拟机所在的 ESXi 主机。 例如: Connect-VIServer -server vCenter_Server_ip_address -User admin_user -Password 'password' 使用 Set-VM cmdlet,指定 -SEVEnabled $false 以在虚拟机上停用 SEV-ES。 例如,先将主机信息分配给变量,然后再对虚拟机停用 SEV-ES。 $vmhost = Get-VMHost -Name 10.193.25.83 Set-VM -Name MyVM2 $vmhost -SEVEnabled $false 结果 在虚拟机上停用了 SEV-ES。 父主题: 使用 AMD Secure Encrypted Virtualization-Encrypted State 保护虚拟机