An attempt to manage any server with the server console will fail unless there is a proper config on behalf
you must enable the following rules in Windows Firewall on the system to be managed: COM+ Network Access (DCOM-In)
Remote Event Log Management (NP-In)
Remote Event Log Management (RPC)
Remote Event Log Management (RPC-EPMAP)
To enable these firewall rules on a computer running Server Core, you use the Set-
NetFirewallRule cmdlet in Windows PowerShell,
as follows: Click here to view code image
set-netfirewallrule –name complusnetworkaccess-dcom-in –enabled true
set-netfirewallrule –name remoteeventlogsvc-in-tcp –enabled true
set-netfirewallrule –name remoteeventlogsvc-np-in-tcp –enabled true
set-netfirewallrule –name remoteeventlogsvc-rpcss-in-tcp –enabled

