Hi,
how do Silent Installation with VBscript because I have some step for user interactive.
please anyone put an example about this or put a link to.
thank you very much.
SQL Server Setup & Upgrade
Hi,
how do Silent Installation with VBscript because I have some step for user interactive.
please anyone put an example about this or put a link to.
thank you very much.
If you need to collect information about the install, you will need to do it before launching the command line install and then build the command line string yourself. If you know your configuration, you can make the standard setup.exe <parameter list> call from your VBScript.
Thanks,
Sam Lester (MSFT)
do you have example about this I have no idea how start it from.
thank you very much.
I just got this to work. You will have to work with the command line parameters to find out what will make your install silent.
Set WSHShell = WScript.CreateObject("WScript.Shell")
strApp = "<PathToFile>\<InstallFile.exe> /q"
WSHShell.Exec(strApp)
Hope this helps.
Hi,
i am new to vbscripting.i need to create the vbscript for
( .netframework2.0,MDAC2.7,XML4.0,VC++2005,windowsinstaller3.0,OWC10)
with silent installation via VBscript.before that i need to check the
machine have my pre-requisites or not,which machine does not have my
pre-requisites through script i have to install.
Kindly provide any solution for this.you can reach me at
senthil3.n
thanks,
N.senthil
i am new to vbscripting.i need to create the vbscript for
( .netframework2.0,MDAC2.7,XML4.0,VC++2005,windowsinstaller3.0,OWC10)
with silent installation via VBscript.before that i need to check the
machine have my pre-requisites or not,which machine does not have my
pre-requisites through script i have to install.
Kindly provide any solution for this.you can reach me at
senthil3.n@tcs.com.
thanks,
N.senthil