0

I am running windows server with asp.net websites and sql server 2008 and IIS 6. It is working fine.

Now I need to move my asp.net websites to another windows server and I have hard time setting correct file security for the new server.

Is there any way to compare or move or see difference file security between two servers?

Imageree
  • 161
  • 2
  • 2
  • 9

1 Answers1

1

You could use XCACLS to dump the permissions on both directories to text files and then a diff application (e.g. WinDiff) to compare them.

Alternatively you could use robocopy.exe to copy the from source to destination and preserve the permissions.

Nexus
  • 850
  • 1
  • 8
  • 19
  • We have a Web infrastructure with Dev>Test>Staging>Production and I use the Robocopy option to keep the files/permissions in sync. +1 for an old fav – Charles Dec 16 '10 at 12:43