我需要获取Exchange服务器上位于Active Directory中某个特定OU的所有用户的报告。有没有办法用Powershell或VBS做到这一点?
由于
答案 0 :(得分:0)
Get-Mailbox -ResultSize Unlimited -OrganizationalUnit 'OU=test1,DC=domain,DC=com'
答案 1 :(得分:0)
PS cmdlet适用于Exchange 2007及更高版本的版本。 以下是如何提取列表并将其转储到文本文件中的方法。我添加了-IgnoreDefaultScope句柄,这样即使有问题的OU位于子域中,您也可以提取列表。
Get-Mailbox -IgnoreDefaultScope -ResultSize Unlimited -OrganizationalUnit 'OU=Staff Leavers,DC=my,DC=domain,DC=com' > C:\SysMgr\LeaverMailboxes.txt