Windows open port in firewall¶
New-NetFirewallRule -DisplayName "Open db server at port 1434" -Direction inbound -LocalPort 1434 -Protocol UDP -Action Allow
New-NetFirewallRule -DisplayName "Open db server at port 8000" -Direction inbound -LocalPort 8000 -Protocol TCP -Action Allow