See also more Hyper-V pages
If managing a server that is not joined to your domain, connect to Hyper-V servers from a workstation using a login with the same admin username and password as the server.
DNS must be in place so that the server and remote management PC can connect to each other via host name and IP address. Do this with your current DNS system or using host files.
On a Windows 8 Pro or higher PC, add the Hyper-V Manager feature in Programs and Features under Hyper-V → Hyper-V Management Tools.
http://technet.microsoft.com/en-us/library/ddb147c1-621c-4b89-9003-81c93ba050d7#BKMK_1_4
On the Hyper-V server command menu:
Configure items 1, 2, 4, 7, 8 and 9.
To allow all MMC snap-ins to connect, at the command prompt on the Hyper-V server run:
netsh advfirewall firewall set rule group="Windows Firewall Remote Management" new enable=yes
If you get the “Group cannot be specified with other identification conditions” error, delete the double quotes and replace on the console. This error occurs if you copy and paste from the Technet website.
To allow only specific MMC snap-ins to connect run this PowerShell command:
Enable-NetFirewallRule -DisplayGroup "<rulegroup>"
Where rulegroup
is one of the values from the table below, depending on which snap-in you want to connect.
MMC Snap-In | Rule Group |
---|---|
Event Viewer | Remote Event Log Management |
Services | Remote Services Management |
Shared Folders | File and Printer Sharing |
Task Scheduler | Performance Logs and Alerts, File and Printer Sharing |
Disk Management | Remote Volume Management |
Windows Firewall with Advanced Security | Windows Firewall Remote Management |
All MMC Snap-ins work except for “Computer Manager” that is needed to manage disks. For that to work, you can disable the firewall with netsh advfirewall set allprofiles state off
at the console command line. Enable with netsh advfirewall set allprofiles state on
.
If you have a separate NIC for Storage, perhaps 10GbE, you need to configure it separately.
On the Hyper-V server console, access the menu with sconfig.cmd
:
On the Hyper-V server console command prompt, type iscsicpl.exe
.
If the iSCSI Initiator service is not running click yes to start and make automatic at start up.
In the iSCSI Initiator type the “Target Name” or IP address of the iSCSI share and click connect.
Remember to use the storage network NIC IP of storage server if applicable.
Once you have connected the iSCSI share, you may need to reboot both Hyper-V server and the management PC to see the volume in Computer Manager.
If you have trouble initializing the disk do this at the Hyper-V server console.
Type diskpart
at the command line:
DISKPART> LIST DISK Note the disk number of the ISCSI disk. DISKPART> SELECT DISK n DISKPART> ATTRIBUTES DISK CLEAR READONLY DISKPART> ONLINE DISK DISKPART> CONVERT GPT
It may take a reboot of the Hyper-V server to see the drive in Computer Management on your remote management PC.
http://technet.microsoft.com/en-us/library/ddb147c1-621c-4b89-9003-81c93ba050d7#BKMK_1_4
hyper-v
and choose Hyper-V Manager.