kill process windows code example

Example 1: windows kill port

netstat -ano | findstr :3001
taskkill /PID <yourid> /F

Example 2: taskkill in cmd

taskkill /f /im notepad.exe /t
taskkill /f /im chrome.exe /t

Example 3: kill process on port windows

netstat -ano | findstr "PORT_NUMBER"

taskkill /PID PORT_NUMBER /f

Example 4: cmd kill process

## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F

Example 5: windows kill process

// Kill process by exe name
taskkill /IM "ProcessName.exe" /F

Example 6: script to kill a process in windows

taskkill /PID 1234

Tags:

Misc Example