我正在尝试在远程计算机上远程安装 Windows 更新 .msu 文件。我运行了以下命令
psexec \\com-479 -s wusa \\"commonshare\updates\windows6.1-KB4088875-x86.msu" /quiet /norestart
它似乎以错误代码 3010 退出。我找不到有关该代码的任何信息。
具体来说,错误是:
PsExec.exe : Connecting to local system...
At line:1 char:7
+ psexec <<<< \\com-479 -s wusa \\"commonshare\updates\windows6.1-KB4088875-x86.msu"
/quiet /norestart
+ CategoryInfo : NotSpecified: (Connecting to local system...:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
Starting PSEXESVC service on local system...Connecting with PsExec service on com-479...Starting wusa on com-479...
wusa exited on com-479 with error code 3010.
答案1
我发现了一些有用的东西这里:
错误 3010 是什么意思?
3010
请求的操作成功。更改只有在重新启动系统后才会生效。
错误成功_需要重新启动
这实际上不是一个错误,而只是一个代码,表示操作已成功完成,需要重新启动才能生效。哪个开关导致了问题?许多脚本安装过程中有问题的开关是:/q、/q:a、/z、/r:n。这些开关要么抑制提示用户需要重新启动计算机才能完成安装的提示,要么强制安装而不重新启动。