我使用PowerShell在计算机上安装Windows更新。我在命令行下面使用它来实现。
wusa.exe "file_path" \norestart \quiet
更新未安装并引发错误:
由于错误2147942487“参数不正确”,因此无法安装Windows更新。 (命令行:“”C:\ windows \ system32 \ wusa.exe“d:\ riteshthakur \ abc.msu \ quiet \ norestart”)
我在这做错了什么?答案 0 :(得分:1)
您需要在Windows中使用正斜杠作为参数,通常为:
wusa.exe "file_path" /norestart /quiet
此外,如果您遇到问题,请尝试使用log参数查看正在进行的操作:
wusa.exe "file_path" /norestart /quiet /log:C:\wusa.log