Windows 7 远程桌面中鼠标滚轮无法滚动

Windows 7 远程桌面中鼠标滚轮无法滚动

我最近升级到了 Windows 7。我发现鼠标滚轮在远程桌面上不再起作用。远程机器也一样,所以我敢打赌问题出在客户端。

我正在使用微软(ironic)无线鼠标 5000 和微软无线键盘 3000。

有人遇到过这个问题吗?

答案1

MS 无线鼠标 5000 的滚轮有些奇怪的现象。

如果你还没有安装,请安装最新的IntelliPoint 软件来自 Microsoft 并查看是否有帮助。

如果你已经安装了,请尝试将其删除并使用 Windows 附带的默认“Windows 光电 USB 鼠标”驱动程序。

一些相关信息:

答案2

如果您正在使用出色的 Windows 程序 KatMouse(它允许您滚动鼠标悬停的任何窗口),请禁用它。

我正在使用 Windows 8.1,由于我启用了 KatMouse,因此滚动在远程桌面上不起作用。

答案3

我终于能够使用 AutoHotKey 和这个脚本来实现这个功能

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 
#MaxHotkeysPerInterval 200 

; Installing the mousewheel handler only for the programs presenting this issue. 
; Remote Desktop
GroupAdd, MousewheelHandler, ahk_class TscShellContainerClass 

#IfWinActive ahk_group MousewheelHandler 
WheelDown::WheelDown 
WheelUp::WheelUp 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 

相关内容