Advertisement
Guest User

Metro Exodus Automated Save Backup

a guest
Feb 16th, 2019
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.98 KB | None | 0 0
  1. @echo off
  2. setlocal EnableDelayedExpansion
  3.  
  4. ##########################################
  5. ## Metro Exodus Save Backup             ##
  6. ## This will save a total of            ##
  7. ## 6 backups of your Metro Exodus save  ##
  8. ## to a location of your choice         ##
  9. ##########################################
  10.  
  11. ##Sets the location you want your backups to be saved
  12. set backup="E:\GameSaves"
  13.  
  14. ##To find this number, go to C:\Users\%username%\Saved Games\metro exodus\ copy down the folder name, mine was 76561197961457604 and place
  15. ##it after the metroID= below
  16. set metroID=76561197961457604
  17.  
  18. ##Name of the folder you want to save them to
  19. set gameid=MExodusSave
  20.  
  21. ##Renames previous backups if they exist.
  22. cd "%backup%\%gameid%"
  23. if exist 5 ren 5 6
  24. if exist 4 ren 4 5
  25. if exist 3 ren 3 4
  26. if exist 2 ren 2 3
  27. if exist 1 ren 1 2
  28. if exist current ren current 1
  29. if exist 6 rd /q /s 6
  30.  
  31. ##does the actual backup
  32. robocopy "C:\Users\%username%\Saved Games\metro exodus\%metroID%" "%backup%\%gameid%\current" /s /MOT:60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement