Wusa Is Not Recognized
This thread is locked. You can follow the question or vote as helpful, but you cannot reply to this thread. This article applies to volume-licensed Windows 7 devices that use Key Management Service (KMS) activation and have the KB 971033 update installed. Some users may receive the Windows Activation or 'Windows is not genuine' notifications starting at or after 10:00 UTC, January 8, 2019.
I am attempting to use this syntax:
wusa.exe 'IE11-Windows6.1-KB2929437-x64.msu' /norestart
But it simply pops up with the WUSA help box, like it doesn't understand my syntax.
I've tried a full path or without quotes, same issue. Am I missing something?
ZenoZeno1 Answer
It doesn't understand my syntax.
Look at the help box that pops up.
/norestart
When combined with /quiet
installer will NOT initiate reboot.
Try the following command:
Where {path}
is the full path to IE11-Windows6.1-KB2929437-x64.msu
Description of the Windows Update Standalone Installer in Windows
You can use the following switches together with Wusa.exe.
/norestart
PreventsWusa.exe
from restarting the computer.The
/norestart
switch is ignored if the/quiet
switch is not present.If you run Wusa.exe together with these two switches, you must manually restart the operating system after the installation is complete if the installation requires you to restart the computer.
For example, if the
Windows6.0-KB934307-x86.msu
file is in theD:934307
folder, type the following command at a command prompt to install the update package:wusa.exe D:934307Windows6.0-KB934307-x86.msu /quiet /norestart
Source Description of the Windows Update Standalone Installer in Windows
DavidPostill♦DavidPostillNot the answer you're looking for? Browse other questions tagged windows-7command-line or ask your own question.
Is there the full list of return codes for 'wusa.exe'?
I guess that Windows System Error Codes are applicable here.http://www.hiteksoftware.com/knowledge/articles/049.htm
But sometimes I need to consider other return codes such as: 2359302 or 2359303
3 Answers
I don't pretend that these pages are comprehensive, but here are links to two documents that might help:
Hopefully they're useful. There's a third document titled Windows Update Agent Networking Error Codes that you'll find along side Windows Update Agent Success and Error Codes. I would have included that link but a I received a red tooltip that informed me I 'need at least 10 reputation to post more than 2 links.'
Here is a link (I hope it is what your are searching for): http://inetexplorer.mvps.org/archive/windows_update_codes.htm .
NixphoeWusa.exe is just a wrapper for Windows Update functions to install MSU updates. Install the Windows 10 SDK and look into the file 'C:Program Files (x86)Windows Kits10Include10.0.10240.0umwuerror.h'
to all Windows Update related errors.