/build/static/layout/Breadcrumb_cap_w.png

french pack for IE8 silent installation

hi all,

i have a vbs to install IE8 silently. the command works silently if tried on the command line, but not in my vbs. it starts but not silently.

objShell.Run Chr(34) & Current_Dir & "IE8MUI-x86-enu.exe" & Chr(34) & " /Quiet /norestart", RUN_HIDDEN, True

a msgbox with Chr(34) & Current_Dir & "IE8MUI-x86-enu.exe" & Chr(34) & " /Quiet /norestart" confirms that the syntax is correct.

the installation starts but i'm getting prompted in windows to confirm the installation.

why is it silently working manually but not in my vbs?

please help!

0 Comments   [ + ] Show comments

Answers (1)

Posted by: itolutions 13 years ago
Purple Belt
0
May be some syntax/logic error. Try this. Already checked on office package:

Set objShell = CreateObject("WScript.Shell")
strEXE = "C:\Temp\office2007sp2-kb953195-fullfile-en-us.exe"
strParam = "/quiet /norestart"
strInst = strEXE & " " & strParam
Result = objShell.Run(strInst, 0, True)
If (Result <> 0) And (Result <> 3010) Then
msgbox "ERROR: Installation of service pack 2 failed - Errorcode: " & Result
Quit(Result)
End If
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ