如何编程禁用和重新启用触摸屏以进行清洁
一些客户希望编程地暂时禁用Elo - 现在是Zebra Technologies的一部分触摸屏,以清洁玻璃或出于管理原因使触摸不可用。本文提供了通过使用Windows PowerShell(管理员)禁用和重新启用触摸屏的步骤。
注意: 此方法适用于使用内置Windows PowerShell实用程序的Windows操作系统,并且不需要安装活动的Elo驱动程序。
禁用触摸屏
- 右键单击开始按钮(或同时按Windows键 + X),并从弹出菜单中选择Windows PowerShell(管理员)。
-
在PowerShell窗口中,输入以下命令并按Enter键:
Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'} | Disable-PnpDevice -Confirm:$false
重新启用触摸屏
-
要恢复触摸屏功能,请在活动的PowerShell窗口中输入以下命令并按Enter:
Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'} | Enable-PnpDevice -Confirm:$false
相关文章
- 暂时禁用触摸屏以进行清洁(需要安装Elo驱动程序)
- 如何自动化EloConfig.exe清洁屏幕(需要安装Elo驱动程序)
Please report any broken links by emailing support@elotouch.com and include a link to the knowledge article