Last active
December 20, 2015 16:29
-
-
Save nitriques/6161835 to your computer and use it in GitHub Desktop.
Copy a WUBI Ubuntu install for backup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem go to s: | |
s: | |
rem echo banner | |
echo Ubuntu backup manager | |
echo. | |
pause | |
echo. | |
echo Are you sure??? | |
pause | |
xcopy S:\wubildr E:\Ubuntu-Backup\ /I /F /H /Y | |
xcopy S:\wubildr.mbr E:\Ubuntu-Backup\ /I /F /H /Y | |
xcopy S:\ubuntu E:\Ubuntu-Backup\ubuntu /I /F /H /J /E /Y | |
echo. | |
echo Done! | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment