Baking up files...

pascal

Distinguished
Jun 4, 2004
27
0
18,530
Archived from groups: microsoft.public.win2000.file_system (More info?)

Hi all,

I posted a similar message yesterday but I cannot see it
in the board, so here is my question again.

I am looking for a way of backing up files to an external
device. My files should remain on their original
location and when I press the button, only those files
that have been modified since my last back up should be
saved.

In DOS we could write batch files to that extent, but
that was too long ago and with win2000 I am a bit at a
loss.

Any help will be greatly appreciated.
 
G

Guest

Guest
Archived from groups: microsoft.public.win2000.file_system (More info?)

On Wed, 14 Jul 2004 01:07:39 -0700, "Pascal" <Pascal@discussions.microsoft.com>
wrote:

>Hi all,
>
>I posted a similar message yesterday but I cannot see it
>in the board, so here is my question again.
>
>I am looking for a way of backing up files to an external
>device. My files should remain on their original
>location and when I press the button, only those files
>that have been modified since my last back up should be
>saved.
>
>In DOS we could write batch files to that extent, but
>that was too long ago and with win2000 I am a bit at a
>loss.
>
>Any help will be greatly appreciated.
>


Do an incrementail backup in NTBackup will do that.

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

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

Guest

Guest
Archived from groups: microsoft.public.win2000.file_system (More info?)

In addition to the other reply, if you want to keep the same file structure
on the backup media, you could use robocopy from the resource kit (you can
download it from MS). You can include it in a batch file:

robocopy <source> <destination> /s /e /r:1 /w:1

and so forth - robocopy /??? will show you all the parameters.

Pascal wrote:
> Hi all,
>
> I posted a similar message yesterday but I cannot see it
> in the board, so here is my question again.
>
> I am looking for a way of backing up files to an external
> device. My files should remain on their original
> location and when I press the button, only those files
> that have been modified since my last back up should be
> saved.
>
> In DOS we could write batch files to that extent, but
> that was too long ago and with win2000 I am a bit at a
> loss.
>
> Any help will be greatly appreciated.