mirror of
https://github.com/celisej567/cool-source-archive.git
synced 2026-09-04 15:33:19 +03:00
8 lines
213 B
Batchfile
8 lines
213 B
Batchfile
@echo off
|
|
|
|
tasklist /FI "IMAGENAME eq shadercompile.exe" 2>NUL | find /I /N "shadercompile.exe">NUL
|
|
|
|
if "%ERRORLEVEL%"=="0" (
|
|
echo Shadercompile is running still, killing
|
|
taskkill /f /im shadercompile.exe >nul
|
|
) |