滑鼠滾輪在 Windows 7 遠端桌面中不滾動

滑鼠滾輪在 Windows 7 遠端桌面中不滾動

我最近升級到 Windows 7。遠端機器也是一樣的,所以我敢打賭問題出在客戶端。

我正在使用微軟(ironic)無線滑鼠 5000 和微軟無線鍵盤 3000。

以前有人遇到過這個問題嗎?

答案1

MS 無線滑鼠 5000 的滾輪做了一些奇怪的事情。

如果尚未安裝,請安裝最新版本智能點數軟體來自 Microsoft,看看是否有幫助。

如果你已經安裝了它,請嘗試將其刪除並僅使用 Windows 附帶的預設“Windows Optical USB Mouse”驅動程式。

一些相關資訊:

答案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 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 

相關內容