Results 1 to 4 of 4

Thread: [FAQ's: OD] Why do I get an Outlook Security Prompt?

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,710

    [FAQ's: OD] Why do I get an Outlook Security Prompt?

    Starting with Outlook 2000 Service Pack 3 Microsoft has added the infamous "Security Prompt" when a program is trying to access or automate certain areas/features of Outlook. This is to help protect you from attacks by virus'.

    There are a couple of types of security prompts. One is just when your automating it notifies you that a program is attempting to access Outlook email addresses (Fig. 1). A second is when your attempting to access Outlook Data (Fig. 2). And lastly, a third is when you are programmatically trying to send an email and it makes you wait a few seconds before it enables the Yes/No buttons on the prompt. (Fig. 3)

    Fig. 1



    Fig. 2



    Fig. 3






    For the first two types you will need to check the "Allow access for" checkbox (Fig. 4) and then select a time duration to allow (Fig. 5).

    Fig. 4



    Fig. 5




    Here is a chart on the property, functions, and methods that are protected by the Security Prompt:

    Items marked with an asterisk (*) are new for Outlook 2003.

    Code:
    Object          |  Restricted Properties          |  Restricted Methods
    -----------------------------------------------------------------------
    Action          |                                 |  Execute
    
    AddressEntries  |  Any property                   |  Any method
    
    AddressEntry    |  Any property                   |  Any method
    
    AppointmentItem |  Body*                          |  Respond
    AppointmentItem |  Organizer                      |  SaveAs
    AppointmentItem |  RequiredAttendees              |  Send
    AppointmentItem |  OptionalAttendees              |
    AppointmentItem |  Resources                      |
    AppointmentItem |  NetMeetingOrganizerAlias       |
    
    ContactItem     |  Body*                          |  SaveAs
    ContactItem     |  Email1Address                  |
    ContactItem     |  Email1AddressType              |
    ContactItem     |  Email1DisplayName              |
    ContactItem     |  Email1EntryID                  |
    ContactItem     |  Email2Address                  |
    ContactItem     |  Email2AddressType              |
    ContactItem     |  Email2DisplayName              |
    ContactItem     |  Email2EntryID                  |
    ContactItem     |  Email3Address                  |
    ContactItem     |  Email3AddressType              |
    ContactItem     |  Email3DisplayName              |
    ContactItem     |  Email3EntryID                  |
    ContactItem     |  IMAddress*                     |
    ContactItem     |  NetMeetingAlias                |
    ContactItem     |  ReferredBy                     |
    
    DistListItem    |  Body*                          |  GetMember
    DistListItem    |                                 |  SaveAs
    
    Inspector       |  HTMLEditor*                    |
    Inspector       |  WordEditor*                    |
    
    ItemProperties  |  Any restricted property        |
    
    JournalItem     |  Body*                          |  SaveAs
    JournalItem     |  Contactnames                   |
    
    MailItem        |  Body*                          |  SaveAs
    MailItem        |  HTLMBody*                      |  Send
    MailItem        |  SenderEmailAddress*            |
    MailItem        |  SenderEmailType*               |
    MailItem        |  SenderName                     |
    MailItem        |  SentOnBehalfOfName             |
    MailItem        |  ReceivedByName                 |
    MailItem        |  ReceivedOnBehalfOfName         |
    MailItem        |  ReplyRecipientNames            |
    MailItem        |  To                             |
    MailItem        |  Cc                             |
    MailItem        |  Bcc                            |
    
    MeetingItem     |  Body*                          |  SaveAs
    MeetingItem     |  SenderName                     |
    
    Namespace       |  CurrentUser                    |
    Namespace       |  GetRecipientFromID             |
    
    PostItem        |  Body*                          |  SaveAs
    PostItem        |  HTMLBody*                      |
    PostItem        |  SenderName                     |
    
    Recipient       |  Any property                   |  Any method
    
    Recipients      |  Any property                   |  Any method
    
    TaskItem        |  Body*                          |  SaveAs
    TaskItem        |  ContactNames                   |  Send
    TaskItem        |  Contacts                       |
    TaskItem        |  Delegator                      |
    TaskItem        |  Owner                          |
    TaskItem        |  StatusUpdateRecipients         |
    TaskItem        |  StatusOnCompletionRecipients   |
    
    UserProperties  |                                 |  Find
    
    UserProperty    |  Formula                        |

    If your writting code in Outlooks VBA IDE then you can avoid the security prompt by using the default Application object and handling your code with that instance. As soon as you create a secondary New instance, or are automating Outlook from another language like VB 6, VB.NET or C#, you will invoke the security prompt.

    To get around this, you could just make sure to use only the default VBA instance, create a Trusted Outlook COM Add-In, use a third-party utility or set your app as Trusted in the Exchange Administration Contro Panel (if your running Outlook in an Exchange environment).
    Last edited by RobDog888; May 24th, 2006 at 10:16 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  2. #2
    Fanatic Member
    Join Date
    Jul 2007
    Posts
    617

    Re: [FAQ's: OD] Why do I get an Outlook Security Prompt?

    hi rob the post was great! anyway, can you stress-out what do you mean of add app as trusted in the exchange admin control panel this might be the solution im looking at to remove outlook security prompt.

    thnx.

  3. #3
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: [FAQ's: OD] Why do I get an Outlook Security Prompt?

    This appears to have been relaxed in Outlook 2007, though I can't test it since I don't have Outlook 2007 installed. It requires Vista or XP with an anti-virus package in place.

    Code Security Changes in Outlook 2007

  4. #4
    Pro Grammar chris128's Avatar
    Join Date
    Jun 2007
    Location
    England
    Posts
    7,604

    Re: [FAQ's: OD] Why do I get an Outlook Security Prompt?

    Quote Originally Posted by jlbantang View Post
    hi rob the post was great! anyway, can you stress-out what do you mean of add app as trusted in the exchange admin control panel this might be the solution im looking at to remove outlook security prompt.

    thnx.
    Im an Exchange administrator and I have never seen such a thing, the way I have got around this problem with third party apps in the past is to do the following:

    Create a Public Folder in Exchange named "Outlook Security Settings". Must be at the top level of the Public Folder tree and make sure users have at least Read access. It is important that the name is exactly as I have written it (of course, without the quote marks)
    • Download the Outlook Security pack here:http://download.microsoft.com/downlo...54/admpack.exe
    • Extract the files and you should then have an outlk9.adm file and an Outlook Default Settings.oft file.
    • Open the OFT file and when asked where to import it to, choose the public folder you just created
    • Open the form in Outlook (you might already be at that screen from the last step) and go to the “programmatic settings” tab, change all of the settings to auto approve
    • Leave everything else in the form as it is, then click the Post button in the top left corner.
    • Copy the outlk9.adm file accross to your DC and then create a new Group Policy Object that affects all users (doesnt need to affect computers)
    • Edit the new policy and import the outlk9.adm file into the Administrative Templates section under the User Configuration section
    • Now, still in the User section of the GPO, drill down into the Admin Templates and then into the Outlook 2000/2003 folder then into the folder named Tools | Options and then into Security
    • There may only be one policy in here but just in case you have a few, the one you are looking for is named something like "Virus Settings". Open this policy up and enable it and choose the option from the drop down list that says "Search Outlook Security Settings folder for security settings"
    • Go onto a users machine and do a gpupdate /force then test it out!

    I've got this working in Exchange 5.5 and 2003 environments but I havent ever tested it in Exchange 2007. Hope that helps someone as I know I spent ages trying to get rid of this damn prompt!
    My free .NET Windows API library (Version 2.2 Released 12/06/2011)

    Blog: cjwdev.wordpress.com
    Web: www.cjwdev.co.uk


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width