您现在的位置是:首页 > 运维运维
工作组环境下使用 Hyper-V 管理器远程管理 Hyper-V 主机
谜团 2018-01-26 00:00:00【运维】人已围观
简介heper-v控制端配置,宿主机连接,powershell安装hyper-v管理器,被控端 ,服务端关闭防火墙
netsh advfirewall set allprofiles state off 打开psremoting服务 Enable-PSRemoting 打开 WSManCredSSP服务 Enable-WSManCredSSP -Role server
被控端
服务端关闭防火墙
netsh advfirewall set allprofiles state off
打开psremoting服务
Enable-PSRemoting
打开 WSManCredSSP服务
Enable-WSManCredSSP -Role server
控制端
关闭防火墙
netsh advfirewall set allprofiles state off
powershell 环境下
Set-Item WSMan:/localhost/Client/TrustedHosts -Value "被控端id"
Enable-WSManCredSSP -Role client -DelegateComputer "被控端id"
最后控制端添加凭证
cmdkey /add:被控端id /user:账户 /pass:密码
更改hosts文件hosts
C:/Windows/System32/drivers/etc
实例:
192.168.0.2 hyper-v25
打开hyper-v管理器,连接吧
powershell安装hyper-v管理器
add-windowsfeature rsat-hyper-v-tools
注意:仅windows2016 或 windows10
Remotely manage Hyper-V hosts with Hyper-V Manager
https://technet.microsoft.com/en-us/windows-server-docs/compute/hyper-v/manage/remotely-manage-hyper-v-hosts?f=255&MSPPError=-2147217396
很赞哦! ()