gp443
gp443

Reputation: 267

How to diff Windows permissions

I have a small issue with Windows permissions (or rather, I'm trying to troubleshoot an issue which I think has to do with Windows permissions) and would like to compare and contrast permissions on different machines (one does not have the issue and one does), is there a tool that can do this for me? Or some hidden functionality that I don't know about?

In Linux I'd do ls -l, dump it into a file and use the diff command, what about Windows?

Upvotes: 3

Views: 1815

Answers (1)

David
David

Reputation: 2272

Try the cacls utility (cacls /? for usage). There are a couple of different versions, depending on your version of Windows be it XP, Vista, 7, or 8, so you may need/want to use xcacls (XP) or icacls (Vista / Win7 / Win8).

Upvotes: 3

Related Questions