Manage Hyper-V of workgroup remotely
At Server Side
- Setup a new user (without Administrator right)
- Add the new user to "Hyper-V Administrator" group
- Enable remote management
Enable-PSRemotingEnable-WSManCredSSP -Role server
At Client Side
- Make sure the service "Windows Remote Management" has been started and set to "Automatic" .
- Trust the hosts to be managed.
Set-Item WSMan:\localhost\Client\TrustedHosts -Value "fqdn-of-hyper-v-host"
- Enable CredSSP
Enable-WSManCredSSP -Role client -DelegateComputer "fqdn-of-hyper-v-host"
- Use WinRM Quick Config
winrm qc
- Open Local Group Policy Editor
Computer Configuration > Administrative Templates > System > Credentials Delegation > Allow delegating fresh credentials with NTLM-only server authentication
Click Enable and add wsman/fqdn-of-hyper-v-host.
Reference:
https://docs.microsoft.com/en-us/windows-server/virtualization/hyper-v/manage/Remotely-manage-Hyper-V-hosts
https://community.spiceworks.com/topic/1874773-hyper-v-remote-management-from-windows-10-pro
Comments