Problem:
* If Outlook is started via automation the Addin ist not fully loaded.
Steps to reproduce:
* Install the "NetOffice COMAddin Examples\Extended" Plugin in Outlook
* Close Outlook
* Execute the following PS:
```
$outlook = new-object -com outlook.application;
$mail = $outlook.CreateItem(0)
$mail.Recipients.Add("info@example.de")
$mail.Subject = "test e-mail"
$mail.save()
```
* DD-Click Outlook in the "Notification Area"
Expected Results:
* The Addin is fully loaded
Resulst:
* The Addin is visible in the ribbon but the buttons have no affect.
* If Outlook is started via automation the Addin ist not fully loaded.
Steps to reproduce:
* Install the "NetOffice COMAddin Examples\Extended" Plugin in Outlook
* Close Outlook
* Execute the following PS:
```
$outlook = new-object -com outlook.application;
$mail = $outlook.CreateItem(0)
$mail.Recipients.Add("info@example.de")
$mail.Subject = "test e-mail"
$mail.save()
```
* DD-Click Outlook in the "Notification Area"
Expected Results:
* The Addin is fully loaded
Resulst:
* The Addin is visible in the ribbon but the buttons have no affect.