backing up with a batch file

P

Philip

Is this the group to ask about batch files or utilities to
back up files like my AddressBook, emails, Favourites etc?

tia
Philip
 
D

DL

Well you can use the default win Backup utility or google for 'Backup'.
Depending on mail app there are utilities specifically for these
 
P

Philip

Thx DL,
MS Backup seems to make me choose the few files I need to
backup every time - hence my request for a batch file.

I have Googled but didn't find anything that told me
(simply) how to build my own batch file. I will take
another look.
Philip
 
J

Jerold Schulman

Is this the group to ask about batch files or utilities to
back up files like my AddressBook, emails, Favourites etc?

tia
Philip


If you tell NTBackup to schedule the job for latter, you can Copy/Paste the
properties of the scheduled job into a batch. Then delete the scheduled task.

See tip 2265 in the 'Tips & Tricks' at http://www.jsiinc.com



Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
R

Ralph

I use this to copy from my hard disk to a USB drive.
I have this batch file sitting on the USB drive.
xcopy "C:\ralph\001030\MY_SITE" MY_SITE /S /D /I /Y

MY_SITE is a directory containing a copy of my whole website.
 
J

Jay Somerset

I use this to copy from my hard disk to a USB drive.
I have this batch file sitting on the USB drive.
xcopy "C:\ralph\001030\MY_SITE" MY_SITE /S /D /I /Y

MY_SITE is a directory containing a copy of my whole website.


You might want to look at using XXCOPY instead. It is much more flexible,
and makes backing up directory trees really easy, using the /CLONE
parameter.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top