1

我正在尝试以管理员身份运行以下 powershell 命令,以任意启用​​和禁用我的键盘和鼠标的 Logictech 加密狗。这是我正在尝试做的事情:

PS C:\> Get-PnpDevice -FriendlyName "Logitech USB Input Device" | 
where-object {$_.Status -eq "OK"} | 
Disable-PnpDevice -confirm:$false

Disable-PnpDevice : Not supported

不确定这是否是禁用加密狗并稍后重新启用它的正确方法。正如您使用此命令所看到的,我收到了一个错误。

关于如何做到这一点的任何想法?

4

1 回答 1

0

对我有用,就像你用 M560 做的一样。

Get-PnpDevice -FriendlyName "Logitech*" -Class 'Mouse' | Disable-PnpDevice -confirm:$false

鼠标停止工作

Get-PnpDevice -FriendlyName "Logitech*" -Class 'Mouse' | Enable-PnpDevice -confirm:$false

再次开始工作。

于 2017-09-30T11:24:16.737 回答