Both Windows 7 and Windows Vista include Robocopy. The following batch file copies all data from all standard data locations for the Current User to a UNC Path on the network. backup.cmd: @ECHO OFF CLS FOR /F "TOKENS=2-4 DELIMS=/ " %%A IN ('DATE /T') DO (SET MYDATE=%%A-%%B-%%C) SET LOG="\\SERVER\INSTALL\CUSTOMER BACKUPS\%MYDATE%\%USERNAME%\backup.log" ECHO This batch file is intended for use with Windows Vista and Windows 7. ECHO. ECHO Copies data from Current User Account to Server. ECHO. ECHO If there is more than one user account on this computer, you will need to login ECHO to each user account and then run this batch file. ECHO. ECHO You will need to Show All Hidden Files and Folders and Unhide All Protected ECHO Operating System Files when restoring this backup from Server. ECHO. ECHO All programs must be closed prior to executing this script. This script will ECHO not backup an open file. ECHO. ECHO Please confirm that there is no data in the follow...
Technical Adventures in the World of IT