We just completed an Exchange Cross Forest migration and now need to update all of the Distribution Group owners since those don't come across with the migration.
Is there a way to use two CSV files (one has group names only, and one has group name and owner names) and perform an set-distributiongroup -managedby ManagerName where groupname from one CSV = groupname from second CSV?
Here is what I am trying currently, but do not think I am even close, or if this is even possible:
Any suggestions would be great!
Is there a way to use two CSV files (one has group names only, and one has group name and owner names) and perform an set-distributiongroup -managedby ManagerName where groupname from one CSV = groupname from second CSV?
Here is what I am trying currently, but do not think I am even close, or if this is even possible:
Code:
$managers = import-csv c:\managers.csv
$groups = import-csv C:\groups.csv
foreach($manager in $managers)
{
$groupname = $manager.group
$managedby = $manager.manager
Foreach ($Group in $Groups) {Set-Distributiongroup $Group -Managedby $managedby where $Group = $groupname}
}
Any suggestions would be great!