Powershell – Finding linked mailboxes

exchangeexchange-2007powershell

I have an Exchange 2007 environment in a resource forest scenario with linked mailboxes, which are linked to AD accounts in the customer's domain.

The problem is that some users are unable to view their calendar, out of office, and some are unable to open outlook after they have been updated to 2010, so a couple of things must be done to ensure they are setup correctly, one of them is to ensure the mailbox is linked to the resource forest

Is it possible to run a powershell script to find linked accounts from a list using the Get-Mailbox command.

Best Answer

This should get you the basic list:

get-mailbox -resultsize unlimited -RecipientTypeDetails LinkedMailbox

Then you can manipulate the results as required.

Related Topic