Turn off Outlook warning or extend timer

六月ゝ 毕业季﹏ 提交于 2019-12-24 10:47:57

问题


I've made a rule in Outlook VB

Sub Test(Item As Outlook.MailItem)
  Dim message
  message = Split(Item.Body, vbCrLf)
  ...
End Sub

However, anytime it runs I get this message:

I'm fairly certain this is coming from Item.Body, and I can silence this alert for up to 10 minutes, but I would rather just turn it off entirely.

Is this possible? If not is there a way I can extend the timer past 10 minutes?

This is relating to Outlook 2003 on Windows XP.


回答1:


You can turn this off by creating\setting the value of CheckAdminSettingsto 1 in the Registry Key HKEY_CURRENT_USER\Software\Policies\Microsoft\Security

see MS Article and MS Article



来源:https://stackoverflow.com/questions/18156470/turn-off-outlook-warning-or-extend-timer

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!