we use VBScript for changing EXIF data of .msg files.
We access msg files using
Set Element = Session.GetMessageFromMsgFile(msgFilePath)
It works fine, exept that the msg file gets locked, so that writing EXIF data to the file fails.
How can I release the msg file (Element), as Marshal.ReleaseComObject() doesn't work within VBScript? Setting Element=Nothing doesn't work either.
Thanks! Chris