Operating SystemNetworkOn this pageNetwork Network Get Listening Ports and Application Name Windows Linux MacOS Get Listening Ports and Application Name Windows netstat -ano # List all network info, including PID and port tasklist /FI "PID eq 5932" # Get application name by PID (here assume PID is 5932) Linux netstat -anpe | grep "1234" | grep "LISTEN" MacOS