C# Get running Outlook instance in VSTO add-in

0

I am trying to get an Outlook Application object in my add-in for Excel.

If there's a running Outlook instance, it should get that, if there isn't any, it should create one, using the Outlook object model.

This is the code I have right now:

public static Outlook.Application GetApplicationObject()
{
    Outlook.Application application = null;

    if (Process.GetProcessesByName("OUTLOOK").Count() > 0)
    {
        application = Marshal.GetActiveObject("Outlook.Application") as Outlook.Application;
    }
    else
    {
        application = new Outlook.Application();
    }
    return application;
}

My problem: it finds Outlook processes, but can't get them, throwing the following error message:

Operation unavailable (Exception from HRESULT: 0x800401E3 (MK_E_UNAVAILABLE))

I tried debugging it step by step, and monitored the task manager. I could see that I have an Outlook instance, but it's only an icon in the right side of the taskbar. Does this mean, that the instance is not fully loaded yet, and it can't be accessed, to get the Application object from it?

I ended up modifying my code, and separating the if-else into 2 try-catches, with their own returns, but I still think that the code above should be usable.

c#
outlook
vsto
outlook-addin
asked on Stack Overflow Sep 29, 2017 by Laureant

1 Answer

3

Outlook is a singleton, so new Outlook.Application() will always work - if it is already running, you will get that running object.

Make sure both apps (Excel and Outlook) are running in the same security context. Is either app running with elevated privileges (Run As Administrator)?


User contributions licensed under CC BY-SA 3.0