📅  最后修改于: 2022-03-11 14:57:37.045000             🧑  作者: Mango
Checking which application is using a port:
Open the command prompt - start » run » cmd or start » All Programs » Accessories » Command Prompt.
Type netstat -aon | findstr '[port_number]' . ...
If the port is being used by any application, then that application's detail will be shown. ...
Type tasklist | findstr '[PID]' .