Jul 29, 2021
04:30 PM
Oddest thing. I created a prerequisite for SQL Server 2019 and included it in my project. The issue is that the setup stops once the installation of the prerequisite is completed and I have no idea what might be causing this. I then need to restart the setup in order to resume the installation process. If anyone can tell my what needs to be adjusted, that would be great! Here is the prerequisite file: <?xml version="1.0" encoding="utf-8"?> <SetupPrereq> <conditions> <condition Type="16" Comparison="2" Path="[ProgramFilesFolder]Microsoft SQL Server\150\COM" FileName="sqlresld.dll" ReturnValue="2019.150.2000.5" /> <condition Type="1" Comparison="2" Path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\Test19" FileName="" ReturnValue="" /> </conditions> <files> <file LocalFile="<ISProductFolder>\Objects\SQL2019Express\SQLEXPRADV2019_x64_ENU.exe" /> </files> <execute file="SQLEXPRADV2019_x64_ENU.exe" cmdline=" /CONFIGURATIONFILE=C:\MyFiles\SQLServer2019Options.ini" /> <properties Id="Microsoft SQL Server 2019 Express" /> </SetupPrereq> And the configuration file which is located in C:\MyFiles\SQLServer2019Options.ini contains the following: [OPTIONS] ACTION="INSTALL" FEATURES=SQLEngine,Replication QS="TRUE" IACCEPTSQLSERVERLICENSETERMS="TRUE" SUPPRESSPRIVACYSTATEMENTNOTICE="TRUE" ENU="TRUE" INSTANCEID="Test19" INSTANCENAME="Test19" AGTSVCACCOUNT="NT AUTHORITY\SYSTEM" ASSVCACCOUNT="NT AUTHORITY\SYSTEM" SQLSVCACCOUNT="NT AUTHORITY\SYSTEM" ISSVCACCOUNT="NT AUTHORITY\SYSTEM" RSSVCACCOUNT="NT AUTHORITY\SYSTEM" SQLSYSADMINACCOUNTS="BUILTIN\Administrators" SECURITYMODE="SQL" SAPWD="MyPwd" TCPENABLED="1" NPENABLED="1"
... View more
Sep 09, 2014
09:18 AM
Hi. For a variety of reasons, my installation package needs the "Required execution level" parameter to be set at Administrator execution level. However, I also need to run some custom action executables which are compiled at Invoker level. My problem is that when the package is executed, it runs these custom action executables at Administrator level even though they do not require it. This changes the behavior of the executables (e.g. on Windows 8, due to the File system redirector and the default disabling of the EnableLinkedConnections parameter in the system registry). Is there a way to indicate that a custom action executable should be run at different execution level? Thanks!
... View more
Labels
- Labels:
-
InstallShield 2014 Express
Mar 19, 2013
02:53 PM
Hi folks, I want to create a prerequisite for SQL Server 2008 R2 Express SP2 With Tools but I can't find the download linkid (e.g. http://go.microsoft.com/?linkid=9729746) to download Service Pack 2 . I would need the linkids for both 32bit and 64bit. Could anyone tell me what they are or where I could possibly search for them on the Microsoft download site? Thanks!!!
... View more
Labels
- Labels:
-
InstallShield 2012 Spring
Mar 04, 2013
11:44 AM
Thanks Debbie, This article explains the behavior and how to diagnose using tools like Sleuth which are not available in IS Express. Basically, I would like to know if there is any way to qualify some files which are included in my setup project to indicated that they are not essential and can be deleted without Windows installer trying to restore them afterwards. Thanks!
... View more
Mar 01, 2013
08:34 AM
Hi folks, This is the scenario. I install the package on a target computer. Works fine. Then, I delete files on the target computer which are no longer required. Here's the problem: as soon as I start the main application on the target computer, Windows starts restoring the deleted files. How can I avoid this Windows restoration behavior? Thanks!!!
... View more
Labels
Jun 30, 2010
01:10 PM
Thanks HenryL. Not obvious in many cases where the page is not even accessible for edition to see the HTML behind it. Is there any way that I could put the files on my firm's HTTP download site and set the URL as appropriate? When I try to do so, the installer always generates an error. I think that it may be that the http://download.microsoft.com/download/ site provides for direct downloads and doens't ask to make a choice between Run or Save which is an unexpected event for the installer.... Otherwise, is there a way to know what are all the links available from the http://download.microsoft.com/download/ site ?
... View more
Jun 29, 2010
11:58 AM
This is probably a novice question but hey...:o . I want to rewrite a prerequisite file to include SQL Server 2008 R2 Express with Tools. No big deal but I would need the link from the Microsoft download site. For instance, for SQL Server 2008 SP1, the following link would apply: URL="http://download.microsoft.com/download/8/E/5/8E53FAA8-1129-4621-903F-3F8DB6D066AC/SQLEXPR32_x86_ENU.exe". Does anyone know where I might find the appropriate references? Thanks!
... View more
Labels
- Labels:
-
InstallShield 2010
May 12, 2010
06:59 AM
You have to put either /Q or /QS. Refer to http://msdn.microsoft.com/en-us/library/ms144259.aspx . Hope this helps.
... View more
Jul 01, 2008
08:54 PM
Is there a way in Installshield 2008 Express to change the name of setup.exe to something else (e.g. install.exe)?:o
... View more
Labels
- Labels:
-
InstallShield 2008 Express
Jun 20, 2008
11:39 AM
I have the following in a prerequisite script where I need to execute an application with line parameters: cmdline=" /qb /settings <C:\SQLServerOptions.txt>" /> Using the above, I get an error but I know that the C:\SQLServerOptions.txt file is present and valid. I presume that the error has to do with the quotes. So how do I specify quote-unquote in a prerequisite script?
... View more
Labels
- Labels:
-
InstallShield 2008
Jun 03, 2008
04:56 PM
Thanks heathlmorris. I've used your technique before by compiling an executable which calls SQLEXPR.exe along with the template ini file. But I have no idea how to do the same thing within the script of the InstallShield prerequisite such as : Type="16" Comparison="2" Path="[ProgramFilesFolder]Microsoft SQL Server\90\COM" FileName="sqlresld90.dll" ReturnValue="2005.90.3042.0" /> Type="1" Comparison="2" Path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MYInstance" FileName="" ReturnValue="" /> LocalFile="<ISProductFolder>\SetupPrerequisites\SQL2005Express\SQLEXPR.EXE" CheckSum="2819cb82396a5e17c8ee4bf0d9d9f108" FileSize="0,58064896" /> cmdline=" /qb ADDLOCAL=SQL_Engine,SQL_Data_Files SECURITYMODE=SQL INSTANCENAME=MYInstance SAPWD=MyStrongPwd DISABLENETWORKPROTOCOLS=0 SQLAccount="NT AUTHORITY\SYSTEM" SQLAUTOSTART=1 requiresmsiengine=1" /> Description="This installs for English System locales only." />
... View more
Jun 03, 2008
07:39 AM
The prerequisite script provided for SQL Server 2005 is only valid for systems which have an English (United States) locale. Installing SQL Server 2005 in a multilingual environment requires that the locale be determined within the prerequisite script using nested conditions. How do I do this? I have no prerequisite script editor and no examples to base myself on. Thanks.
... View more
May 31, 2008
07:40 AM
The command line must include : SQLAccount=<NT AUTHORITY\SYSTEM> where I presume that the < and => mean quote unquote. Scripting is not my forte. However you do need quotes. And this will only work for systems with English locales. For other locales, see Books Online or ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/instsql9/html/309b9dac-0b3a-4617-85ef-c4519ce9d014.htm .
... View more
May 30, 2008
07:45 PM
It seems that Microsoft needs different settings in the cmdline arguments for the installation of SQLServer 2005 for different system locales. For an English locale system, the cmdline is: cmdline=" /qb ADDLOCAL=SQL_Engine,SQL_Data_Files SECURITYMODE=SQL INSTANCENAME=MyInstance SAPWD=MyPwd SQLAccount=<NT AUTHORITY\SYSTEM> DISABLENETWORKPROTOCOLS=0 SQLAUTOSTART=1 requiresmsiengine=1" But for a French locale system for instance, the cmdline must instead include SQLAccount=<Autorite NT\SYSTEM> (scripting is not my forte so I am guessing that < and > mean quote unquote). So how can I determine what the system locale is from scripting without using any wizards? BTW, just to be clear, the system locale is the language of the Windows license and has nothing to do with the user-selected locale in the Regional Settings of Windows. Thanks!
... View more
Labels
- Labels:
-
InstallShield 2008
Nov 06, 2007
01:01 PM
I have ISX08 and I am adapting my installs for Vista. When right-clicking on my application folder to get to the permissions and set Full Control, I find that I'm locked out. How do I set full control to all my folders with ISX08? On Vista, I also found that all my apps need to be run as Administrator in order to work properly. Is there any setting that I can set in the application properties to fix this? Thanks!
... View more
Labels
- Labels:
-
InstallShield 2008 Express
Latest posts by WindChaser
Subject | Views | Posted |
---|---|---|
353 | Jul 29, 2021 04:30 PM | |
1933 | Sep 09, 2014 09:18 AM | |
19862 | Mar 19, 2013 02:53 PM | |
848 | Mar 04, 2013 11:44 AM | |
2617 | Mar 01, 2013 08:34 AM | |
761 | Jun 30, 2010 01:10 PM | |
2247 | Jun 29, 2010 11:58 AM | |
478 | May 12, 2010 06:59 AM | |
19896 | Jul 01, 2008 08:54 PM | |
3870 | Jun 20, 2008 11:39 AM |
Activity Feed
- Posted Setup stops after completion of prerequisite installation on InstallShield Forum. Jul 29, 2021 04:30 PM
- Posted Running custom action executable on InstallShield Forum. Sep 09, 2014 09:18 AM
- Posted Download links for SQL Server 2008 R2 Express SP2 With Tools on InstallShield Forum. Mar 19, 2013 02:53 PM
- Posted Re: How to avoid Windows restoring deleted files on InstallShield Forum. Mar 04, 2013 11:44 AM
- Posted How to avoid Windows restoring deleted files on InstallShield Forum. Mar 01, 2013 08:34 AM
- Posted Re: Microsoft download links on InstallShield Forum. Jun 30, 2010 01:10 PM
- Posted Microsoft download links on InstallShield Forum. Jun 29, 2010 11:58 AM
- Posted Re: Silent Setup Including SQL Server 2008 Express on InstallShield Forum. May 12, 2010 06:59 AM
- Posted Easy question re. name of Setup.exe on InstallShield Forum. Jul 01, 2008 08:54 PM
- Posted Easy question re. scripting on InstallShield Forum. Jun 20, 2008 11:39 AM
- Posted Re: Determine system locale for SQLServer 2005 installation on InstallShield Forum. Jun 03, 2008 04:56 PM
- Posted International prerequisite script on InstallShield Forum. Jun 03, 2008 07:39 AM
- Posted Re: SQL Server Express Parameters on InstallShield Forum. May 31, 2008 07:40 AM
- Posted Determine system locale for SQLServer 2005 installation on InstallShield Forum. May 30, 2008 07:45 PM
- Posted Folder and application security settings on InstallShield Forum. Nov 06, 2007 01:01 PM
- Posted Availability of SQL Server 2005 Express SP2 Redistributable on InstallShield Forum. Oct 12, 2007 01:08 PM