@echo off
title FiveM Temizleyici
REM Kullanıcı profilini al
set "userprofile=%USERPROFILE%"
echo FiveM Temizleme Araci
echo ------------------------------
REM DigitalEntitlements
echo DigitalEntitlements siliniyor...
if exist "%userprofile%\AppData\Local\DigitalEntitlements" (
rmdir /s /q "%userprofile%\AppData\Local\DigitalEntitlements"
echo [+] DigitalEntitlements silindi.
) else (
echo [-] DigitalEntitlements bulunamadi.
)
REM Rockstar Games
echo Rockstar Games temizleniyor...
if exist "%userprofile%\Documents\Rockstar Games" (
rmdir /s /q "%userprofile%\Documents\Rockstar Games"
mkdir "%userprofile%\Documents\Rockstar Games"
echo [+] Rockstar Games temizlendi.
) else (
echo [-] Rockstar Games bulunamadi.
)
REM FiveM klasörlerini temizleme
echo FiveM klasorleri temizleniyor...
REM Crash dosyalari
if exist "%userprofile%\AppData\Local\FiveM\FiveM.app\crashes" (
rmdir /s /q "%userprofile%\AppData\Local\FiveM\FiveM.app\crashes"
mkdir "%userprofile%\AppData\Local\FiveM\FiveM.app\crashes"
echo [+] Crash dosyalari silindi.
)
REM Log dosyalari
if exist "%userprofile%\AppData\Local\FiveM\FiveM.app\logs" (
rmdir /s /q "%userprofile%\AppData\Local\FiveM\FiveM.app\logs"
mkdir "%userprofile%\AppData\Local\FiveM\FiveM.app\logs"
echo [+] Log dosyalari silindi.
)
REM Citizen klasoru
if exist "%userprofile%\AppData\Local\FiveM\FiveM.app\citizen" (
rmdir /s /q "%userprofile%\AppData\Local\FiveM\FiveM.app\citizen"
echo [+] Citizen klasoru silindi.
)
REM Data klasörleri (game-storage hariç)
set "dataPath=%userprofile%\AppData\Local\FiveM\FiveM.app\data"
if exist "%dataPath%" (
echo Data klasorleri temizleniyor...
if exist "%dataPath%\cache" (
rmdir /s /q "%dataPath%\cache"
mkdir "%dataPath%\cache"
echo [+] Cache temizlendi.
)
if exist "%dataPath%\server-cache" (
rmdir /s /q "%dataPath%\server-cache"
mkdir "%dataPath%\server-cache"
echo [+] Server-cache temizlendi.
)
if exist "%dataPath%\server-cache-priv" (
rmdir /s /q "%dataPath%\server-cache-priv"
mkdir "%dataPath%\server-cache-priv"
echo [+] Server-cache-priv temizlendi.
)
if exist "%dataPath%\nui-storage" (
rmdir /s /q "%dataPath%\nui-storage"
mkdir "%dataPath%\nui-storage"
echo [+] Nui-storage temizlendi.
)
if exist "%dataPath%\cache-subprocess" (
rmdir /s /q "%dataPath%\cache-subprocess"
mkdir "%dataPath%\cache-subprocess"
echo [+] Cache-subprocess temizlendi.
)
)
REM CFX
if exist "%userprofile%\AppData\Local\cfx" (
rmdir /s /q "%userprofile%\AppData\Local\cfx"
echo [+] CFX kayitlari silindi.
)
REM Diskotik
if exist "%programdata%\diskotik" (
rmdir /s /q "%programdata%\diskotik"
echo [+] Diskotik kayitlari silindi.
)
REM Registry
echo Registry temizleniyor...
reg delete "HKCU\Software\CitizenFX" /f >nul 2>&1
reg delete "HKCU\Software\FiveM" /f >nul 2>&1
echo [+] Registry temizlendi.
REM CitizenFX Roaming
if exist "%userprofile%\AppData\Roaming\CitizenFX" (
rmdir /s /q "%userprofile%\AppData\Roaming\CitizenFX"
echo [+] CitizenFX roaming verileri temizlendi.
)
echo ------------------------------
echo Temizleme tamamlandi!
echo Game-storage klasoru korundu.
echo ------------------------------
... (1 satır kaldı)