Valorant - Cleaner.bat
The Ultimate Guide to VALORANT CLEANER.bat: Miracle Fix or Security Risk?
If you have spent any time in the trenches of VALORANT tech support—scouring Reddit threads, Discord servers, or YouTube tutorials—you have likely encountered a mysterious file named VALORANT CLEANER.bat .
To the average player facing a frustrating Vanguard error (Van 1067, Van 152, or the dreaded "Secure Boot" loop), this file sounds like a lifeline. It promises to wipe away corrupted files, reset network stacks, and get you back into a Competitive match in minutes.
But what exactly is this script? Is it safe? Can it get you banned? And should you use it instead of the official Riot Games repair tool?
Let’s dissect everything you need to know about VALORANT CLEANER.bat.
Part 5: The Official Alternative – Riot Games Repair Methodology
You do not need a batch file. Windows has built-in tools, and Riot has a dedicated repair system.
Part 4: Step-by-Step – How to Create Your Own VALORANT CLEANER.bat
Creating your own script ensures you know exactly what it does, eliminating the risk of downloading a malicious file from a forum. Follow these steps: VALORANT CLEANER.bat
Step 1: Open Notepad (or any plain text editor like Notepad++).
Step 2: Copy and Paste the Safe Script Below. This script is designed for Windows 10/11, targeting VALORANT’s default install paths.
@echo off title VALORANT Community Cleaner color 0C echo ========================================== echo VALORANT CLEANER v2.0 echo ========================================== echo WARNING: This script will delete game configs and caches. echo Your in-game settings will reset to default. echo. set /p "confirm=Type YES to continue: " if /i not "%confirm%"=="YES" exit /b:: Admin Check net session >nul 2>&1 if %errorLevel% neq 0 ( echo Requesting Administrator privileges... powershell start -verb runas '%0' exit /b )
echo. echo Stopping Riot Services... sc stop vgc >nul 2>&1 sc stop vgk >nul 2>&1 taskkill /f /im RiotClientServices.exe >nul 2>&1 timeout /t 3 /nobreak >nul
echo Cleaning VALORANT Config and Logs... if exist "%localappdata%\VALORANT\Saved\Config" ( rmdir /s /q "%localappdata%\VALORANT\Saved\Config" echo Removed Config folder. ) if exist "%localappdata%\VALORANT\Saved\Logs" ( rmdir /s /q "%localappdata%\VALORANT\Saved\Logs" echo Removed Logs folder. ) The Ultimate Guide to VALORANT CLEANER
echo Cleaning Riot Client Cache... if exist "%localappdata%\Riot Games\Riot Client\Data" ( rmdir /s /q "%localappdata%\Riot Games\Riot Client\Data" echo Removed Riot Client Data. )
echo Cleaning NVIDIA DXCache (if exists)... if exist "%localappdata%\NVIDIA\DXCache" ( del /q "%localappdata%\NVIDIA\DXCache*.*" >nul 2>&1 echo Cleared NVIDIA shader cache. )
echo. echo Restarting Vanguard... sc start vgk >nul 2>&1 sc start vgc >nul 2>&1
echo. echo ========================================== echo CLEANUP COMPLETE. echo Please restart your computer now. echo ========================================== pause
Step 3: Save as a Batch File.
- Click
File>Save As. - Change "Save as type" to
All Files (*.*). - Name the file:
VALORANT CLEANER.bat. - Save it to your Desktop for easy access.
Step 4: Run as Administrator.
- Right-click the file. Select
Run as administrator. - Type
YESwhen prompted.
Restart PC
shutdown /r /t 5
After reboot, launch VALORANT. The game will automatically reinstall Vanguard.

