Guest User

Untitled

a guest
Dec 1st, 2017
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. @echo off
  2. echo Backing up Team Fortress 2 game files...
  3. echo -
  4. echo Backing up Game Cache Files
  5. echo -
  6.  
  7. REM Copying Game Cache Files
  8. REM If you are not on an x86 system, make sure the correct path to your "Program Files" folder is substituted below.
  9.  
  10. xcopy "C:\Program Files (x86)\Steam\steamapps\team fortress 2 *.gcf" "C:\Steam Backup\TF2\GFC's" /c /s /r /d /y /i > "C:\Steam Backup\TF2\Logs\GFC's.log"
  11.  
  12. echo Backing up Team Fortress 2 Folder
  13. echo -
  14.  
  15. REM Copying Team Fortress 2 Folder
  16. REM Change the below "blade_za" to correspond with your Steam ID.
  17.  
  18. xcopy "C:\Program Files (x86)\Steam\steamapps\blade_za\team fortress 2\*.*" "C:\Steam Backup\TF2\team fortress 2" /c /s /r /d /y /i > "C:\Steam Backup
  19.  
  20. \TF2\Logs\TF2_folder.log"
  21.  
  22. echo Backup complete!
  23.  
  24. REM If you want the batch file to exit immediately after backup, change the "pause" below to "exit"
  25. pause
Add Comment
Please, Sign In to add comment