0

I am running Windows 10 on my client and the "headless" version of Hyper-V 2016 on my server. I am able to remote in to the server and run Powershell on the server. My network connections on both host and client are set to Private and the firewalls are set to permit the connection. Remote management is enabled and the server is added to TrustedHosts on the client. When I attempt to connect to the server with Hyper-V Manager I get this:

enter image description here

I have two questions: 1. How do I ensure Virtual Machine Manager is running on the host using Powershell? 2. How do I ensure I have correct permissions on the host to manage it with Hyper-V manager?

user1780242
  • 157
  • 2
  • 11
  • Have you tried connecting to the server via Hyper-V Manager using the hostname as opposed to IP Address? – Davidw Apr 11 '19 at 21:52

1 Answers1

1
  1. Ensure you have winrm quickconfig setup.
  2. You can use powershell enter-pssession -computername $youurname
  3. get-service to get the services. Then start-service -name $ursrvc
  4. It's more than likely already running if you have VMs on it.
  5. Check that you're a member of the hyper-v administrator groups. It's most likely that.
Jenny D
  • 27,780
  • 21
  • 75
  • 114
ssvegeta96
  • 78
  • 8