Summary: Use Windows PowerShell to display inbound firewall rules.
How can I use Windows PowerShell to display the enabled inbound firewall rules for my Windows 8.1 laptop?
Use the Show-NetFirewallRule function, filter on the Enabled and the Direction properties,
and select the display name for readability:
Show-NetFirewallRule | where {$_.enabled -eq 'true' -AND $_.direction -eq 'inbound'}| select displayname