I have a small vbscript that runs in the login script that creates an Outlook application object to insert a standard list of categories. The category list changes occasionally so we wanted to update them each time the user logged in. It isn't necessary to do it each time Outlook starts. This has been working for quite a while. I recently had one computer have a problem where one of the Outlook addins crashes when the script runs causing an abnormal dialog box and confusing the user. I have several thoughts on how to resolve this, but I am not sure how to implement them.
1. Is it necessary to actually invoke an Outlook process to access the namespace or is there a simpler way to get to the categories? I am currently doing a CreateObject for the application and then Getnamespace.
2. If #1 is necessary, can I open the application with addins disabled?
3. We are in a workgroup environment (no domain) and I am using the logon script in the profile so it fires when the user logs in. It continues to run after the user is logged in since it takes some time to open Outlook then close it. Would it be better to just put this code in Outlook startup? It can't take that long to verify < 20 categories and then my script would not need to worry about starting outlook.
I appreciate any ideas anyone might have.
Regards,
Jerry