Security Manager

Outlook Security Manager (full name - Security Manager for Microsoft Outlook) is a one-line programming tool that allows you to bypass security settings and avoid security warnings, alerts or prompts in add-ins and applications that interact with Microsoft Outlook.
Outlook Security Manager is developed for .NET, VCL and ActiveX platforms (VB.NET, C#, C++, Visual Basic 6, Delphi, VBA, Word MailMerge) and supports Microsoft Outlook 2000, XP, 2003, 2007, Outlook 2010, Outlook 2013 and Outlook 2016 with / without service packs.
When are Outlook security alerts fired?
If you are going to develop MS Outlook add-ins or applications interacting with Microsoft Outlook, you will run into or have already run into security warnings, or alerts. Key Outlook objects such as the address book or mail items including their properties and methods are protected by security settings. Accessing such objects makes the Outlook Object Model Guard fire a popup warning like "a program is trying to access your Address book or Contacts" or "a program is trying to access e-mail addresses you have stored in Outlook..."
How to prevent Outlook security warnings from appearing?
Need to disable Outlook security and remove such alerts? With Outlook Security Manager you can easily bypass security settings in MS Outlook and turn off an alert, or a pop-up message with just one line of code! Unlike similar tools, Outlook Security Manager doesn't transform OOM (Outlook Object Model) and CDO (Collaboration Data Objects) calls to Extended MAPI calls and doesn't make development more complicated by its own special objects. It just implements one object with three properties that enable or disable security settings for Outlook objects, CDO and Simple MAPI including MailMerge. These properties are DisableOOMWarnings, DisableCDOWarnings and DisableSMAPIWarnings. Before calling a protected object you just switch off Outlook security via the corresponding property, and then you turn it on again. For example:
Visual Basic .NET
Dim SecurityManager As New AddinExpress.Outlook.SecurityManager
SecurityManager.DisableOOMWarnings = True
Try
' ... any action with protected objects ...
Finally
' In any case please remember to turn on
' Outlook Security after your code,
' since now it is very easy to switch it off! :-)
SecurityManager.DisableOOMWarnings = False
End Try

Visual Basic 6 (VBA)
OlSecurityManager.DisableOOMWarnings = True
On Error Goto Finally
' ... any action with protected objects ...
Finally:
OlSecurityManager.DisableOOMWarnings = False

Delphi
OlSecurityManager.DisableOOMWarnings := True;
try
// ... any action with protected objects ...
finally
OlSecurityManager.DisableOOMWarnings := False;
end;
Outlook Security Manager is an in-process COM object that handles all internal events of the Outlook E-mail Security Engine rather than "hacks" or "hooks". Outlook Security Manager directly supports three platforms, .NET, VCL and ActiveX (VB.NET, C#, C++ MFC/ATL/.NET, Visual Basic 6, Delphi, VBA, Word MailMerge) and takes into account the platforms' peculiarities. It works with Microsoft Outlook 2000 - 2016.

Component Property
Component Type .NET
Component Environments Visual Basic .NET 2002/2003
Version 8.2

写评论

注意: 不接受 HTML 格式内容!
    差           好
验证码

Security Manager

  • 品牌: Add-in-Express
  • 型号: SecurityManager
  • 库存状态: 有库存
  • ¥1,600.00


可选选项


0 评论 / 写评论


标签: Security Manager