Powershell question - listing groups a user belongs to, and the notes/description of the group

2012-09-26 Thread Michael Leone
I have this request to list all the groups a specific set of users belong to. Since we use groups to control ACLs, this can (effectively) be a listing of all the shared folders the user has access to (we list the location of the shared folder in the notes of the group). I'm still new to PS, and

Re: Powershell question - listing groups a user belongs to, and the notes/description of the group

2012-09-26 Thread Christopher Bodnar
With the Quest CMDLets this works: get-qaduser jdoe -properties memberof|select -expandProperty memberof|get-qadgroup|select name,notes Christopher Bodnar Enterprise Architect I, Corporate Office of Technology:Enterprise Architecture and Engineering Services Tel 610-807-6459 3900 Burgess

Re: Powershell question - listing groups a user belongs to, and the notes/description of the group

2012-09-26 Thread KenM
With Quest get-qadmemberof USERNAME | Select name, notes On Wed, Sep 26, 2012 at 10:44 AM, Michael Leone oozerd...@gmail.com wrote: I have this request to list all the groups a specific set of users belong to. Since we use groups to control ACLs, this can (effectively) be a listing of all

Re: Powershell question - listing groups a user belongs to, and the notes/description of the group

2012-09-26 Thread Michael Leone
On Wed, Sep 26, 2012 at 11:15 AM, KenM kenmli...@gmail.com wrote: With Quest get-qadmemberof USERNAME | Select name, notes Well, THAT was stunningly easy! LOL Thanks. That will make the report a whole lot easier, I think ... I will have to read up on these Quest addins ~ Finally,