cmd kill process in window code example
Example 1: taskkill in cmd
taskkill /f /im notepad.exe /t
taskkill /f /im chrome.exe /t
Example 2: kill process cmd
netstat -ano | findstr :3000
taskkill /PID "123" /F
taskkill /f /im notepad.exe /t
taskkill /f /im chrome.exe /t
netstat -ano | findstr :3000
taskkill /PID "123" /F