Outlook 2013 'Run a script' rule has disappeared

后端 未结 3 1565
心在旅途
心在旅途 2021-01-20 14:10

I have some rules for work in outlook 2013 - however following my laptop crashing the other day, I can no longer run any rules, they simply do not work (I don\'t even get a

相关标签:
3条回答
  • 2021-01-20 14:43

    Or you can create .reg file Open Notepad and save-as .reg

    Outlook 2010

    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\14.0\Outlook\Security]
    "EnableUnsafeClientMailRules"=dword:00000001
    

    For Outlook 2013 use \Office\15.0\ and Outlook 2016 \Office\16.0\

    0 讨论(0)
  • 2021-01-20 14:46

    I encountered this issue after a Windows Update. Here's what fixed it for me:

    Save everything below the === line as a .reg file and then double-click it to run and launch (or manually add it your registry via regedit). You should probably backup your registry first to be safe and please note that this was the correct location for my Office 2013 installation (yours may be different). Office 2013 = 15.0 Office 2016 = 16.0

    Save using Notepad as a .reg file to double-click and upload to your system's registry (Office 2013). I hope this helps someone else! -Mike

    ===

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Security] "EnableUnsafeClientMailRules"=dword:00000001

    0 讨论(0)
  • 2021-01-20 14:54

    here is a quick and dirty test to check whether vba code runs at all when email arrives

    put it into "ThisOutLookSession" which is under "Microsoft Office Outlook Objects"

    then send yourself an email ... if vba runs then you should see a popup

    it will not solve your problem, but it will provide more info to help narrow down the cause

    Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
        MsgBox "you have mail"
    End Sub
    
    0 讨论(0)
提交回复
热议问题