分享一个全屏不花屏脚本
现在电脑大部分都是WIN7,WIN10
运行暗黑2的时候都会出现花屏现象。只能开启窗口模式玩。
这个脚本就是针对这个问题出现的。没有技术含量,老鸟勿笑。
打开个记事本
@echo off
taskkill /im explorer.exe /f >nul
call "E:\BaiduYunDownload\暗黑破坏神2-v1.13\Diablo.exe.lnk"
:start
tasklist >tasklist.txt
find /i tasklist.txt "Diablo.exe"
if errorlevel 1 ((del /q tasklist.txt)&(goto end))
if errorlevel 0 ((goto start))
:end
start explorer.exe
保存成(bat或cmd)批处理文件运行即可
注:当然要把游戏路径改成自己的。