Backups
FiveLaunch keeps your setup safe two ways: a My Setup snapshot that live FiveM always returns to after a session, and a central backup store of safety snapshots taken before it ever changes a folder or file. Both are browsable and restorable from inside the app. You should still keep one manual backup of your own before doing anything advanced. It’s the fastest way back to a completely clean state.
My Setup: your baseline snapshot
Section titled “My Setup: your baseline snapshot”The first time you run FiveLaunch it captures your current FiveM files into a client called My Setup. This snapshot is the baseline every session returns to: whatever a client swaps in while you play, closing the game puts FiveM back to your My Setup exactly as it was when you captured it.
Create it
Section titled “Create it”-
On first run: the setup dialog offers Snapshot my setup & continue. This captures My Setup for you. (You can Skip snapshot and do it later.)
-
Later, from Settings: open Settings → Snapshot · My Setup and choose Create snapshot to capture your current FiveM files as the baseline.
Restore it
Section titled “Restore it”After every session FiveLaunch restores My Setup automatically. To force it right away, for example if a launch went sideways, open Settings → Snapshot · My Setup and choose Restore now to put FiveM back to your snapshot immediately.
The central backup store
Section titled “The central backup store”When FiveLaunch first takes ownership of a folder or file, it snapshots the existing contents into a single central store:
%APPDATA%\FiveLaunch\backups\
Browse & restore in-app
Section titled “Browse & restore in-app”Open Backup History in FiveLaunch to see every snapshot with its timestamp and what it captured, and restore any entry in place.
-
Close FiveM and GTA V (restoring touches files the game may lock).
-
Open Backup History in FiveLaunch.
-
Pick the snapshot you want and choose Restore.
What to back up yourself
Section titled “What to back up yourself”For a belt-and-suspenders manual copy, these are the 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 FiveM is installed somewhere custom, back up the equivalent folders under your own
FiveM.app path instead.
One-command snapshot (PowerShell)
Section titled “One-command snapshot (PowerShell)”Close FiveM and GTA V first, then run this to zip the key folders to your Desktop (edit the 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"Back up your FiveLaunch profiles
Section titled “Back up your FiveLaunch profiles”Your clients (and their per-client mods/plugins/settings) live in the FiveLaunch data directory, separate from FiveM’s own folders. To preserve or migrate them, copy:
%APPDATA%\FiveLaunch\clients.json: the profile list and options.%APPDATA%\FiveLaunch\clients\: each client’s files.%APPDATA%\FiveLaunch\backups\: the snapshot store (optional, if you want history too).
Restoring
Section titled “Restoring”-
Close FiveM and GTA V.
-
Back to your baseline: open Settings → Snapshot · My Setup and choose Restore now.
-
From FiveLaunch: open Backup History and restore the snapshot you want.
-
From your own zip: extract it back to the original locations.