How to Bypass Outlook's Security Prompts

M

MikeC

I'm writing some automation code and need a good way to
bypass Outlook's security (yes/no) prompts. I am aware of
the solutions available via Outlook Redemption and Express
ClickYes.

Before I attempt to implement a third party solution, I
would first like to know whether is there a way to bypass
the prompts using digital signatures? Can I somehow use a
registered digital signature to get Outlook to trust my
own code?
 
S

Semut

You can bypass this if you write a COM write in. In the OnConnection event
of the COM addin, it will return you the Outlook::_Application object, set
it as global variable and have all your MAPI calls QI from that global
object.

Check the microeye site for detail.
 
S

Sue Mosher [MVP-Outlook]

Note that only Outlook 2003 "trusts" such properly created COM add-ins. In
other standalone environments, the security prompts still apply.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
M

MikeC

Thank you both.
-----Original Message-----
You can bypass this if you write a COM write in. In the OnConnection event
of the COM addin, it will return you the
Outlook::_Application object, set
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top