有没有办法以编程方式 disable/enable 触摸屏,而无需在 Windows 10 中重新启动或注销?
Is there a way to disable/enable touchscreen programmatically without rebooting or signing out in Windows 10?
我可能有一个愚蠢的问题,但我很想知道您是否可以编写一个程序,例如在 c++ 中,它可以在不重新启动或注销的情况下禁用或启用触摸屏,此外我只想禁用触摸屏并仍然可以在平板电脑上使用笔。 (在 windows 10 上)。
我知道您可以通过设备管理器启用或禁用触摸屏,但这不是我要找的。我还知道您可以将注册表调整为 disable/enable 触摸屏,但它只有在重新启动或注销时才会生效。
我只想知道是否有办法做到这一点。 .net framework 或 win32 中有这方面的功能吗?
谢谢你的回答。
如果您想快速启用和禁用触摸屏,DevCon.exe是一个不错的选择。
DevCon (DevCon.exe) is a command line tool that can display detailed
information about devices on computers running Windows. You can also
use DevCon to enable, disable, install, configure, and remove devices.
您可以使用DevCon
创建可以快速启用和禁用的快捷方式。
DevCon 启用:
devcon [/r] enable {* | ID [ID ...] | =class [ID [ID ...]]}
DevCon 禁用:
devcon [/r] disable {* | ID [ID ...] | =class [ID [ID ...]]}
获取硬件ID,例如HID\VID_####&PID_####&COL##
然后创建批处理文件
set "touchscreenid=ID_HERE"
devcon status "%touchscreenid%" | findstr "running"
if %errorlevel% == 0 (
devcon disable "%touchscreenid%"
) else (
devcon enable "%touchscreenid%"
)
最后,更改文件的属性,使其成为快捷方式。
详情可参考warrenj203's answer。
希望能帮到你。
我可能有一个愚蠢的问题,但我很想知道您是否可以编写一个程序,例如在 c++ 中,它可以在不重新启动或注销的情况下禁用或启用触摸屏,此外我只想禁用触摸屏并仍然可以在平板电脑上使用笔。 (在 windows 10 上)。
我知道您可以通过设备管理器启用或禁用触摸屏,但这不是我要找的。我还知道您可以将注册表调整为 disable/enable 触摸屏,但它只有在重新启动或注销时才会生效。
我只想知道是否有办法做到这一点。 .net framework 或 win32 中有这方面的功能吗? 谢谢你的回答。
如果您想快速启用和禁用触摸屏,DevCon.exe是一个不错的选择。
DevCon (DevCon.exe) is a command line tool that can display detailed information about devices on computers running Windows. You can also use DevCon to enable, disable, install, configure, and remove devices.
您可以使用DevCon
创建可以快速启用和禁用的快捷方式。
DevCon 启用:
devcon [/r] enable {* | ID [ID ...] | =class [ID [ID ...]]}
DevCon 禁用:
devcon [/r] disable {* | ID [ID ...] | =class [ID [ID ...]]}
获取硬件ID,例如HID\VID_####&PID_####&COL##
然后创建批处理文件
set "touchscreenid=ID_HERE"
devcon status "%touchscreenid%" | findstr "running"
if %errorlevel% == 0 (
devcon disable "%touchscreenid%"
) else (
devcon enable "%touchscreenid%"
)
最后,更改文件的属性,使其成为快捷方式。
详情可参考warrenj203's answer。
希望能帮到你。