How to check which application is using port on windows? June 15, 2015 Run the below command on Command Prompt to get the PID netstat -ao Note down the PID number and execute below command to know the application that is actually using the port. tasklist /fi "pid eq <PID>" Read more