为什么这个 powershell 脚本不起作用?

Why is this powershell script not working?

提问人:21kondav 提问时间:5/26/2022 更新时间:5/26/2022 访问量:160

问:

我正在尝试编写一个 power shell 脚本,该脚本将自动禁用特定的声音设备。当我运行它进行调试时,一切看起来都很好。它问我是否确定要禁用该设备,我单击了“是”,但是当我检查设备属性时,它仍然处于启用状态。是我做错了什么,还是我应该为我的预期目的做其他事情。 这是我在 Admin powershell 中运行的代码,我还没有开始自动化部分)

Get-PnpDevice -FriendlyName “Speakers (Yeti Nano)” | Disable-PnpDevice 
PowerShell 设备

评论

2赞 Cpt.Whale 5/26/2022
看看 vs 之间的区别。我发现我必须禁用媒体设备,而不是匹配的 AudioEndpointGet-PnpDevice -Class MEDIAGet-PnpDevice -Class AudioEndpoint
0赞 another victim of the mouse 5/26/2022
输出是什么?Get-PnpDevice -FriendlyName “Speakers (Yeti Nano)” | Disable-PnpDevice -whatif
0赞 21kondav 5/26/2022
@anothervictimofthemouse 它询问我是否确定要禁用该设备
0赞 Theo 5/26/2022
附加-Confirm:$false

答: 暂无答案