netstat -aon
Pour n'afficher que les ports en écoute:
netstat -aon | findstr /i listening
Pour n'afficher que les ports TCP à l'écoute:
netstat -aon -p TCP | findstr /i listening
===== Références =====
* https://www.configserverfirewall.com/windows-10/netstat-command-to-check-open-ports-in-windows/