批处理跳过显卡驱动版本检测
由于某些游戏在运行时候会检测显卡驱动版本,如果不是最新版本就需要更新,某些时候太麻烦了,索性使用批处理更改文件名来实现跳过显卡驱动版本检测。下面的示例以Windows操作系统为主。
Tips: 将下面的命令保存为批处理(bat)格式的文件即可在Windows下执行。
重命名NVAPI文件
if exist C:\Windows\System32\nvapi64.Old goto Old
chdir /d C:\Windows\System32
ren nvapi64.dll nvapi64.Old
echo @ Named
pause
goto End
恢复NVAPI文件名
:Old
chdir /d C:\Windows\System32
ren nvapi64.Old nvapi64.dll
echo @ Renamed
pause
goto End
:End