Help - Search - Members - Calendar
Full Version: How do I install office hotfixes via a batch file?
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   
Google Internet Forums Unattended CD/DVD Guide
clivebuckwheat
I don't wanna slip stream them in because windows update still shows them as needing to be installed. I am using a windows unattended in a corporate environment. So I would like windows update to say 0 when all the updates are done.

Thanks to anyone who can give me a hand with this.
elajua
well, just download the appropiate updates from microsoft and use a cmd file like mine:

CODE
cmdow @ /HID
@echo off

start /wait .\KB892843.exe /Q:A /R:N
start /wait .\KB905648.exe /Q:A /R:N
start /wait .\KB905756.exe /Q:A /R:N
start /wait .\KB907417.exe /Q:A /R:N
start /wait .\KB913807-ENU.exe /Q:A /R:N
start /wait .\KB916521-ENU.exe /Q:A /R:N

exit
clivebuckwheat
thanks man
IcemanND
CODE
echo off
for %%U in (kb*.exe) do (
    echo Applying hotfix %%U
    start /wait %%U /Q:A /R:N
)
pause


Will install all of the updates named kb*.exe located in the current folder.
Works with windows updates too, just change the switches.
doci
QUOTE (elajua @ Jun 4 2006, 03:19 PM) *
well, just download the appropiate updates from microsoft and use a cmd file like mine:

CODE
cmdow @ /HID
@echo off

start /wait .\KB892843.exe /Q:A /R:N
start /wait .\KB905648.exe /Q:A /R:N
start /wait .\KB905756.exe /Q:A /R:N
start /wait .\KB907417.exe /Q:A /R:N
start /wait .\KB913807-ENU.exe /Q:A /R:N
start /wait .\KB916521-ENU.exe /Q:A /R:N

exit



How you make them installed during the windows xp installation after it's silent installation of office 2003 for example..
clivebuckwheat
I don't understand I did this and windowsupdate still lists them as too be installed.

I don't get it..
elajua
QUOTE (clivebuckwheat @ Jun 5 2006, 06:41 PM) *
I don't understand I did this and windowsupdate still lists them as too be installed.

I don't get it..



i have checked them many times and office update site didnt report any updates available. so i think it is working fine for me. you mentioned windows update. i dont know if windows update site will report them as available. check them at office.microsoft.com
mickmack
i extract .MSP nj save some space and install it with this commands from 7zip SFX

Start /Wait OLKINTLff.msp /qb
Start /Wait OTKLOADR.msp /qb
Start /Wait OUTLFLTR.msp /qb
Start /Wait OUTLOOKff.msp /qb
Start /Wait EXCELff.msp /qb

Exit
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.