Need Help!!!

I am trying to install 7 patches for Office 2000 silently. I want
users to have no interaction these are installing. Below is the
following code.

'On error Resume next

Set Wshshell = WScript.CreateObject("WScript.Shell")

WshShell.Run "U:\AppLauncher\OfficeSP3\O2kSp3.exe /q /R:N", 1, True
WshShell.Run "U:\AppLauncher\OfficeSP3\olk0901.exe /q /R:N", 1, True
WshShell.Run "U:\AppLauncher\OfficeSP3\office2000-KB822035-client-enu.exe
/q /R:N", 1, True
WshShell.Run "U:\AppLauncher\OfficeSP3\office2000-KB830347-client-enu.exe
/q /R:N", 1, True
WshShell.Run "U:\AppLauncher\OfficeSP3\office2000-KB830349-client-enu.exe
/q /R:N", 1, True
WshShell.Run "U:\AppLauncher\OfficeSP3\office2000-KB824993-client-enu.exe
/q /R:N", 1, True
WshShell.Run "U:\AppLauncher\OfficeSP3\office2000-KB826292-client-enu.exe
/q /R:AS", 1, True

Even through I have used /q switch, the windows install displays and
also the pop up message that the patch has installed? Is there anyway
to keep this message pop ups hidden? Thanks for help!!!!

Re: VBScript will not install Security Patches Silently. by Torgeir

Torgeir
Tue Dec 02 13:11:54 CST 2003


Multipost; response in .wsh


Multiposting vs Crossposting
http://www.blakjak.demon.co.uk/mul_crss.htm


--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter



Re: VBScript will not install Security Patches Silently. by rdl_clark

rdl_clark
Fri Oct 01 11:59:24 CDT 2004


Kevin Wrote:
> Need Help!!!
>
> I am trying to install patches for Office 2000 silently. I want
> users to have no interaction these are installing. Below is the
> following code.
>
> 'On error Resume next
>
> Set Wshshell = WScript.CreateObject("WScript.Shell")
>
>
> WshShell.Ru
> "U:\AppLauncher\OfficeSP3\office2000-KB830347-client-enu.exe
> /q /R:N", 1, True
>
>
> Even through I have used /q switch, the windows install displays and
> also the pop up message that the patch has installed? Is there anyway
> to keep this message pop ups hidden?

Hi Kevin,

Create a folder for each patch or update
e.g.
U:\AppLauncher\OfficeSP3\KB830347

Extract the files from the exe by clicking on start\ run and type in
U:\AppLauncher\OfficeSP3\office2000-KB830347-client-enu.exe /c
browse to the folder you created for this patch and extract the files.

Now edit the ohotfix.ini for each extracted patch to:

[OHotfix]
IsNormalUpdate=1
AdminUsesShortFilenames=1
AdminPath=
MessageTitle=Word 2000 Security Patch: KB830347
CopyFilesToRerun=1
ShowSuccessDialog=0
RunSetupWatson=0
RequireAllPatchesNeeded=0
RequireAllProductsAtMinVersion=0
MinProductVersion=
MinMsiVersion=2.0
UpgradeMsi=0
MsiUpgradeURL=http://office.microsoft.com/ProductUpdates/ExtlinkPages/Ohotfix.aspx
OHotfixLogLevel=n
MsiLogLevel=n
OHotfixUILevel=q
MsiUILevel=q
RebootInQuietMode=0
FeatureToCheck=

Do this for each patch or update.

Now change the vb script to run the ohotfix.exe in each folder and i
all runs in the background and no-one will notice anything.

Cheers


--
rdl_clark

Re: VBScript will not install Security Patches Silently. by NickB

NickB
Thu Oct 07 01:57:02 CDT 2004

just try the switch as /Q:A and this will solve the problem

"rdl_clark" wrote:

>
> Kevin Wrote:
> > Need Help!!!
> >
> > I am trying to install patches for Office 2000 silently. I want
> > users to have no interaction these are installing. Below is the
> > following code.
> >
> > 'On error Resume next
> >
> > Set Wshshell = WScript.CreateObject("WScript.Shell")
> >
> >
> > WshShell.Run
> > "U:\AppLauncher\OfficeSP3\office2000-KB830347-client-enu.exe
> > /q /R:N", 1, True
> >
> >
> > Even through I have used /q switch, the windows install displays and
> > also the pop up message that the patch has installed? Is there anyway
> > to keep this message pop ups hidden?
>
> Hi Kevin,
>
> Create a folder for each patch or update
> e.g.
> U:\AppLauncher\OfficeSP3\KB830347
>
> Extract the files from the exe by clicking on start\ run and type in
> U:\AppLauncher\OfficeSP3\office2000-KB830347-client-enu.exe /c
> browse to the folder you created for this patch and extract the files.
>
> Now edit the ohotfix.ini for each extracted patch to:
>
> [OHotfix]
> IsNormalUpdate=1
> AdminUsesShortFilenames=1
> AdminPath=
> MessageTitle=Word 2000 Security Patch: KB830347
> CopyFilesToRerun=1
> ShowSuccessDialog=0
> RunSetupWatson=0
> RequireAllPatchesNeeded=0
> RequireAllProductsAtMinVersion=0
> MinProductVersion=
> MinMsiVersion=2.0
> UpgradeMsi=0
> MsiUpgradeURL=http://office.microsoft.com/ProductUpdates/ExtlinkPages/Ohotfix.aspx
> OHotfixLogLevel=n
> MsiLogLevel=n
> OHotfixUILevel=q
> MsiUILevel=q
> RebootInQuietMode=0
> FeatureToCheck=
>
> Do this for each patch or update.
>
> Now change the vb script to run the ohotfix.exe in each folder and it
> all runs in the background and no-one will notice anything.
>
> Cheers
> R
>
>
> --
> rdl_clark
>