kill port 300 process windows 10 code example
Example 1: windows kill port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 2: cli kill what is listening on port
kill $(lsof -t -i:53) #Kill the process listening on port 53
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
kill $(lsof -t -i:53) #Kill the process listening on port 53