Remote management of Windows Firewall

1st Official Post
  • Windows Firewall - Remote Access through MMC

    Enable rule to let the remote pc in:

    PowerShell
    Enable-NetFirewallRule -DisplayGroup Windows -Firewallremoteverwaltung -CimSession


    Enable the rule in a domain environment:

    PowerShell
    Get-NetFirewallProfile -CimSession Win10Pro-VM1-L1 -Name Domain | Get-NetFirewallRule | ? DisplayGroup -eq Windows-Firewallremoteverwaltung | Enable-NetFirewallRule

    Pay attention that this codes needs to be used in an elevated powershell console.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!