Add project files.

This commit is contained in:
ExilProductions
2025-08-08 05:51:55 +02:00
parent 47d7fa9bc5
commit 7beeac5713
4 changed files with 271 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
@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