
Because some games will detect the graphics card driver version when running, if it is not the latest version, it needs to be updated. Sometimes it is too troublesome. Simply use batch processing to change the file name to skip the graphics card driver version detection. The examples below are based on Windows operating systems.
Tips: Save the following command as a batch (bat) format file to execute under Windows.
Rename NVAPI files
if exist C:\Windows\System32\nvapi64.Old goto Old
chdir /d C:\Windows\System32
ren nvapi64.dll nvapi64.Old
echo @ Named
pause
goto EndRestore NVAPI filename
:Old
chdir /d C:\Windows\System32
ren nvapi64.Old nvapi64.dll
echo @ Renamed
pause
goto End
:End