Hello grim looters!
In the last few days i saw a lot of people having issues with loosing their shared stash. Here’s another qol improvement to handle backups.
An easy One-click backup method per *.bat file that uses inherent xcopy feature of windows.
The only thing you need to do is creating this file and enter the origin path and the destination path where the saves should be backed up in. The batchfile should work with every Windows version from at least XP to Win 10.
How to:
Open up a text editor of your choice or create a new *.txt file (right click desktop/new/textdocument) Type as follows into the text editor:
XCOPY "[b]X[/b]:\Users\[i]your_username[/i]\Documents\My Games\Grim Dawn\save" "DESTINATION BACKUP DIRECTORY" /D /E /C /R /I /K /Y
[ul]Keep the inverted commas.
[li]X is the drive you keep your My Documents folder with local Grim Dawn saves. It’s the origin of the save files you want to backup. Make sure that the path is correct. I recommend to turn steam cloud off and use local saving. If you not do already see here: How to - Move your saves from Steam cloud to Grim Dawn’s default location.[/li]If you want to use steam cloud you should instead use the cloud save directory. This would be:
X:[i]your steam directory[/i]\userdata[i]afolderwithnumbers[/i]\219990\remote\save
[li]DESTINATION BACKUP DIRECTORY stands for the path into a folder of your choice you want to backup the files to from the origin directory (for example D:\Backups\Grim_Dawn\local_saves).[/li]
[/ul]
/D /E /C /R /I /K /Y are commands that do as following:
[ul]
/D - Tells XCopy to copy all source files that are newer than files in the destination folder.
[li]/E - Copies all subdirectories, even if empty.[/li] [li]/C - Ignores errors.[/li] [li]/R - Copies read-only files.[/li] [li]/I - Will create a folder in the desired destination spot if one does not already exist.[/li] [li]/K - Copies and keeps read-only attributes on files that are set that way.[/li] [li]/Y - Removes confirmation prompt for overwriting of files.[/ul][/li]
More commands you might use as an advanced user can be looked up here:
https://technet.microsoft.com/en-us/library/bb491035.aspx
Example how mine looks like:
XCOPY "C:\Users\user\Documents\My Games\Grim Dawn\save" "F:\BCKUP\Backup_saves_Grim_Dawn_per_bat" /D /E /C /R /I /K /Y
[ul]Save the file with a name you like. For example: Grim_Dawn_local_bckup
[li]The file now keeps the file extension .txt because it is a text file. You only need to change the, for example “Grim_Dawn_local_bckup.txt”, now to “Grim_Dawn_local_bckup.bat” Confirm the change witk OK. The icon might change to the typical gear wheel icon of a batchfile. If your file extension does not show up -here is how to make these visible. If you want to set up another directory or expand the code you can switch between.txt and *.bat whenever you need it.[/li]
[/ul]
Your batchfile is now ready to use!
Whenever you click it, your save files will be copied to the destination folder you had set up or update the files in your backup folder.
source:
http://forums.runicgames.com/viewtopic.php?f=30&t=52648#p445159 Thanks to Prateem and coauthors
I also link the already existing guide from the GD forum with some other different solutions you can choose from.
http://www.grimdawn.com/forums/showthread.php?t=10564