提问人:21kondav 提问时间:5/26/2022 更新时间:5/26/2022 访问量:160
为什么这个 powershell 脚本不起作用?
Why is this powershell script not working?
问:
我正在尝试编写一个 power shell 脚本,该脚本将自动禁用特定的声音设备。当我运行它进行调试时,一切看起来都很好。它问我是否确定要禁用该设备,我单击了“是”,但是当我检查设备属性时,它仍然处于启用状态。是我做错了什么,还是我应该为我的预期目的做其他事情。 这是我在 Admin powershell 中运行的代码,我还没有开始自动化部分)
Get-PnpDevice -FriendlyName “Speakers (Yeti Nano)” | Disable-PnpDevice
答: 暂无答案
评论
Get-PnpDevice -Class MEDIA
Get-PnpDevice -Class AudioEndpoint
Get-PnpDevice -FriendlyName “Speakers (Yeti Nano)” | Disable-PnpDevice -whatif
-Confirm:$false