Allow computer management remote access to a Windows Server Core system with Firewall rules.
To perform specific actions on a Server Core system, you will need remote access from a Windows desktop system.
First, we must set up Windows Firewall rules to enable this feature. The following PowerShell script will set up all the rules for us.
[PowerShell - Set Firewall Rules for Windows Server Core]
CFFCS | CarrzSynEdit: | PS (PowerShell)
Enable-NetFirewallRule -DisplayName "Windows Management Instrumentation (DCOM-In)"
Enable-NetFirewallRule -DisplayGroup "Remote Event Log Management"
Enable-NetFirewallRule -DisplayGroup "Remote Service Management"
# This line does not seem to work independently, so the last line is needed.

Enable-NetFirewallRule -DisplayGroup "Remote Volume Management"
Enable-NetFirewallRule -DisplayGroup "Windows Firewall Remote Management"
Enable-NetFirewallRule -DisplayGroup "Remote Scheduled Tasks Management"
# Disk Management, without this line, we will not be able to administer our virtual disk on the server core.

Get-NetFirewallRule -DisplayGroup "Remote Volume Management" | Set-NetFirewallRule -Enabled True