Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Set-DistributionGroup -Managed by for all Distribution Groups

Status
Not open for further replies.

ihcc2uni

Technical User
Mar 26, 2007
70
US
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:

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!
 
I don't think you need 2 files, if one already has all the information you need, in it.
I haven't tested this, but maybe it will point you in the correct direction.

Code:
## Assuming your Managers.CSV file contains columns with the headings: GroupName & OwnerName

$managers = import-csv c:\managers.csv
$foreach ($manager in $managers)
	{Set-Distributiongroup $manager.GroupName -Managedby $manager.OwnerName}


Light travels faster than sound. That's why some people appear bright until you hear them speak.
 
Yep, I figured that out also and was coming back to update and you had it as well. Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top