gpt4 book ai didi

powershell - powershell 启动过程出错

转载 作者:行者123 更新时间:2023-12-05 08:00:17 30 4
gpt4 key购买 nike

我正在尝试像这样从 powershell 启动一个进程:-

$proc = (start-process $myExe -argumentList '/myArg True' -windowStyle Minimized -passthru)

这主要是有效的,但是间歇性地出现这个错误:-

This command cannot be executed completely because the system cannot find all the information required.

谷歌搜索错误没有任何结果,而且 - 至少对我来说 - 它毫无意义。机器被锁得很紧,我怀疑是配置问题,但如果我知道错误是什么,解决起来会更容易。

消息似乎来自 Microsoft.PowerShell.Commands.Management.dll

有谁知道它是什么意思,甚至它找不到什么“信息”?

最佳答案

试试这个...

Set-Variable -Name myExe c:\windows\system32\cmd.exe
$proc = (start-process -FilePath $myExe -argumentList '/k' -windowStyle Minimized -passthru )

用你的exe替换cmd.exe

关于powershell - powershell 启动过程出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18463318/

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