安装更新时WUSA.exe无法正常工作?

时间:2016-07-03 09:41:51

标签: powershell

我使用PowerShell在计算机上安装Windows更新。我在命令行下面使用它来实现。

wusa.exe "file_path" \norestart \quiet

更新未安装并引发错误:

由于错误2147942487“参数不正确”,因此无法安装Windows更新。 (命令行:“”C:\ windows \ system32 \ wusa.exe“d:\ riteshthakur \ abc.msu \ quiet \ norestart”)

我在这做错了什么?

1 个答案:

答案 0 :(得分:1)

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

wusa.exe "file_path" /norestart /quiet

此外,如果您遇到问题,请尝试使用log参数查看正在进行的操作:

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