Backups
Backups
Section titled “Backups”FiveLaunch tries to be safe by creating backups when it first takes over folders/files, but you should still make your own backup before doing anything advanced.
What to back up (recommended)
Section titled “What to back up (recommended)”These are the main locations FiveLaunch can modify during linking/sync:
%LOCALAPPDATA%\FiveM\FiveM.app\mods%LOCALAPPDATA%\FiveM\FiveM.app\plugins%LOCALAPPDATA%\FiveM\FiveM.app\citizen%APPDATA%\CitizenFX\gta5_settings.xml%APPDATA%\CitizenFX\CitizenFX.ini
If you have a custom FiveM install location, back up the equivalent folders under your custom FiveM.app path.
What FiveLaunch backs up automatically
Section titled “What FiveLaunch backs up automatically”Depending on what you enable, FiveLaunch will attempt to create “original” backups by renaming the existing target before linking:
mods_original,plugins_original,citizen_originalgta5_settings.xml_original,CitizenFX.ini_original
For plugins in sync/copy mode, FiveLaunch may also rotate/rename an existing FiveM.app\plugins directory if it belongs to another client or is unmanaged, to prevent cross-client mixing.
How to back up (manual)
Section titled “How to back up (manual)”Simple method (File Explorer)
Section titled “Simple method (File Explorer)”- Close FiveM and GTA V.
- Copy the folders/files listed above to a safe location (another drive is best).
- Optional: zip them to make a single archive you can restore quickly.
PowerShell method (zip)
Section titled “PowerShell method (zip)”If you prefer a single archive, you can zip the key folders (edit paths if your install differs):
$stamp = Get-Date -Format "yyyyMMdd-HHmmss"$dest = "$env:USERPROFILE\Desktop\FiveM-backup-$stamp.zip"
$paths = @( "$env:LOCALAPPDATA\FiveM\FiveM.app\mods", "$env:LOCALAPPDATA\FiveM\FiveM.app\plugins", "$env:LOCALAPPDATA\FiveM\FiveM.app\citizen", "$env:APPDATA\CitizenFX\gta5_settings.xml", "$env:APPDATA\CitizenFX\CitizenFX.ini")
Compress-Archive -Path $paths -DestinationPath $dest -ForceWrite-Host "Created: $dest"Restoring a backup
Section titled “Restoring a backup”- Close FiveM and GTA V.
- If FiveLaunch created
_originalbackups, you can restore by:- Removing the linked folder/file (junction/file)
- Renaming
<thing>_originalback to<thing>
- If you made a zip backup, extract it back to the original locations.
Backing up your FiveLaunch profiles
Section titled “Backing up your FiveLaunch profiles”If you want to preserve all your client profiles and client-specific mods/plugins, back up the FiveLaunch data directory:
%APPDATA%\FiveLaunch\clients.json%APPDATA%\FiveLaunch\clients\
This is separate from FiveM’s own folders.