12 lines
363 B
Batchfile
12 lines
363 B
Batchfile
@echo off
|
||
REM === FACEIT Anti-Cheat logout ===
|
||
echo FACEIT Anti-Cheat logout in progress…
|
||
|
||
:: Kill processes first
|
||
taskkill /f /im "FaceitClient.exe" >nul 2>&1
|
||
taskkill /f /im "FaceitClientService.exe" >nul 2>&1
|
||
|
||
:: Delete local session/cache
|
||
rmdir /s /q "%localappdata%\FACEIT"
|
||
|
||
echo Logout successful. You’ll be required to log in again on reopening FACEIT. |