|
|
楼主 |
发表于 2024-11-28 16:42:50
|
显示全部楼层
回复 7# Five66 - @echo off & setlocal enabledelayedexpansion
- echo 代码开始
- echo 设置-蓝牙和其他设备-鼠标-滚动方向:向下移动时向上滚动
- reg add "HKEY_CURRENT_USER\Control Panel\Mouse" /f /v "ReverseMouseWheelDirection" /t REG_DWORD /d 1
- pause
- ping 127.0.0.1 -n 1 >nul 2>nul
- cls
- :: 环境变量更新即时有效
- :: 这个写法是关键!!'"Environment"',另外,不能直接用0值,只能用[UIntPtr]::Zero,其他形式的写法可能都不行
- powershell (Add-Type '[DllImport("user32.dll")]^public static extern IntPtr SendMessageTimeout(IntPtr hWnd, uint Msg, UIntPtr wParam, string lParam, uint fuFlags, uint uTimeout, out UIntPtr lpdwResult);' -Name a -Pas)::SendMessageTimeout([IntPtr]0xffff, 0x1a, [UIntPtr]::Zero, '"Environment"', 2, 5000, [ref] [uintptr]::zero)
- pause
复制代码 运行后没效果。不能马上生效,还是得注销系统。 |
|