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';

相关文章:

  • 2021-07-02
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2021-05-14
  • 2021-12-27
  • 2021-11-05
猜你喜欢
  • 2022-01-09
  • 2021-09-03
  • 2022-12-23
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
相关资源
相似解决方案