Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Windows Folders Security Permissions Audit

  • 16-03-2005 6:57pm
    #1
    Registered Users Posts: 15


    Hi

    can anyone provide me with information on some software that can audit a folder /sub-folder structure on a file server and generate a report that will tell what permissions have been assigned at each folder.

    I cam across XCALCS that assigns permissions but I'm interested in preparing a report on existing folders within our fileserver so I can see that this folder is assigned to accounts group and this one is owned by sales, etc, etc

    Let me know if you have any tips. I would prefer a freeware solution if there is one out there.

    Thanks :)


Comments

  • Moderators, Recreation & Hobbies Moderators, Science, Health & Environment Moderators, Technology & Internet Moderators Posts: 92,550 Mod ✭✭✭✭Capt'n Midnight


    xcacls \*.* /T /C
    lists permissions on all files (as does cacls )

    you could do a walk with something a debugged version of ...
    dir /ad /s /b > dir.txt
    FOR /F "delims=" %i in (dir.txt) do Xcacls "%i"

    Be interested to see the GUI versions


Advertisement