Rift CE automatically backs up your account vault once per day, giving you a rolling window of recovery points if something goes wrong. Backups are plain copies of the encryptedDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/N3XT3R1337/RiftCE/llms.txt
Use this file to discover all available pages before exploring further.
accounts.dat file — they require no additional configuration and are pruned automatically to avoid accumulating old files indefinitely.
How backups work
Each time Rift CE runs,BackupService checks whether a backup has already been taken today. If not, it copies accounts.dat to the backups directory with a datestamp filename. Only one backup is created per calendar day; if you open Rift CE multiple times on the same day, only the first run triggers a backup.
Older backup files are pruned at the same time: any file whose creation date is older than BackupKeepDays is deleted automatically.
Backup settings
| Setting | Default | Description |
|---|---|---|
BackupEnabled | true | Create a daily backup on startup. Set to false to disable all automatic backups. |
BackupKeepDays | 7 | Number of days to retain backup files. Files older than this are deleted on the next startup. |
File locations
| Path | Description |
|---|---|
%LocalAppData%\RiftCE\accounts.dat | Live account vault |
%LocalAppData%\RiftCE\backups\accounts_YYYYMMDD.dat | Daily backup, one file per day |
Restoring from a backup
Close Rift CE
Make sure Rift CE is fully closed before modifying any vault files. The app keeps
accounts.dat open while running.Open the backup directory
Navigate to
%LocalAppData%\RiftCE\backups\ in File Explorer. You can paste that path directly into the address bar.Choose a backup file
Identify the backup you want to restore by its date. The filename format is
accounts_YYYYMMDD.dat.Replace the live vault
Copy the chosen backup file to
%LocalAppData%\RiftCE\ and rename it accounts.dat, overwriting the existing file.Encryption of backup files
Backup files are byte-for-byte copies ofaccounts.dat at the moment the backup runs. They are encrypted with whichever mode was active at that time — DPAPI or AES-256. Switching encryption modes after a backup is taken does not retroactively re-encrypt older backup files.
For more detail on encryption modes and their portability trade-offs, see Encryption.