Issues with MS06-003 and Outlook 2003 Scripts.
I have a script that I use at work to send out emails every few days.
Last night, we installed MS06-003 on my workstation's copy of Outlook, and today, my script fails.
The key function appears to be either CreateItemFromTemplate creating messages into the drafts folder, or GetDefaultFolder, supplying an object to the drafts folder.
Here's a snippet...
Set oFolder = olApp.Session.GetDefaultFolder(olFolderDrafts)
Set oMail = olApp.CreateItemFromTemplate( oTemplate, oFolder )
The failure doesn't occur on first running through this, but on the second hit of GetDefaultFolder, where the VB drops out with the helpful message: "Z:\Script\mailout.vbs(176, 3) (null): The server threw an exception."
The underlying error number is -2147417851 - 0x80010105, RPC_E_SERVERFAULT. [I included all forms to make it easier for this article to pop up in searches.]
I don't currently see this listed as a "known issue" for MS06-003. Has anyone else seen this issue?