2017-09-30 7 views
1

관리자로 다음 powershell 명령을 실행하여 키보드 및 마우스의 Logictech 동글을 임의로 활성화 및 비활성화하려고합니다. 여기에 내가 할 노력하고있어 무슨 :이 동글을 비활성화하고 나중에 다시 활성화하는 올바른 방법입니다Logitech 통합 동글을 활성화/비활성화하는 powershell 명령

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

Disable-PnpDevice : Not supported 

확실하지합니다. 이 명령으로 알 수 있듯이 오류가 발생합니다.

방법에 대한 아이디어가 있으십니까?

+0

수신기 자체를 비활성화하려면 'FriendlyName : Logitech Unifying USB receiver'입니다. – LotPings

답변

0

M560으로 어떻게했는지 알아보십시오.

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

마우스

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

작업을 중지하면 다시 작업을 시작합니다.