Windows Kill process using port

Date: 2023-06-14
netstat -ano | findstr 3000

# Active Connections

#   Proto  Local Address          Foreign Address        State           PID
#   TCP    0.0.0.0:3000           any:0                  LISTENING       21592

taskkill /F /PID 21592

# SUCCESS: The process with PID 21592 has been terminated.
  
78450cookie-checkWindows Kill process using port