HowTo change the owner of a distribution list in Exchange 2003 by script or VB? Snippet welcome. Thanks Peter
You can use ADSI to change the managedby Active Directory attribute all you need to do is put the Distinguished name of the owner in the attribute eg set objgroup = getobject("LDAP://groupdn") objgroup.managedby = "userdn" objGroup.SetInfo To tick the "manager can update membership list" checkbox and allow the owner to modify the DL members you have to give that user the "write members" right on the group see http://rallenhome.com/books/adcookbook/src/07.07-delegate_control_of_group_members.vbs.txt for a sample of doing this Cheers Glen "Peter" wrote in message news:8095688F-DDA1-491A-8BC8-5552996E56E4@microsoft.com... > HowTo change the owner of a distribution list in Exchange 2003 by script > or VB? > Snippet welcome. > > Thanks > Peter > > >