Jan 08, 2010
03:16 PM
You can see which component a website is associated with in the IIS view by selecting a website and look at the Component setting for the site. Then, make a note of this component name and go to the Setup Design or Components view and select the component. In the component settings, you can enter a condition for the component in the "Condition" field. More information on conditional statements can be found in the following article: Conditional Statement Syntax
... View more
Dec 31, 2009
09:20 AM
That's not quite right. If you're doing a minor upgrade (change the version number without changing the product code or upgrade code), you need to set REINSTALL and REINSTALLMODE properties to upgrade, but you can't set them for a new install. (If you wrap the MSI in setup.exe, setup.exe detects the existing product and sets these properties when it launches the MSI.) If you're doing a major upgrade (change the version number and the product code but not the upgrade code), then each install is a new install and your bat file should work. On an upgrade, the MSI will detect the old version and uninstall it before installing the new version. (How it does that is based partly on the location of the RemoveExistingProducts action in the Execute Sequence; you might want to read up on that in the Windows Installer documentation to pick the scenario that's right for your product.)
... View more
May 20, 2010
11:09 AM
Did you ever find out more on this situation? I have a user running Vista with an installer built using IS2009 and I'm seeing this error code.
... View more
Dec 22, 2009
01:58 PM
in the releases view select one of your releases and you should see a series of tabs along the top of the right hand panel, one of those tabs will be "postbuild" if you select that tab and set the value for the "copy to folder" to the location you want it to drop the installers at and set the "Distribute after build" to "Yes" it will copy the installers when the build is complete. in the releases view you have a treeview Releases -+{Product Configuration} --+{Release} The {Product Configuration} and {Release} will be named differently depending on what you named them, but it is the {Release} node you want.
... View more
Dec 17, 2009
06:43 PM
If nothing else, you can use the Search functionality in the Direct Editor view to find occurrences of a path variable.
... View more
Dec 17, 2009
06:31 PM
Perhaps see [post=418185]this post[/post] for a technique you can use.
... View more
Dec 17, 2009
09:37 AM
Those messages come from the Windows Installer engine, and offhand I don't know of a way to change them. The beginning of the log (the first line or so) should indicate the date, however.
... View more
Nov 23, 2009
05:32 PM
If I map "Virtual Directory ->Content Source Path" to a different folder not in IISROOTFOLDER e.g. I map it to ProgramFilesFolder/InstallDir folder. Will this solve the problem? Is there any other way to create a vitual directory for a folder that is not in IISROOTFOLDER? Thanks. naveed
... View more
Nov 23, 2009
01:21 PM
Thanks Alpesh, Detailed log with /v helped. The problem was that .ism file was already open with Visual Studio 2008. I closed the all programs that were using .ism file and then ran the IsCmdBuild.exe; it worked. Yahoo 🙂 Thanks. Naveed
... View more
Nov 11, 2009
06:11 PM
SETUPEXEDIR property is set on the command line to msiexec.exe by setup.exe when the install is run through the setup.exe. This is why this property is undefined when the install is run directly from the MSI file. You may want to use the SourceDir property instead. This is a MSI property that is set by the ResolveSource action. So this means you can use the value of this property to determine the MSI location anytime after ResolveSource action. Note that by default InstallShield puts a condition on this action so that it is only run during a first-time install. SourceDir Property http://msdn.microsoft.com/en-us/library/aa371857(VS.85).aspx
... View more
Mar 30, 2010
06:38 PM
After much trial and error I have finally figured out the root cause of my problem. I was using the SUPPORTDIR pre-defined constant supplied by InstallScript. This apparently changes between the UI and Execute sequences. I've changed our code to pass SUPPORTDIR through CustomActionData. Using the value passed through CAD it looks to be working now.
... View more
Nov 29, 2009
10:06 PM
I have the same problem like you. If I did not mess anything; you do not have to do anything to check anything. The setup will check and will tell you (end user) what you need. If you can see my question to the forum, you would see that I was stating that an error message informed the end user's computer that .net framework (v2.0.5075)is needed to be installed.
... View more
Nov 04, 2009
12:47 PM
Lurean, Thank you for your response. I am a newbie. I need to know what can be done and what cannot be done with InstallShield. Requirements are: Remotely create Db from an .mdf file, for initial install. This will be part of web application installer. Later on, for update install, run SQL Script to update schema with preserving old data. So for initial install I should use .mdf. For later updation installer I can use sql scripts. Please let me know if it will be possible.
... View more
Oct 29, 2009
11:26 AM
You have to do this manually. One approach would be to set registry keys in a known location (perhaps under the application's Uninstall key, or its HKLM\Software\... key), and to read them in with system searches.
... View more
Jun 11, 2010
02:16 PM
And in case anyone is interested I have found that INSTALLDIR is not actually available as a session property until After Cost Finalize. Use of Session.Property("INSTALLDIR") prior to cost finalize returns an empty string. Des
... View more
Latest posts by Naveed
Subject | Views | Posted |
---|---|---|
3553 | May 21, 2010 09:35 AM | |
721 | Jan 07, 2010 02:48 PM | |
2394 | Jan 07, 2010 01:29 PM | |
1000 | Dec 30, 2009 04:16 PM | |
2640 | Dec 30, 2009 10:07 AM | |
1775 | Dec 23, 2009 01:37 PM | |
1155 | Dec 23, 2009 12:27 PM | |
1303 | Dec 23, 2009 11:20 AM | |
1155 | Dec 23, 2009 11:08 AM | |
5782 | Dec 22, 2009 02:38 PM |
Activity Feed
- Posted Re: Installing Certificates (.pfx, .cer) as part of Installer on InstallShield Forum. May 21, 2010 09:35 AM
- Posted Re: How to enable/disable creation of Website / Virtual Directory on InstallShield Forum. Jan 07, 2010 02:48 PM
- Posted How to enable/disable creation of Website / Virtual Directory on InstallShield Forum. Jan 07, 2010 01:29 PM
- Posted Re: How to run Install or update together through bat file on InstallShield Forum. Dec 30, 2009 04:16 PM
- Posted How to run Install or update together through bat file on InstallShield Forum. Dec 30, 2009 10:07 AM
- Posted Re: IIS issues on Vista (Default document and App pool) on InstallShield Forum. Dec 23, 2009 01:37 PM
- Posted Re: Error in building installer with InstallShield 2010 Stand Alone Build on InstallShield Forum. Dec 23, 2009 12:27 PM
- Posted Re: Can not create virtual directory if there is custom error page defined on InstallShield Forum. Dec 23, 2009 11:20 AM
- Posted Re: Error in building installer with InstallShield 2010 Stand Alone Build on InstallShield Forum. Dec 23, 2009 11:08 AM
- Posted Error in building installer with InstallShield 2010 Stand Alone Build on InstallShield Forum. Dec 22, 2009 02:38 PM
- Posted Re: How to change Location of MSI package (release folder) on InstallShield Forum. Dec 22, 2009 11:22 AM
- Posted How to change Location of MSI package (release folder) on InstallShield Forum. Dec 22, 2009 09:54 AM
- Posted How to rename Path Variable? on InstallShield Forum. Dec 17, 2009 04:17 PM
- Posted How to quit installer setup at any stage. on InstallShield Forum. Dec 17, 2009 03:40 PM
- Posted How to show date with log entries in installer log file. on InstallShield Forum. Dec 17, 2009 09:22 AM
- Posted Re: Can Virtual Directory name be different from the Folder name in Physical Path? on InstallShield Forum. Nov 23, 2009 05:32 PM
- Posted Can Virtual Directory name be different from the Folder name in Physical Path? on InstallShield Forum. Nov 23, 2009 05:05 PM
- Posted Re: Creating a Virtual Dirctory with the correct Folder structure, HOW??? on InstallShield Forum. Nov 23, 2009 04:48 PM
- Posted Re: Problem in building project using ISCmdBld.exe on InstallShield Forum. Nov 23, 2009 01:21 PM
- Posted Problem in building project using ISCmdBld.exe on InstallShield Forum. Nov 20, 2009 04:15 PM