kill processing in command line code example
Example 1: script to kill a process in windows
taskkill /PID 1234
Example 2: kill process cmd
netstat -ano | findstr :3000
taskkill /PID "123" /F
taskkill /PID 1234
netstat -ano | findstr :3000
taskkill /PID "123" /F