Hyper-V Server Getting Started

Open port 3389 for all firewall profiles.

netsh advfirewall firewall add rule name="Remote Desktop"  protocol=tcp dir=in localport=3389 action=allow

To set the management network connection to private.

$profile = Get-NetConnectionProfile -InterfaceAlias "Ethernet 4"

$profile.NetworkCategory

Set-NetConnectionProfile -InputObject $profile -NetworkCategory private

To get remote Disk Management working:

netsh advfirewall firewall set rule group="Remote Volume Management" new enable=yes

To get remote Computer Management working:

netsh advfirewall firewall set rule group="Remote Event Log Management" new enable=yes

List of the different inbound firewall rules related to remote management.

Remote Administration
Remote Assistance
Remote Desktop
Remote Event Log Management
Remote Event Monitor
Remote Scheduled Tasks Management
Remote Service Management
Remote Volume Management