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
Reference:
http://blog.blksthl.com/2012/11/20/how-to-enable-ping-in-windows-server-2012/
No comments:
Post a Comment