Generating user lists
Results 1 to 5 of 5

Thread: Generating user lists

  1. #1
    Registered User drewmaztech's Avatar
    Join Date
    Jul 2002
    Location
    Holyoke, Ma. USA
    Posts
    946

    Generating user lists

    Auditor time!
    I need some kind of util to list all users and all their permissions on a particular server. (Windows 2000).

    Perms.exe only does a list of a single user. I want to list all users and all perms.

    Any suggestions?
    Vote DrewmazTech for President!

    "tis better to remain silent and be thought of as a fool then open your mouth and remove all doubt" Mark Twain

  2. #2
    Banned Ya_know's Avatar
    Join Date
    Jun 2001
    Posts
    10,692
    Try: AddUsers Automates Creation of a Large Number of Users

    It may not do everything you are looking for, but it's a start. Like to know what you use if you find the gem utility!

  3. #3
    Registered User CeeBee's Avatar
    Join Date
    Nov 2002
    Location
    USA
    Posts
    2,494
    Dump the names of the users in a text file, let's say userlist.txt
    Make sure only the names are present, one on each line. Otherwise you'll have to mess with the parameters for the FOR commmand.

    Then make a batch file, say audit.bat
    for /f %%i in (userlist.txt) do call listrights.bat %%i

    And make another batch file listrights.bat:
    echo Listing user rights for: %1>>rights.txt
    perms.exe MYDOMAIN\%1 PathToCheck>>rights.txt
    echo -------------------->>rights.txt

    Can't think of anything easier now.
    Protected by Glock. Don't mess with me!

  4. #4
    Registered User drewmaztech's Avatar
    Join Date
    Jul 2002
    Location
    Holyoke, Ma. USA
    Posts
    946
    I found a program called "DumpSec". It's pretty nice. Dumps all different kinds of domain info/user info/share info. I can just save it as a text file, Import it into Excel or Access and work with the info from there.

    Better yet - it's free!
    Vote DrewmazTech for President!

    "tis better to remain silent and be thought of as a fool then open your mouth and remove all doubt" Mark Twain

  5. #5
    Registered User
    Join Date
    Mar 2001
    Location
    Birmingham, AL
    Posts
    19

    DumpSec

    Quote Originally Posted by drewmaztech
    I found a program called "DumpSec". It's pretty nice. Dumps all different kinds of domain info/user info/share info. I can just save it as a text file, Import it into Excel or Access and work with the info from there.

    Better yet - it's free!


    Yes, DumpSec (aka dumpacl) is a great tool! - Does have some buggy things about it when you start looking at permissions though. I highly recommend getting the data in excel - you can use the autofilters to quickly find anything.
    ***I Like Pie***

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •