backup software that ignores user rights

0

As a computer technician I have to reinstall systems allmost daily (when it can't be repaired ;-)) My problem is that I recover user files by hand and a external mounting device. Most of the time it works fine, but also weekly I have systems with passwords and personal files which are often not sucessfull recovered.

I know you can change owner, but when people have 30 GB's af data, my backup computer works for ages to change the rights.

Can anyone think of software (commercial is no problem) which does the following:

* backup user data without having user rights troubles
* have a option to choose what to backup (email accounts, documents, etc, etc)
  even when it's externaly mounted, in short, it reconizes the folder structure)
* Works on different OS's like XP, Vista, W7

Chris

Posted 2011-01-07T21:15:06.863

Reputation: 1 093

This isn't a direct answer (it's code, not software), but in Windows there's a function called ReadEncryptedFileRaw that I think does what you want... I don't know, it might help when searching to know that term. – user541686 – 2011-01-07T21:20:17.593

thank you, but I need a simple installable program, which can backup user data when mounted to a external drive cable or docking station – Chris – 2011-01-07T21:28:40.223

Answers

0

A somewhat low-tech solution: Back up to a FAT32 file system instead of NTFS. Since FAT does not support User Permissions that gets rid of the ACLs.

As FAT32 has a 4 GB Filesize limit, exFAT may be an alternative as well.

Michael Stum

Posted 2011-01-07T21:15:06.863

Reputation: 3 061

0

There are Windows and Cygwin versions of dd available. The drive naming syntax can be tricky, but once you get that down, dd makes exact copies of disks for you.

Harper Shelby

Posted 2011-01-07T21:15:06.863

Reputation: 111

Oops...missed a requirement, because dd has no clue about folder structure. Sorry. – Harper Shelby – 2011-01-07T21:52:27.570