View Full Version : backing up with a batch file


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

tia
Philip

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

"Philip" wrote in message
news:545e01c480ac$41d3b420$a401280a@phx.gbl...
> Is this the group to ask about batch files or utilities to
> back up files like my AddressBook, emails, Favourites etc?
>
> tia
> Philip



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

>-----Original Message-----
>Well you can use the default win Backup utility or google
for 'Backup'.
>Depending on mail app there are utilities specifically
for these
>
>"Philip" wrote in
message
>news:545e01c480ac$41d3b420$a401280a@phx.gbl...
>> Is this the group to ask about batch files or utilities
to
>> back up files like my AddressBook, emails, Favourites
etc?
>>
>> tia
>> Philip
>
>
>.
>

Nick
Philip wrote :
> 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
>
>> -----Original Message-----
>> Well you can use the default win Backup utility or google for 'Backup'.
>> Depending on mail app there are utilities specifically for these
>>
>> "Philip" wrote in message
>> news:545e01c480ac$41d3b420$a401280a@phx.gbl...
>>> Is this the group to ask about batch files or utilities to
>>> back up files like my AddressBook, emails, Favourites etc?
>>>
>>> tia
>>> Philip
>>
>>
>> .

http://www.outertech.com/index.php?_charisma_page=product&id=1

--
This is an automatic signature of MesNews.
Site : http://mesnews.no-ip.com


Jerold Schulman
On Thu, 12 Aug 2004 13:38:00 -0700, "Philip"
wrote:

>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

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.

--
remove n u m b e r s to reply
Philip wrote in message <5ff601c48174$abbe2050$a401280a@phx.gbl>...
>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
>
>>-----Original Message-----
>>Well you can use the default win Backup utility or google
>for 'Backup'.
>>Depending on mail app there are utilities specifically
>for these
>>
>>"Philip" wrote in
>message
>>news:545e01c480ac$41d3b420$a401280a@phx.gbl...
>>> Is this the group to ask about batch files or utilities
>to
>>> back up files like my AddressBook, emails, Favourites
>etc?
>>>
>>> tia
>>> Philip
>>
>>
>>.
>>



Jay Somerset
On Thu, 16 Sep 2004 10:23:13 +1000, "Ralph"
wrote:

> 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.