news.microsoft.com said:
Does anyone know the Command-Line switches that can be used with
Office patches that utilize ohotfix.exe?
Yes.
I'm trying to deploy them silently via SMS but the /q switch no
longer forces a silent install.
Example command: Office2000-kb830347-client-enu.exe /q
These are "IExpress" installers with a bundled .msp (MSI patch) file.
Unpack each hotfix by hand to find the name of the .msp file it
contains, then use the /c:... switch to invoke msiexec on that file.
For general principles of IExpress installers, see
<
http://unattended.sourceforge.net/installers.html#hotfixes>.
Using 830347 as an example, you can install it in unattended mode like
this:
Office2000-kb830347-client-enu.exe /q /c:"msiexec /qb /p WINWORDop.msp REBOOT=ReallySuppress"
For completely silent installation, replace /qb with /qn in the
switches to msiexec.
For more on Office 2000 unattended installation, including a link to
the script I use to install Office and all of its hotfixes, see
<
http://unattended.sourceforge.net/installers.html#office2k>.
- Pat