close process on port windows code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: port already in use windows 10
netstat -ano | findstr :3001
taskkill /PID /F
Example 3: close all localhost connections
netstat -ano | findstr :yourPortNumber
taskkill /PID typeyourPIDhere /F
Example 4: windows kill process on port
netstat -ano | findstr :
taskkill /PID /F