Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- REM bkup.bat
- REM
- REM Backs up Scrap Mechanic saves to a new folder in the directory in which this script is located.
- REM Specifically written to run without modifications, but no guarantees.
- REM
- REM The copied save folder will be named in this format: Save [year]-[month]-[day] [hour]h
- REM
- REM Note that backed-up saves will be overwritten if the output folder already exists (when the script is run 2+ times in the same hour).
- @echo off
- for /F "EOL=L" %%A in ('WMIC OS Get LocalDateTime') do set "date=%%~nA" & goto :next
- :next
- set name=Save %date:~0,4%-%date:~4,2%-%date:~6,2% %date:~8,2%h
- for /D %%I in ("%appdata%\Axolot Games\Scrap Mechanic\User\User*") do robocopy "%%~I\Save" "%name%" /E
- pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement