Posted On December 16, 2020

Windows Firewall Block ICMP Ping

kimconnect 0 comments
blog.KimConnect.com >> Networking , Windows >> Windows Firewall Block ICMP Ping

Following is a quick exercise in configuring Windows firewall to block certain protocols:

# Disable Ping Outbound
New-NetFirewallRule -DisplayName "Block Outbound ICMPv4" -Direction Outbound -Protocol ICMPv4 -IcmpType 8 -Action Block

# New-NetFirewallRule -DisplayName "Block Outbound ICMPv6" -Direction Outbound -Protocol ICMPv6 -IcmpType 8 -Action Block
# Reverse the change
netsh advfirewall firewall delete rule name="Block Outbound ICMPv4"

# netsh advfirewall firewall delete rule name="Block Outbound ICMPv6"

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Install Windows Dot Net 3.5 & 4.5

Run these commands to check dot net 3.5: PS C:\Windows\system32> import-module servermanagerPS C:\Windows\system32> get-windowsfeature web-asp-netDisplay…

How To Fix Windows Corrupted Profile

Error messages: - We can't sign into your account. This problem can often be fixed…

Analyze BSOD Dump File

Install Debugging Tools for Windows as Standalone Component As Administrator, run CMD cd "C:\Program Files…