OWA2003隐藏附件病毒提示的方法

OWA2003隐藏附件病毒提示的方法
需修改的文件路径:
D:\Program Files\Exchsrvr\exchweb\6.5.7638.1\controls\frm_ReadNote.js
其中6.57638.1有可能变化,找到window.onload函数,在函数体的最后加上以下代码即可

//隐藏附件病毒提示
 //yuanxiaoping 2007-12-10
 var statusbar = g_winDocAll['statusbar'];
 
 if (statusbar)
  if (statusbar.innerHTML.indexOf('附件中可能包含对计算机有害的病毒') != -1)
   statusbar.style.display = 'none';
原文地址:https://www.cnblogs.com/yuanxiaoping_21cn_com/p/1545800.html