我正在尝试运行一个禁用触摸屏的 powershell 脚本。我只想双击它并运行它。
我尝试将其添加到目标在我创建的原始 .ps1 的快捷方式中:
powershell.exe -f "C:\Users\OnionMan\Desktop\Disable Touchscreen.ps1"
并点击以管理员身份运行
我也尝试了底部的 Target 快捷方式
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Unrestricted -File "C:\Users\OnionMan\Desktop\Disable Touchscreen.ps1"
这是关闭触摸屏的命令(如果有人知道如何使用相同的脚本来打开和关闭它,那就太好了!)
Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'} | Disable-PnpDevice -Confirm:$false