- ·上一篇教育:怎么从微软官方网站获取Office在线/离线安装程序
- ·下一篇教育:计算机二级考试真题-PPT-张源-九寨沟风光
Office 2016卡顿的原因及解决方法
症状:使用Office 2016新建或打开Word/Excel/PowerPoint文件时,会卡顿十几秒钟,卡顿过后,不关闭文件的情况下,再次新建或打开其他同类型文件,不会出现打开第一个文件的情形。
原因:Office 2016程序运行时会联网,当电脑有连接网络但无法访问外网,联网连接失败便会出现该问题。
解决方法:在电脑防火墙中添加规则,阻止Office 2016联网。
防火墙-高级设置-出站规则-新建程序规则或使用以下批处理
@echo off
Office加速器
mode con cols=90 lines=30
color 2F
for /f \"skip=1 tokens=2,* delims= \" %%a in (\'reg query \"HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionApp Pathsexcel.exe\" /v \"Path\"\') do (set \"Path=%%b\")
C:WindowsSystem32netsh firewall set opmode mode=enable
C:WindowsSystem32netsh advfirewall firewall add rule name=\"deny excel\" dir=out program=\"%Path%excel.exe\" action=block
C:WindowsSystem32netsh advfirewall firewall add rule name=\"deny word\" dir=out program=\"%Path%WINWORD.EXE\" action=block
C:WindowsSystem32netsh advfirewall firewall add rule name=\"deny powerpoint\" dir=out program=\"%Path%POWERPNT.exe\" action=block
del %0