Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @ECHO OFF
- :: Edit both paths
- SET SavegamePath=C:\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\saves\YOURSAVE\persistent.sfs
- SET DestinationFolder=C:\PATH\TO\BACKUP\FOLDER
- :: Do NOT edit the following lines
- IF NOT "%OS%"=="Windows_NT" GOTO:EOF
- WMIC.EXE Alias /? >NUL 2>&1 || GOTO:EOF
- FOR /F "skip=1 tokens=1-6" %%G IN ('WMIC Path Win32_LocalTime Get Day^,Hour^,Minute^,Month^,Second^,Year /Format:table') DO (
- IF "%%~L"=="" GOTO s_done
- SET _yyyy=%%L
- SET _mm=00%%J
- SET _dd=00%%G
- SET _hour=00%%H
- SET _minute=00%%I
- )
- :s_done
- XCOPY "%SavegamePath%" "%DestinationFolder%\%_yyyy%%_mm:~-2%%_dd:~-2%_%_hour:~-2%%_minute:~-2%\" /Y
Advertisement
Add Comment
Please, Sign In to add comment