terminate.bat 305 B

12345678910111213
  1. @echo off
  2. REM Kill all node.exe processes except for the one associated with your build script
  3. for /f "tokens=2" %%a in ('tasklist ^| findstr /i /c:"node.exe" /c:"BUILD_PROCESS=yes"') do (
  4. taskkill /F /PID %%a
  5. )
  6. REM Close the terminal window (Windows Terminal)
  7. taskkill /F /IM WindowsTerminal.exe