This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Help needed!!!Silent installation through Installscript Project URGENT
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Feb 26, 2008
02:02 AM
Help needed!!!Silent installation through Installscript Project URGENT
Hi,
I am using Installshield 2008 Professional.I have an installscript project from which i need lauch SQL express 2005. I have done that with LaunchAppandWait function. But my requirement is to have a Silent installation of SQL Express 2005 and install SQL Management studio express as well (which is an option in SQL Express 2005).
How do i do this...its urgent....
I have tried few of options doesnt seem to work.
I tried using LaunchApplication(setup.exe, " /s", WAIT)
to launch is silently but it says
"command line option syntax error " where am i going wrong.
Any help inputs shall be appreciated.....
I am using Installshield 2008 Professional.I have an installscript project from which i need lauch SQL express 2005. I have done that with LaunchAppandWait function. But my requirement is to have a Silent installation of SQL Express 2005 and install SQL Management studio express as well (which is an option in SQL Express 2005).
How do i do this...its urgent....
I have tried few of options doesnt seem to work.
I tried using LaunchApplication(setup.exe, " /s", WAIT)
to launch is silently but it says
"command line option syntax error " where am i going wrong.
Any help inputs shall be appreciated.....
(4) Replies
‎Feb 26, 2008
08:23 AM
The first thing to do would be to get a slient install of SQLServer 2005 working properly by launching it through a dos box... Does simply kicking off the SQL Server 2005 "setup.exe" with /s after it work for that?
If so, the first thing I'd do is remove the extra space you've added in your command line argument " /s" and make it "/s", although I doubt that this is the issue.
If so, the first thing I'd do is remove the extra space you've added in your command line argument " /s" and make it "/s", although I doubt that this is the issue.
‎Feb 26, 2008
12:57 PM
I install SQLExpress using the following:
szProgram = SUPPORTDIR ^ "Sqlexpr32.exe";
szCmdLine = " /q /qn INSTANCENAME=TEST_SQLEXPRESS ADDLOCAL=ALL SAPWD=xxxx SECURITYMODE=SQL";
LaunchAppAndWait(szProgram, szCmdLine, LAAW_OPTION_WAIT);
This install SQLExpress silently. You will need to determine the options for the option for the management studio.
szProgram = SUPPORTDIR ^ "Sqlexpr32.exe";
szCmdLine = " /q /qn INSTANCENAME=TEST_SQLEXPRESS ADDLOCAL=ALL SAPWD=xxxx SECURITYMODE=SQL";
LaunchAppAndWait(szProgram, szCmdLine, LAAW_OPTION_WAIT);
This install SQLExpress silently. You will need to determine the options for the option for the management studio.
‎Feb 27, 2008
05:39 AM
sspencer wrote:
I install SQLExpress using the following:
szProgram = SUPPORTDIR ^ "Sqlexpr32.exe";
szCmdLine = " /q /qn INSTANCENAME=TEST_SQLEXPRESS ADDLOCAL=ALL SAPWD=xxxx SECURITYMODE=SQL";
LaunchAppAndWait(szProgram, szCmdLine, LAAW_OPTION_WAIT);
This install SQLExpress silently. You will need to determine the options for the option for the management studio.
Hi spencer,
thanks a lot it worked 🙂
regards,
Heko