ITMS 7.x, 8.x
GSS 3.x
Most MSI return or error codes are predefined by Microsoft. ITMS and GSS are designed to display these return/error codes in the job/task status upon completion.
What does error 3010 mean?
|
3010 |
The requested operation is successful. Changes will not be effective until the system is rebooted. |
ERROR_SUCCESS_REBOOT_REQUIRED |
This isn’t really an error but is just a code stating that the operation completely successfully and requires a reboot to become effective.
What Switch is causing the problem?
The problematic switches in many of the scripted install process are:/q, /q:a, /z, /r:n.
These switches either suppress the prompt that tells the user that they need to reboot the computer for the install to finish or force the install without a reboot.
Explanation:
|
/q |
Specifies quiet mode, or suppresses prompts, when files are being extracted. |
|
/q:u |
Specifies user-quiet mode, which presents some dialog boxes to the user. |
|
/q:a |
Specifies administrator-quiet mode, which does not present any dialog boxes to the user. |
|
/r:n |
Never restarts the computer after installation. |
|
/r:i |
Prompts the user to restart the computer if a restart is required, except when used with /q:a. |
|
/r:a |
Always restarts the computer after installation. |
|
/r:s |
Restarts the computer after installation without prompting the user. |
|
/f |
Force other programs to quit at shutdown |
|
/q |
Quiet mode (no user interaction required) |
|
/u |
Unattended Setup mode |
|
/z |
Do not restart the computer after installation |