如何在Powershell脚本中以管理员身份执行Enable-PnpDevice?

问题描述

我正在尝试使用Enable-PnpDevicedisable-PnpDevice Powershell命令自动执行启用和禁用笔记本电脑的集成图形适配器的任务。 我正在使用Windows 10并且安装了Powershell 7.0.2

这是我到目前为止所拥有的:

$Device = Get-PnpDevice -FriendlyName "*HD Graphics*"
$deviceid = $Device.InstanceId
$Status = $Device.Status

If ($Status -eq 'Error') {
    runas /user:kato "Enable-PnpDevice -InstanceId $deviceid -confirm:$false"
} Else {
    runas /user:kato "disable-PnpDevice -InstanceId $deviceid -confirm:$false"
}

我的帐户具有管理员权限,但是当脚本使用runas时,如下所示:

runas /user:kato "Enable-PnpDevice -InstanceId $deviceid -confirm:$false"

我收到以下错误

RUNAS ERROR: Unable to run - Enable-PnpDevice -InstanceId PCI\VEN_8086&DEV_0416&SUBSYS_171D1043&REV_06\3&11583659&0&10 -confirm:False
2: The system cannot find the file specified.

当我在管理员Powershell会话中运行Enable-PnpDevice时,命令将按预期运行。

我在SO上看到了一些答案,这些答案涉及使用runas执行程序和脚本,但是在这种情况下它不起作用,或者我做错了事。

是否有替代或更好的方式以管理员身份执行Enable-PnpDevicedisable-PnpDevice

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)