Link to home
Start Free TrialLog in
Avatar of Administrator_ADGA
Administrator_ADGA

asked on

Exchange Server 2007

Hello,

User mailbox had been deleted, so I don't have his "Member of" tab any more. Now, how can I find which distribution groups he was a member of, so I could  delete him to avoid "Delivery has failed to these recipients..." error message when emailing to this or that distribution group.

Thank you!
ASKER CERTIFIED SOLUTION
Avatar of Ryan Lanham
Ryan Lanham
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Kotteeswaran Rajendran
Hello,

Once you disable the mailbox, AD account will lose the exchange attributes. DL will not deliver any emails to that account.

Once you remove the mailbox, AD account will be removed from DL.

There wont be any NDR until unless exchange attributes are not cleared properly.
If mailbox has been deleted not need to worried it already release all infraction form DL.
Do one thing to be sure. open user and computer and right click on local domain name on AD and find user if anyone will be match from your AD you will got it here.
Avatar of Administrator_ADGA
Administrator_ADGA

ASKER

Thanks for your help! The advice with a command line

Get-DistributionGroup | where { (Get-DistributionGroupMember $_ | foreach {$_.PrimarySmtpAddress}) -contains "user@example" }

from Ryan Lanham was the best.