美文网首页
chrome崩溃修复脚本

chrome崩溃修复脚本

作者: 熊本猫 | 来源:发表于2020-01-10 11:37 被阅读0次

之前电脑死机,强制重启之后发现chrome什么页面都打不开了,包括设置,运行了下面的脚本就好了~

保存下面的脚本为bat格式,然后运行

@echo off
title Chrome78-79崩溃修复
ECHO 脚本需要管理员权限,请点击“确定”或“是”
%1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","runas",1)(window.close)&&EXIT
CLS
taskkill /f /im chrome.exe /t
ping 127.1 -n 3  >nul
reg add "HKLM\Software\Policies\Google\Chrome" /v RendererCodeIntegrityEnabled /t REG_DWORD /d 0 /f
ping 127.1 -n 3  >nul

相关文章

网友评论

      本文标题:chrome崩溃修复脚本

      本文链接:https://www.haomeiwen.com/subject/ssupactx.html