Month: October 2014

  • Quick backup of important files

    pause Copies Important files from Windows 7 computers.

    xcopy “c:%homepath%\desktop\*.*” “Backups\%USERNAME%\Desktop\” /D /S /V /C /I /R /Y
    xcopy “c:%homepath%\Favorites\*.*” “Backups\%USERNAME%\Favorites\” /D /S /V /C /I /R /Y
    xcopy “c:%homepath%\My Documents\*.*” “Backups\%USERNAME%\My Documents\” /D /S /V /C /I /R /Y
    xcopy “c:%homepath%\Documents\*.*” “Backups\%USERNAME%\Documents\” /D /S /V /C /I /R /Y

    pause