Enable and Disable Windows Firewall Quickly using Command-line

When testing network connectivity or when performing other troubleshooting tasks, you may need to turn off the Windows Firewall temporarily. To quickly disable or enable the Windows Firewall, you may use the Netsh.exe command-line in Windows 10 and Windows 8.

Enable and Disable Windows Firewall Quickly using Command-line

To disable the Windows Firewall, run the following command from elevated Command Prompt.

netsh advfirewall set allprofiles state off

This turns off Windows Firewall for all the profiles.

When you create firewall rules to allow or block traffic, you can separately apply them to the Domain, Private, and Public profiles. Let’s say you’re using a laptop. These three different profiles enable laptop computers to allow incoming connections while connected to a domain network, but block connection attempts on less secure networks (such as public wireless hotspots).

  1. Domain profile applies when a computer is connected to its Active Directory domain. If the member computer’s domain controller is accessible, this profile will be applied.
  2. Private profile applies when a computer is connected to a private network location. By default, no networks are considered private—users must specifically mark a network location, such as their home office network, as private.
  3. Public profile is the default profile applied to all networks when a domain controller is not available. For example, the Public profile is applied when users connect to Wi-Fi hotspots at airports or coffee shops. By default, the Public profile allows outgoing connections but blocks all incoming traffic that is not part of an existing connection.

To turn off Windows Firewall for a particular profile, use the following command-line examples:

netsh advfirewall set privateprofile state off
netsh advfirewall set publicprofile state off
netsh advfirewall set domainprofile state off
netsh advfirewall set currentprofile state off

You can also use the currentprofile parameter. When you use currentprofile, the command effects changes for the currently active firewall profile (Public, Private or Domain). For example, your laptop may use the domain profile when at your office room, public profile when at the cafeteria etc.

To know the state of Windows Firewall for every profile, run this command:

netsh advfirewall show allprofiles

netsh firewall show profiles state

The State (ON|OFF) field tells you if the Firewall is enabled for a profile or not.

Windows Firewall status can also be verified using the Security Center (or Windows Firewall security center).

windows firewall turned off - security center

The moment you set the Windows Firewall state to OFF for any profile, you’ll immediately see this notification in the taskbar.



windows firewall turned off notification

Enabling Windows Firewall

To enable the firewall, use the on parameter with the above command-line:

Examples:

netsh advfirewall set privateprofile state on
netsh advfirewall set publicprofile state on
netsh advfirewall set domainprofile state on

You may create desktop two shortcuts to enable and disable the Windows Firewall. To run the commands as administrator, right-click on the shortcut and choose Run as administrator. Or right-click the shortcut properties, click Advanced and tick the Run as administrator checkbox and click OK. Double-clicking the shortcut run the Netsh… command elevated, after you click the Continue button in the UAC confirmation dialog.

Using PowerShell

From PowerShell (administrator) prompt, run the following command to disable Windows Firewall for all profiles.

Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False

To enable it back, run:

Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled True

That’s it!


One small request: If you liked this post, please share this?

One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:
  • Pin it!
  • Share it to your favorite blog + Facebook, Reddit
  • Tweet it!
So thank you so much for your support. It won't take more than 10 seconds of your time. The share buttons are right below. :)

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a consecutive ten-time recipient of the Microsoft Most Valuable Professional award in the Windows Shell/Desktop Experience category, from 2003 to 2012. He loves to troubleshoot and write about Windows. Ramesh founded Winhelponline.com in 2005.

1 thought on “Enable and Disable Windows Firewall Quickly using Command-line”

Leave a Reply to beginner Cancel reply