Exchange: Find Disabled Accounts with Mailboxes Via PowerShell
Summary: This article will go over how to search for disabled users with mailboxes. This is part 2. In part 1; this was done using ADUC.
Exchange: Find Disabled Accounts with Mailboxes
http://msexchangetips.blogspot.com/2007/06/exchange-find-disabled-accounts-with.html
This part will go over how to use powershell.
1. Download Quest powershell. http://www.quest.com/activeroles-server/arms.aspx
Run the following query. I like to export just the name, description and altrecipient to find out if the mailbox is doing any forwarding as well.
[PS] H:\>get-qaduser -includedproperties altrecipient, homeMDB -disabled | select-object -property "name", "description" , "altrecipient", "homeMDB" > c:\mailboxes.csv
Then sort by HomeMDB
James Chong (MVP)
MCITP | EMA; MCSE | M+, S+,
Security+, Project+, ITIL
msexchangetips.blogspot.com
Exchange: Find Disabled Accounts with Mailboxes
http://msexchangetips.blogspot.com/2007/06/exchange-find-disabled-accounts-with.html
This part will go over how to use powershell.
1. Download Quest powershell. http://www.quest.com/activeroles-server/arms.aspx
Run the following query. I like to export just the name, description and altrecipient to find out if the mailbox is doing any forwarding as well.
[PS] H:\>get-qaduser -includedproperties altrecipient, homeMDB -disabled | select-object -property "name", "description" , "altrecipient", "homeMDB" > c:\mailboxes.csv
Then sort by HomeMDB
James Chong (MVP)
MCITP | EMA; MCSE | M+, S+,
Security+, Project+, ITIL
msexchangetips.blogspot.com