Skip to content

Instantly share code, notes, and snippets.

@Reyuu
Last active April 15, 2020 22:30
Show Gist options
  • Save Reyuu/72bd04cba48e4d486c26bf1a46dcd22c to your computer and use it in GitHub Desktop.
Save Reyuu/72bd04cba48e4d486c26bf1a46dcd22c to your computer and use it in GitHub Desktop.
VALORANT anti-cheat background process prevention script
:: Set RIOT_CLIENT_PATH to the path with the client, should be the same as "Start in" path given in Valorant desktop shortcut
SET RIOT_CLIENT_PATH="D:/Riot Games/Riot Client"
:: Go to that path
cd %RIOT_CLIENT_PATH%
:: Launch the game as normal, launcher also hangs in memory, taking around 110MB of RAM (stupid design)
start /WAIT "" "RiotClientServices.exe" --launch-product=valorant --launch-patchline=live
:: Kill the bitch (vgc.exe)
taskkill /f /im vgc.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment