Files
WindowEvader/Scripts/kill_window_evader.bat
ExilProductions 7beeac5713 Add project files.
2025-08-08 05:51:55 +02:00

11 lines
210 B
Batchfile

@echo off
taskkill /F /IM WindowEvader.exe >nul 2>&1
if %ERRORLEVEL%==0 (
echo WindowEvader was terminated successfully.
) else (
echo Failed to terminate WindowEvader. It may not be running.
)
pause