Skip to content

Instantly share code, notes, and snippets.

@GerRudi
Created April 17, 2020 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GerRudi/37f78ea708fd26fbd7a67a34bf6dcdff to your computer and use it in GitHub Desktop.
Save GerRudi/37f78ea708fd26fbd7a67a34bf6dcdff to your computer and use it in GitHub Desktop.
Clears all user configured settings from RotMG Exalt
@echo off
echo "Warning, this will reset ALL Settings of RotMG Exalt. Please make sure that the game is closed"
pause
:startpoint
tasklist /FI "IMAGENAME eq RotMG Exalt.exe" | findstr "RotMG Exalt.exe" >nul
if "%ERRORLEVEL%"=="0" goto running
REG DELETE "HKCU\Software\DECA Live Operations GmbH\RotMGExalt" /f >nul
REG ADD "HKCU\Software\DECA Live Operations GmbH\RotMGExalt" /f >nul
echo.
echo "All settings cleared successfully. You may now launch the game."
pause
exit
:running
echo "Please close your game first and try again."
pause
goto startpoint
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment