Windows Windows port狀態指令 Find all running ports 1 netstat -ano Copyor 1 netstat -alp CopyView the PID of the occupied port 1 netstat -aon|findstr "80" CopyView the process with the specified PID 1 tasklist|findstr "80" Copyend the process 1 taskkill /T /F /PID 80 Copy