hi,
how do i print out the share permissions and ntfs permissions of folders on an ntfs partition?
thanks
Printable View
hi,
how do i print out the share permissions and ntfs permissions of folders on an ntfs partition?
thanks
Hi!
Try this from the partition you want to examine. I've increased the number of spaces for readability.
cacls *.* /c /t >c:\ACLs.txt
That will output the NTFS AccessControlLists for all files in and below the current folder to the text file c:\acls.txt
The /t makes it process the subdirectories and the /c makes it continue if access is denied to anything.
I don't know how to do something similar with Share Permissions though. My excuse is that permissions should be set at the ACL level rather than the share level hehe.
Best wishes,
Andrew