Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Backup Ideas Needed

Reply
Thread Tools Display Modes

Backup Ideas Needed

 
 
Debi
Guest
Posts: n/a

 
      05-06-2007
Hi,

I have Vista Home Premium and 5 User Accounts for the family.

I was thinking of buying a second hard drive and have all users save their
files/documents to there.

I could then do a daily/weekly backup of that drive to an external hard
drive... nothing fancy - No Image/Compression just all the filers in their
original state will do me!

However, as all the accounts are password protected will there be a problem
if & when I backup to the external hard drive?


Regards,
Debi :-)


 
Reply With Quote
 
 
 
 
Iuvenalis
Guest
Posts: n/a

 
      05-06-2007
"Debi" <> wrote in message
news:...
> Hi,
>
> I have Vista Home Premium and 5 User Accounts for the family.
>
> I was thinking of buying a second hard drive and have all users save their
> files/documents to there.
>
> I could then do a daily/weekly backup of that drive to an external hard
> drive... nothing fancy - No Image/Compression just all the filers in their
> original state will do me!
>
> However, as all the accounts are password protected will there be a
> problem if & when I backup to the external hard drive?
>
>
> Regards,
> Debi :-)
>



I use robocopy which will do what you want if you run it or schedule it as
admin.
I "think" it is included in Vista by default but if not it is easy to find
on the net.

You just need to create a cmd or bat file with something like this, just
change "USER" for the relative usernames:

robocopy "C:\Users\USER\Documents" "E:\Docs" /MIR /SEC /V /NP /R:0 /W:30
robocopy "C:\Users\USER\Pictures" "E:\Pictures" /MIR /SEC /V /NP /R:0 /W:30
robocopy "C:\Users\USER\Favorites" "E:\Favorites" /MIR /SEC /V /NP /R:0
/W:30
robocopy "C:\Users\USER\Contacts" "E:\Contacts" /MIR /SEC /V /NP /R:0 /W:30
robocopy "C:\Users\USER\Music" "E:\Music" /MIR /SEC /V /NP /R:0 /W:30
robocopy "C:\Users\USER\Videos" "E:\Videos" /MIR /SEC /V /NP /R:0 /W:30
robocopy "C:\Users\USER\Downloads" "E:\Downloads" /MIR /SEC /V /NP /R:0
/W:30
robocopy "C:\Users\USER\AppData\Local\Microsoft\Windows Mail" "E:\Email"
/MIR /SEC /V /NP /R:0 /W:30
End

You can add any other dir of your choice, just create a new line with the
relative paths.
Change "E" to whatever the drive letter is of your ext disc.

It'll take a few mins to setup, but it is easy to run & schedule if you
wish.
It will ensure that the contents of the backup always match the contents of
the users dir.

To create a cmd or bat file, create a new txt doc & save it as cmd or bat.



 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Any ideas? Dont Agree Windows Vista General Discussion 1 03-16-2008 02:52 AM
Help needed: File Backup Fails "MM Error...FsRtl Filter...(0xC0000 Tony Ashton Windows Vista General Discussion 3 02-01-2008 05:04 PM
any ideas nic Windows Vista Installation 0 09-28-2006 12:03 PM
any ideas nic Windows Vista Installation 0 09-27-2006 07:11 AM
Help - I am out of ideas Charlie Windows Vista General Discussion 4 09-20-2006 01:31 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59