在控制台应用程序中使用C#将成员添加到Outlook GAL分发列表

时间:2016-02-19 04:53:37

标签: c# visual-studio outlook gal distribution-list

我正在尝试编写一个C#控制台应用程序,该应用程序可以通过编程方式更新全局地址列表(GAL)中的Outlook通讯组列表(DL)。我有权更新此DL。我可以使用Outlook在我的PC上以交互方式进行,我可以使用Win32::NetAdmin::GroupAddUsers在Perl代码中执行此操作。

添加对COM库" Microsoft Outlook 14.0对象库"的引用后,然后通过以下方式访问:

using Outlook = Microsoft.Office.Interop.Outlook;

我可以成功地从DL读取,甚至通过" main"中的DL进行递归。正在搜索DL。这是工作代码(这篇文章不需要批评):

private static List<Outlook.AddressEntry> GetMembers(string dl, bool recursive)
{
    try
    {
        List<Outlook.AddressEntry> memberList = new List<Outlook.AddressEntry>();

        Outlook.Application oApp = new Outlook.Application();
        Outlook.AddressEntry dlEntry = oApp.GetNamespace("MAPI").AddressLists["Global Address List"].AddressEntries[dl];
        if (dlEntry.Name == dl)
        {
            Outlook.AddressEntries members = dlEntry.Members;
            foreach (Outlook.AddressEntry member in members)
            {
                if (recursive && (member.AddressEntryUserType == Outlook.OlAddressEntryUserType.olExchangeDistributionListAddressEntry))
                {
                    List<Outlook.AddressEntry> sublist = GetMembers(member.Name, true);
                    foreach (Outlook.AddressEntry submember in sublist)
                    {
                        memberList.Add(submember);
                    }
                }
                else {
                    memberList.Add(member);
                }
            }
        }
        else
        {
            Console.WriteLine("Could not find an exact match for '" + dl + "'.");
            Console.WriteLine("Closest match was '" + dlEntry.Name +"'.");
        }

        return memberList;
    }
    catch
    {
        // This mostly fails if running on a PC without Outlook.
        // Return a null, and require the calling code to handle it properl
        // (or that code will get a null-reference excception).
        return null;
    }
}

我可以使用它的输出来仔细检查成员,所以我想我理解了DL /成员对象。

但是,以下代码不会将成员添加到DL:

private static void AddMembers(string dl)
{
    Outlook.Application oApp = new Outlook.Application();
    Outlook.AddressEntry ae = oApp.GetNamespace("MAPI").AddressLists["Global Address List"].AddressEntries[dl];
    try {
        ae.Members.Add("EX", "Tuttle, James", "/o=EMC/ou=North America/cn=Recipients/cn=tuttlj");
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
    }
    ae.Update();
}

Members.Add()的参数定义为here,我的代码中显示的值恰好来自另一个DL检查我自己的Member对象。

显示的例外仅为&#34;书签无效。&#34;之前曾询问similar question,但解决方案是使用P / Invoke或LDAP。我真的不知道如何使用P / Invoke(严格来说是C#和Perl程序员,而不是Windows / C / C ++程序员),而且我无法访问LDAP服务器,所以我真的很想得到这个完成Microsoft.Office.Interop.Outlook个对象。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

在尝试使用几个不同的.NET对象后,使用Adding and removing users from Active Directory groups in .NET中发布的System.DirectorServices.AccountManagement最终代码对我有用。结束我自己的问题。