Thanks for the quick reply but I'm not seeing how that can do what I need. can you explain further?
Main Topics
Browse All TopicsI used richcopy to copy over all our data from one volume to another on the same computer. Then I connected that volume to a new server and brought it up as the new file server.
After my initial copy all the security information was identical, but after moving the drive to the new server it appears all the security information is gone even though their both on the same domain.
So now I need a way to copy JUST the NTFS security information from the old drive to the new drive.
robocopy with the SECFIX command seems perfect but for some reason they decided to remove it in w2003 and I can't find a w2000 version of it.
This matter is pretty urgent as I had to give full rights as a temp fix.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
at the source:
subinacl /outputlog=c:\commandfile.
then copy commandline.txt file and at the destination:
subinacl /playfile c:\commandfile.txt
You can also modify "on the fly" some parts of acl using stringreplaceonoutput option but this is not necessary in your case probably.
You can get a recent version of Robocopy by installing Robocopy GUI. It places the command-line utility in %systemroot%\SYSTEM32. It can then be copied to any machines you want to run it on.
/outputlog (and some more options) create file with ACL data
/playfile uses this file to apply ACLs.
use full file path (maybe enclosed in " marks) after the /playfile parameter
/playfile c:\myacls.txt
you may also try with small amount of data and look into your output file just to be sure it contains right informations.
Business Accounts
Answer for Membership
by: gtworekPosted on 2009-10-27 at 07:24:56ID: 25672747
Use subinacl from http://www.microsoft.com/d ownloads/d etails.asp x? FamilyID =E8BA3E56- D8FE-4A91- 93CF-ED698 5E3927B&di splaylang= en
It can save ACLs to a file and then place them in another disk or folder.