每当我使用远程桌面进入工作计算机时,我总是必须转到:
控制面板 -> 轻松访问中心 -> 使计算机更易于查看
…我需要取消选中名为“关闭所有不必要的动画(如果可能)”的复选框,以便我能够在 excel 中拖动滚动条并在拖动时更新页面。
有没有办法编写脚本(批处理或 powershell)来取消选中该复选框?
答案1
有没有办法编写脚本(批处理或 powershell)来取消选中该复选框?
Set-ItemProperty -Path "HKCU:Control Panel\Desktop" -Name UserPreferencesMask -Value ([byte[]](0x90,0x12,0x03,0x80,0x10,0x00,0x00,0x00))
@echo off set "_hKey="HKEY_CURRENT_USER\Control Panel\Desktop" /v UserPreferencesMask" reg query %_hKey% | find "%_vhex%" >nul || reg add %_hKey% /t Reg_Binary /d "9E2C078010000000" /f
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v UserPreferencesMask /t REG_BINARY /d "9E2C078010000000" /f
答案2
一邮政 列出这些注册表设置:
涉及两个注册表值:
HKCU\Control Panel\Desktop\UserPreferencesMask
这是一个 reg_binary 值。将此值从 更改
9E 2C 07 80 12 00 00 00
为9E 2C 07 80 10 00 00 00
。
HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\VisualFxSetting
默认情况下,该
VisualEffects
键不存在。这里可以定义很多值,但真正重要的只有 VisualFxSettings。将其设置为2
可禁用许多动画,并勾选“关闭所有不必要的动画(如果可能)”。
更新注册表时要小心。