
On Windows 11, you can disable the Microsoft Defender Firewall in multiple ways, and in this guide, we’ll show you how. The Microsoft Defender Firewall is the system built-in firewall that has been designed to monitor incoming and outgoing network traffic to allow or block connections based on predefined rules to protect your computer and information from unauthorized access.
While you should always have the Windows 11 firewall enabled, you may need to disable the protection for various reasons. For example, you are troubleshooting a network problem, testing an application over the network, or when you want to use another security application.
Regardless of the reason, Windows 11 lets you disable the firewall in at least four ways using the Windows Security app, Control Panel, Command Prompt, and PowerShell.
In this guide, you will learn how to disable (re-enable) the built-in firewall on Windows 11.
- Disable firewall using Windows Security on Windows 11
- Disable firewall using Control Panel on Windows 11
- Disable firewall using Command Prompt on Windows 11
- Disable firewall using PowerShell on Windows 11
Disable firewall using Windows Security on Windows 11
To disable the firewall through Windows Security, use these steps:
-
Open Windows Security on Windows 11.
-
Click on Firewall & network protection.
-
Click the active network option.
-
Turn off the Microsoft Defender Firewall toggle switch to disable the firewall.
Once you complete the steps, the firewall will disable in the active network profile. If you want to disable the firewall for all networks, turn off the security feature for all the profiles, including “Domain network,” “Private network,” and “Public network.”
Enable firewall using Windows Security
To enable the firewall on Windows 11, use these steps:
-
Open Windows Security on Windows 11.
-
Click on Firewall & network protection.
-
Click the Turn on button from the network profile. Or click the Restore settings button (if applicable).
After you complete the steps, the Microsoft Defender Firewall will enable again on the computer.
Disable firewall using Control Panel on Windows 11
To disable the Windows 11 firewall, use these steps:
-
Open Control Panel.
-
Click on System and Security.
-
Click on Windows Defender Firewall.
-
Click the Turn Windows Defender Firewall on or off option from the left pane.
-
Under the “Private network settings” section, select the Turn off Windows Defender Firewall option.
-
Under the “Public network settings” section, select the Turn off Windows Defender Firewall option.
-
Click the OK button.
Once you complete the steps, the firewall will no longer protect the device from malicious connections.
Enable firewall using Control Panel
To re-enable the firewall with Control Panel, use these steps:
-
Open Control Panel.
-
Click on System and Security.
-
Click on Windows Defender Firewall.
-
Click the Turn Windows Defender Firewall on or off option from the left pane.
Quick tip: You can also click the Use recommended settings button to enable the firewall for all network profiles. -
Under the “Private network settings” section, select the Turn on Windows Defender Firewall option.
-
Under the “Public network settings” section, select the Turn on Windows Defender Firewall option.
-
Click the OK button.
After you complete the steps, the built-in firewall will enable on the computer.
Disable firewall using Command Prompt on Windows 11
To disable the firewall on Windows 11 using Command Prompt, use these steps:
-
Open Start.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following command to disable the firewall for the current network profile and press Enter:
netsh advfirewall set currentprofile state off
-
(Optional) Type the following command to disable the Defender Firewall for all network profiles (domain, private, and public) and press Enter:
netsh advfirewall set allprofiles state off
-
(Optional) Type the following command to disable the firewall for the domain network profile and press Enter:
netsh advfirewall set domainprofile state off
-
(Optional) Type the following command to disable the firewall for the private network profile and press Enter:
netsh advfirewall set privateprofile state off
-
(Optional) Type the following command to disable the firewall for the public network profile and press Enter:
netsh advfirewall set publicprofile state off
After you complete the steps, the firewall will turn off in the network profiles you specified.
Enable firewall using Command Prompt
To enable the built-in firewall with Command Prompt, use these steps:
-
Open Start.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following command to enable the firewall for the current network profile and press Enter:
netsh advfirewall set currentprofile state on
-
(Optional) Type the following command to enable the firewall for all network profiles (domain, private, and public) and press Enter:
netsh advfirewall set allprofiles state on
-
(Optional) Type the following command to enable the firewall for the domain network profile and press Enter:
netsh advfirewall set domainprofile state on
-
(Optional) Type the following command to enable the firewall for the private network profile and press Enter:
netsh advfirewall set privateprofile state on
-
(Optional) Type the following command to enable the firewall for the public network profile and press Enter:
netsh advfirewall set publicprofile state on
Once you complete the steps, the firewall will turn on for the network profiles you specified.
Disable firewall using PowerShell on Windows 11
To disable the Defender Firewall with PowerShell Commands, use these steps:
-
Open Start.
-
Search for PowerShell, right-click the top result, and select the Run as administrator option.
-
Type the following command to disable the firewall for the current network profile and press Enter:
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False
Quick tip: To disable the firewall for a specific profile, you can remove the profile name (Domain, Public, or Private) from the command. For example,Set-NetFirewallProfile -Profile Private -Enabled False
.
After you complete the steps, the Defender Firewall will turn off on the device.
Enable firewall using PowerShell
To enable the firewall with PowerShell commands, use these steps:
-
Open Start.
-
Search for PowerShell, right-click the top result, and select the Run as administrator option.
-
Type the following command to enable the firewall for the current network profile and press Enter:
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled True
Quick tip: To enable the firewall for a specific profile, you can remove the profile name (Domain, Public, or Private) from the command. For example,Set-NetFirewallProfile -Profile Private -Enabled True
.
Once you complete the steps, the firewall will allow or deny network access depending on the configured rules.