List User objects with read access. AD Query.

Associate
Joined
9 Nov 2005
Posts
767
Location
places..
Hi Folks,

I'm in a slight pickle here, and the net result is that I need to list all user objects (AD 2k3) with read access to a certain resource (a shared diretory / folder). This would normally be easy, but I also need all the info from all the nested groups, this is a right pain! (lots of resource / security groupings!)

If anybody knows of an easy way of doing this, an AD Query I think is probably the best but I've not done many of these, (or even powershell, VBS etc) i would be eternally grateful, and award you with an e-cookie!

Thanks! ;)
 
Powershell + Quest QAD plugin (basics here)

Get-QADGroup -Name 'Group Name' | Get-QADGroupMember -Indirect
(or something similar, sorry don't have time to get the exact syntax)
 
thanks oddjob! I'm suprised theres not a more simple way of doing this tbh

I'll look into this Powershell + Quest addon combo!
 
thanks oddjob! I'm suprised theres not a more simple way of doing this tbh

I'll look into this Powershell + Quest addon combo!

That's the simplest way unless you're pretty good with VB. For a start it's like 3-4 lines just to connect to AD, then you need to set up a recursive loop. PS + QAD is a one liner.

Worth getting to grips with PS anyway, as pretty much everything from MS will be built around it in the future.
 
Back
Top Bottom