How do I edit Visual Studio's mouse shortcuts?

前端 未结 8 1147
鱼传尺愫
鱼传尺愫 2020-12-03 04:45

Visual Studio used to execute the \"Naviagte Backward\" command whenever I hit the back thumb button on my mouse, but it has recently stopped doing that. How can I edit Visu

8条回答
  •  不知归路
    2020-12-03 05:10

    UAC is the reason...

    from Windows Integrity Mechanism Design - User Interface Privilege Isolation (UIPI) and integrity

    User Interface Privilege Isolation (UIPI) implements restrictions in the windows subsystem that prevents lower-privilege applications from sending window messages or installing hooks in higher-privilege processes. Higher-privilege applications are permitted to send window messages to lower-privilege processes. The restrictions are implemented in the SendMessage and related window message functions. Not all window messages that are sent from a lower-privilege process to a higher-privilege process are blocked. Generally, “read” type messages, for example WM_GETTEXT, can be sent from a lower-privilege to a higher-privilege window. However, write type messages, such as WM_SETTEXT, are blocked.

    and I don't know about any solution, since elevating the driver process is not a solution.

提交回复
热议问题