Mots clés : windowsnetworkingportwindows
96
Get-Process -Id (Get-NetTCPConnection -LocalPort YourPortNumberHere).OwningProcess
Get-Process -Id (Get-NetUDPEndpoint -LocalPort YourPortNumberHere).OwningProcess
C:\> netstat -a -b
84
netstat -aon | find /i "listening"
75
netstat -ano | findStr "8080"
tasklist /fi "pid eq 2216"