gpt4 book ai didi

PowerShell 禁用和启用驱动程序

转载 作者:行者123 更新时间:2023-12-04 05:49:16 29 4
gpt4 key购买 nike

有时在重新启动/冷启动后,我在 Win8 中的触摸屏驱动程序出现问题,所以我现在必须手动重新启动它。

所以我想写一个在登录后启动的脚本,它将禁用驱动程序并再次启用它。

我实际上发现找到驱动程序,并且我可以通过以下方式获取驱动程序的对象列表:

Get-WmiObject Win32_PnPSignedDriver| select devicename, driverversion | where {$_.devicename -like "I2C*"}

但是在行尾添加“ | Disable-Device”是行不通的。

谁能告诉我如何正确编写命令并像批处理文件一样启动脚本?

最佳答案

至少在 Windows 10 中要容易得多:

$d = Get-PnpDevice| where {$_.friendlyname -like "I2Cwhatever*"}
$d | Disable-PnpDevice -Confirm:$false
$d | Enable-PnpDevice -Confirm:$false

关于PowerShell 禁用和启用驱动程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27599287/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com