Hello,
You can enable ping on Windows firewall without completely disabling the firewall. It may require a few steps.
First, get the Firewall rules on the server :
Get-NetFirewallRule
Then, filter with the rules with ICMP in its name :
Get-NetFirewallRule -Name *FPS-ICMP?-ERQ*
And now, we enable the ones we want to be active :
Get-NetFirewallRule -Name *FPS-ICMP?-ERQ* | Enable-NetFirewallRule
Now, check the status :
Get-NetFirewallRule -Name *FPS-ICMP?-ERQ* | select Name,Direction,Profile,Enabled
Now, ping is open and we’re keeping the Windows FireWall up and running !