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!!!!