How to remove the process currently using a port on localhost in Windows

PHOTO EMBED

Fri Aug 11 2023 14:49:41 GMT+0000 (Coordinated Universal Time)

Saved by @radeon323 #kill #port

netstat -ano | findstr :<PORT>
  
taskkill /PID <PID> /F
content_copyCOPY