Connecting Tech Pros Worldwide Forums | Help | Site Map

solution of batch file question

Newbie
 
Join Date: Feb 2007
Posts: 1
#1: Feb 27 '07
make a batch file which will backuo the home-directory of a user to a shared folder on a data basis. the backup should be named, for example for the date 07 feb 2007 as <username>-backup-2007-02-07. please send the answer to my e-mail address.

Banfa's Avatar
AdministratorVoR
 
Join Date: Feb 2006
Location: South West UK
Posts: 6,186
#2: Feb 28 '07

re: solution of batch file question


something like

xcopy <home-path>\*.* <backup-path>\%date:/=% /S /E /C /I /H /R /K /Y

in a batch file should do it then set up a scheduler entry to call that batch file as required.
Reply