A simple utility to temporarily disable or restore mods in your Red Dead Redemption 2 game folder by moving mod files to and from a mods_disabled folder.
- Disable mods: Moves all files/folders (except those you specify) into a
mods_disabledfolder. - Enable mods: Restores all files/folders from
mods_disabledback to the main folder. - Supports a config file (
index.md) to specify files/folders to keep. - Works as a Windows executable or as a Python script.
- Download or build the executable (see below).
- Place the EXE in your RDR2 game folder.
- (Optional): Create a
index.mdin the same folder, listing files/folders (one per line) you want to keep. (This repo also have a vanilla list available with all files from first installation) - Run the EXE by double-clicking it.
- Choose an option:
- Enter
1to disable mods (move mods tomods_disabled) - Enter
2to enable mods (restore mods frommods_disabled)
- Enter
- Make sure you have Python 3 installed.
- Place
rdr2cleaner.pyin your RDR2 game folder. - Open a terminal/command prompt in that folder.
- Run:
python rdr2cleaner.py - Follow the on-screen prompts.
- Install Python (if not already installed).
- Install PyInstaller:
pip install pyinstaller - Open a terminal in the folder containing
rdr2cleaner.py. - Run:
pyinstaller --onefile --console --clean --icon=cowboy.ico --name "RDR2ModsCleaner" rdr2cleaner.py - The executable will be created in the
distfolder. Move it to your RDR2 game folder.
- The program will always keep the
mods_disabledfolder itself. - If no config file is found, you can enter files/folders to keep when prompted.
- The program is designed for use in the RDR2 game folder, but can be used in any folder with similar needs.
The software is licensed under MIT.