4

几天前我问了这个问题, How to connect and remove bluetooth in windows powerhell,但是每当我尝试运行代码时:

$device = Get-PnpDevice | Where-Object {$_.Class -eq "Bluetooth" -and $_.FriendlyName -eq "MX Master 2S"}
Disable-PnpDevice -InstanceId $device.InstanceId -Confirm:$false
Start-Sleep -Seconds 10
Enable-PnpDevice -InstanceId $device.InstanceId -Confirm:$false

我收到此错误:

Disable-PnpDevice : Generic failure 
At C:\Users\wadeb\OneDrive\Desktop\Mouse Bluetooth Reset.ps1:2 char:1
+ Disable-PnpDevice -InstanceId $device.InstanceId -Confirm:$false
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (Win32_PnPEntity...B17A1&0&FAD...):ROOT\cimv2\Win32_PnPEntity) [ 
   Disable-PnpDevice], CimException
    + FullyQualifiedErrorId : HRESULT 0x80041001,Disable-PnpDevice

我以提升的权限运行它,并且没有错误代码enable-pnpdevice,只有 disable-pnpdevice 有问题。

有谁知道如何做到这一点?在保罗发表评论后,我仔细检查了我是否在管理员中,我不是,但是当我这样做时,现在弹出:

Disable-PnpDevice : 不支持在 line:2 char:1 + Disable-PnpDevice -InstanceId $device.InstanceId -Confirm:$false + ~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotImplemented: (Win32_PnPEntity ...B17A1&0&FAD...):ROOT\cimv2\Win32_PnPEntity) [禁用-PnpDevice],CimException + FullyQualifiedErrorId:HRESULT 0x8004100c,禁用-PnpDevice

另外,我跑了

$device

Status     Class           FriendlyName                                                                     InstanceId     
------     -----           ------------                                                                     ----------     
OK         Bluetooth       MX Master 2S                                                                     BTHLE\DEV_FA...

不确定这是否是保罗所说的包含的意思。
过了一会儿,在 Paul 帮助我聊天时,我们确定我的蓝牙芯片或实际软件有问题,所以如果有人对此有任何想法,将不胜感激。

4

2 回答 2

6

我刚刚遇到完全相同的问题,无法在线找到解决方案。但是,我发现(通过反复试验)问题在于 PowerShell 脚本和/或命令提示符必须以“以管理员身份运行”权限启动。一旦我这样做了,我就可以很好地运行该命令。

如果错误消息足够清楚以指出该特定问题,那就太好了,但希望这将有助于其他人寻找解决方案。

于 2020-03-26T13:49:03.173 回答
1
devcon.exe disable "USB\VID_0A12&PID_0001" & devcon.exe enable "USB\VID_0A12&PID_0001"
于 2019-01-26T10:44:43.687 回答