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_disabled
folder. - Enable mods: Restores all files/folders from
mods_disabled
back 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.md
in 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
1
to disable mods (move mods tomods_disabled
) - Enter
2
to enable mods (restore mods frommods_disabled
)
- Enter
- Make sure you have Python 3 installed.
- Place
rdr2cleaner.py
in 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
dist
folder. Move it to your RDR2 game folder.
- The program will always keep the
mods_disabled
folder 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.