驱动版本:591.74
网吧环境有三种型号显卡,5060、5060TI、5070
后面排查,三种类型显卡使用同一款显卡驱动,只有5070显卡环境下右下角NVIDIA控制面板不隐藏,后面怀疑显卡驱动,换驱动依旧,后面怀疑5070显卡兼容问题。重启NVDisplay.ContainerLocalSystem服务。右下角控制面板正常隐藏了。
解决方案:添加批处理,延迟10秒启动
批处理:
NET FILE 1>NUL 2>NUL || (powershell -Command "Start-Process '%~s0' -Verb RunAs" && exit)
net stop "NVDisplay.ContainerLocalSystem" >nul 2>&1
timeout /t 2 /nobreak >nul
net start "NVDisplay.ContainerLocalSystem"
|