Scenario: You need to find the Distribution Groups that a specific user is a manager of.
Resolution: Run the following in Exchange PowerShell:
get-distributiongroup -resultsize unlimited | Where {$_.Managedby -like “*username“}
Scenario: You need to find the Distribution Groups that a specific user is a manager of.
Resolution: Run the following in Exchange PowerShell:
get-distributiongroup -resultsize unlimited | Where {$_.Managedby -like “*username“}