查看网络端口占用
netstat -ano | findstr "8080"
TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448
端口“8080”被PID(进程号)为2448的进程占用。
tasklist | findstr "2448"
notepad.exe 2016 Console 0 16,064 K
PID(进程号)为2448的应用为notepad.exe
关闭应用进程
按进程号关闭进程
taskkill /pid 2448
需要关闭多个时,格式为:
taskkill /pid 2448 /pid 1284
按进程名关闭进程
taskkill /im notepad.exe
需要关闭多个时,格式为:
taskkill /im notepad.exe /im iexplorer.exe