EMS
Does anyone know if it's possible to obtain mailbox information from sub OU's?
For example, usually I'd grab information such as:
get-user -organisationalunit "Test" | get-mailbox
OR
get-user -organisationalunit "Test" | set-mailbox -prohibitsendquota 5mb
If I wanted to grab information from various sub OU's within "Test", is there a way of specifying that in the shell? Or does it just search for all users within the specified root OU?
Only useful if I'm dealing with alot of sub OU's and I don't have to populate every single user in the root.
Thanks.
October 20th, 2012 6:50am
Get-User -OrganizationalUnit "domain.com/OU/SubOU"
Free Windows Admin Tool Kit Click here and download it now
October 20th, 2012 7:06am
Get-User -OrganizationalUnit "domain.com/OU/SubOU"
October 20th, 2012 7:06am
You're most welcome :)
October 21st, 2012 10:35pm