Forum Discussion
Mafecteau
Dec 18, 2020Copper Contributor
Windows Defender Firewall - Deny Windows Apps rules creation
How can I disable Windows apps automatic Defender firewall rule creation?
I have configured local firewall rules and connection security rules Settings in the WDFASecurity panel.
I runned powershell commands to remove all outbound rules
$FirewallOutRules = Get-NetFirewallRule | Where-Object {$_.Direction -EQ "Outbound"}
Remove-NetFirewallRule $FirewallOutRules.Name
After an App like Mixed reality portal, Windows map is updated, a rule is automaticaly created.
How can I stop this behavior?
2 Replies
- Mr_Trust_ABrass Contributor
Hi Mafecteau
I wonder if this article will help: https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-firewall/best-practices-configuring#create-outbound-rules
Thanks