Showing posts with label Allow Ping. Show all posts
Showing posts with label Allow Ping. Show all posts

Tuesday, December 1, 2015

Enable ping on Windows Server 2016 TP4

To enable ping on Windows Server 2016 TP4, please follow the following PowerShell command

> Import-Module NetSecurity

> Set-NetFirewallRule -DisplayName “File and Printer Sharing (Echo Request – ICMPv4-In)” -enabled True

>  New-NetFirewallRule -Name Allow_Ping -DisplayName “Allow Ping”  -Description “Packet Internet Groper ICMPv4” -Protocol ICMPv4 -IcmpType 8 -Enabled True -Profile Any -Action Allow

image

 

Reference:

http://blog.blksthl.com/2012/11/20/how-to-enable-ping-in-windows-server-2012/

Print Friendly and PDF
Share/Bookmark