Office2016卡顿的原因及解决方法

症状:使用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_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\excel.exe" /v "Path"') do (set "Path=%%b")
 
C:\Windows\System32\netsh firewall set opmode mode=enable 
C:\Windows\System32\netsh advfirewall firewall add rule name="deny excel" dir=out program="%Path%excel.exe" action=block
C:\Windows\System32\netsh advfirewall firewall add rule name="deny word" dir=out program="%Path%WINWORD.EXE" action=block
C:\Windows\System32\netsh advfirewall firewall add rule name="deny powerpoint" dir=out program="%Path%POWERPNT.exe" action=block

del %0

你可能感兴趣的:(批处理,OFFICE)