powershell 安装更新时WUSA.exe不工作?

xxhby3vn  于 2023-11-18  发布在  Shell
关注(0)|答案(2)|浏览(208)

我正在使用powershell来安装windows更新在一台机器上。我使用下面的命令行来实现。

wusa.exe "file_path" \norestart \quiet

字符串
更新未安装并抛出错误:
无法安装Windows更新,因为出现错误2147942487“参数不正确”。(命令行:““C:\windows\system32\wusa.exe”d:\riteshthakur\abc.msu \quiet \norestart”)
我在这里做错了什么吗?

o3imoua4

o3imoua41#

在Windows中,您需要为参数使用正斜杠,通常情况下:

wusa.exe "file_path" /norestart /quiet

字符串
此外,如果您遇到问题,请尝试使用log参数来查看发生了什么:

wusa.exe "file_path" /norestart /quiet /log:C:\wusa.log

nkkqxpd9

nkkqxpd92#

为了将来的参考,当运行wusa命令并希望查看日志时,请确保将其保存为.evt文件,然后将由windows事件查看器打开。因此,从上面的命令:

wusa.exe "file_path" /norestart /quiet /log:C:\wusa.evt

字符串

相关问题