首页 > 解决方案 > Outlook 365 的 RDO 规则问题

问题描述

Outlook for Microsoft 365 32 位兑换 DLL(最新版本) 本地 Exchange 服务器

我有一个简单的脚本来显示现有规则。它就像 Outlook 2016 的魅力,但是当我们的一个工作站升级到 Office 365 应用程序时,它会引发错误 IMAPIFolder.OpenProperty(PR_RULES_TABLE): MAPI_E_CALL_FAILED

任何想法 ?

错误:记录 D:\Temp\Redemption\list2.vbs(13, 3) Redemption.RDORules:IMAPIFolder.OpenProperty(PR_RULES_TABLE) 中的错误:MAPI_E_CALL_FAILED ulVersion:0 错误:Echec de l'opération du client。组件:Banque d'informations de Microsoft Exchange ulLowLevelError:0 ulContext:1281

脚本 :

dim session, store, inbox, rules, rule, action, recip, application, objoutlook, olFolderInbox

set Session = CreateObject("Redemption.RDOSession")
if not Session.LoggedOn Then
  Session.Logon
End If

if Session.LoggedOn Then
wscript.echo "Logged " 
set Rules = Session.Stores.DefaultStore.Rules

  if (Session.Stores.DefaultStore.Rules.count > 0) then
                for each Rule in Session.Stores.DefaultStore.Rules
                   wscript.Echo  Rule.Name
                   wscript.Echo Rule.ConditionsAsSQL
                next
  end if

End If

if Session.FastShutdownSupported Then
    Session.DoFastShutdown
Else
    Session.Logoff
End If

标签: outlook-redemption

解决方案


推荐阅读