Apr 07, 2015
10:08 AM
Hi, I have created a Suite installer project, this installer contains some .exe packages. This exe packages is Installscript MSI projects. The first exe package has a service . I am passing the property value from suite installer to the individual packages as shown Using this property value , if the value is "true", the Service should not start. If the property value is not equal to "true" the service should start as usual. .I have set the condition in InstallScript MSI project in Sequence where we have this service,as shown below Thanks in advance
... View more
Labels
- Labels:
-
InstallShield 2014
Apr 07, 2015
05:30 AM
Hi, I have created a Installscript MSI project with Service(exe) in it and installed with version 1.00.0000. Now we changes the components versions and installer version to 1.00.0002 and installed, Now it is asking for upgrade, so we upgraded, but after upgrade it is asking for System Reboot . We don't want this reboot after the upgrade. Thanks in advance
... View more
Labels
- Labels:
-
InstallShield 2014
Apr 03, 2015
06:28 AM
Thanks a lot MichaelU, It is working fine,I made Install option to yes in LicenseAgreement dialog , even made changes to enable and disable the install button on selection of the radio buttons.
... View more
Mar 31, 2015
10:51 AM
Hi, I am using suite installer which contains three exe packages in it. so while running the suite installer setup , we will get InstallationFeatures Dialog, which will list out all the Features .My requirement is to hide this Dialog while execution, I tried to make Visible as None as shown And now I tried to install the setup, it is not able to get the feature list or Data, it is getting stopped here as shown
... View more
Labels
- Labels:
-
InstallShield 2014
Mar 16, 2015
08:28 AM
Any updates on this issue please
... View more
Mar 03, 2015
10:35 PM
MichaelU wrote: I would expect that, for detection, the Product Version would match the version that's in your Suite (this is easiest to do with the dedicate InstallScript package type, as you can put a * here, or better yet let the empty default detect condition work its magic), with a comparison of Greater Than or Equal To. This will only detect the package if a matching or higher version is installed, allowing it to install over lower versions, and to remove equal or higher versions if uninstalled. Eligibility is different, and while it's useful to reference them to see example condition elements, they may not help you craft a detect condition. @DLee65, your eligibility condition seems a little suspect to me. By having a root condition of Any, you're saying your package is eligible if any of the following are true: a lower version is present, a higher version is not present, the computer is XP SP3, or whatever's in ETC. I would expect you typically want both your Platform and your MSI Package conditions to be true; that would be represented by something more like this: All: Any: MSI Package: ProductCode: *; PackageCode: *; ProductVersion: ; Compare:LessThan None: MSI Package: ProductCode: *; PackageCode: *; ProductVersion: *; Compare:GreaterThan (Prevents overwriting newer installs) Any: Platform: OSVersion: 5.1; ServicePack: 3; ETC (other Platform conditions) Hi MichaelU, One more point is we are using exe packages , not Installscript packages. And * value is not working in exe packages. I tried to fill product code package code in different conditions but nothing worked out for upgradation
... View more
Mar 02, 2015
09:46 AM
MichaelU wrote: If your .exe packages are actually InstallScript setups, we tend to suggest using the "InstallScript package" option rather than the "Executable package." Since you're using an "InstallScript Package" condition to identify whether the package is present on the machine, be sure to fill in the Product Version and Comparison settings so that when version 1.2.3 is present, your suite doesn't think version 2.4.6 already installed just because a package with the same Product Code is present on the machine. Hi MichaelU I fill the Product version to 1.00.0000 and Comparision setting to different values eg:Equal to, Greater than, less than . And tried but its not upgrading, actually I changed the exe package version to 3.00.0000
... View more
Mar 02, 2015
06:50 AM
MichaelU wrote: What do your detection conditions for your EXE packages look like - in particular, do they take into account any version information? From your description, I'm guessing they do not, and thus the Suite is detecting the EXE packages as already installed, and doing nothing. You should be able to confirm this by examining a log generated by /debuglog, or by modifying your conditions. Hi MichaelU, In detection conditions , we are setting it as Any and adding Installscript packages condition in that by filling the product code of the respective exe packages
... View more
Mar 02, 2015
06:36 AM
Hi Hysteresis, They are getting upgrade successfully if we install them stand-alone (i.e. not from the suite)
... View more
Feb 27, 2015
06:31 AM
Hi, I created a Suite/Advanced installer, this installer contains three .exe packages. I am able to install the Suite installer perfectly, but while upgradation the packages are not getting upgraded. Eg: For fresh installation Suite installer version is 1.0.0.0 and the three exe packages' version are 1.0.0.0 , 1.0.1.0 and 1.0.1.0. Now I changed the versions to Suite installer version to 2.0.0.0 and three exe packages to 2.0.0.0 , 2.0.0.0 , 2.0.1.0. Now I installed the suite installer(upgradation). But I could see only suite installer version got chaned from 1.0.0.0 to 2.0.0.0, but the three exe packages versions remain 1.0.0.0 , 1.0.1.0 and 1.0.1.0. Could you please help me out how to upgrade the packages in suite installer while upgradation. Thanks in advance
... View more
Labels
- Labels:
-
InstallShield 2014
Feb 18, 2015
06:06 AM
Thank you Hysteresis, I created an "Registry comparision" Exit condition. It is working grt
... View more
Feb 16, 2015
05:40 AM
Hi , I am using Suite/Advanced installer, I need to check .Net framework 4.5 as a prerequisites. If framework 4.5 does not exists the suite installer should stop the execution. Thanks in advance
... View more
Labels
- Labels:
-
InstallShield 2014
Feb 16, 2015
05:35 AM
Hi , I am working on Suite/Advanced project, in Suite installer I created a installscript file (set.rul) and calling its function as Actions in OnBegin events.And the suite installer contains two exe packages. Inside the installscript I have export prototype MyFunction(OBJECT); function MyFunction(oExtension) STRING szKey, szNumName, svNumValue,szPropertyValue ; NUMBER nvSize,nvType; begin RegDBGetKeyValueEx (szKey, szNumName, nvType, svNumValue, nvSize); SuiteSetProperty ("MyPropertyName", "true"); SuiteGetProperty("MyPropertyName",szPropertyValue ); if(szPropertyValue =true) then MessageBox("Please install exe first",SEVERE); abort; endif; end; My questions are 1)How to add Messagebox in suite installer installscript, 2)After abort the suite installer should not execute any of its packages
... View more
Labels
- Labels:
-
InstallShield 2014
Feb 04, 2015
09:02 AM
Hi, I created DLL function using c#, now I want to use this function in my Suite/Advanced installer, but could not . But am able to call this function in Installscript MSi Projects. Details of DLL file eg: Dll file name:abc.pqr.dll , class:xyz , function:qqq() Below are the following steps followed to call dll function in Suite/Advanced project 1)Created DLL function using c# 2)Added that dll file in Support file-->Language Independent in Suite installer 3)Under Events-->Actions , Right clicked and clicked on New managed code On the right panel of Actions I filled the details File:[SETUPSUPPORTDIR]abc.pqr.dll Class:xyz Method:qqq -------------------------even tried qqq()
... View more
Labels
- Labels:
-
InstallShield 2014
Jan 22, 2015
01:20 AM
Thanks a lot Michael, it is working grt
... View more
- « Previous
- Next »
Latest posts by sureshkottakki
Subject | Views | Posted |
---|---|---|
576 | Dec 08, 2016 12:00 AM | |
1483 | Dec 07, 2016 07:13 AM | |
892 | Oct 12, 2016 07:19 AM | |
2233 | Oct 07, 2016 02:13 AM | |
1317 | Sep 16, 2016 02:21 AM | |
625 | Aug 31, 2016 03:26 AM | |
1763 | Aug 26, 2016 08:46 AM | |
1763 | Aug 12, 2016 06:10 AM | |
1763 | Aug 04, 2016 01:54 AM | |
1317 | Aug 02, 2016 09:55 AM |
Activity Feed
- Posted Re: Import .bas macro to word using Installshield on InstallShield Forum. Dec 08, 2016 12:00 AM
- Posted Import .bas macro to word using Installshield on InstallShield Forum. Dec 07, 2016 07:13 AM
- Posted Re: Publisher name in Installscript MSI project on InstallShield Forum. Oct 12, 2016 07:19 AM
- Posted Publisher name in Installscript MSI project on InstallShield Forum. Oct 07, 2016 02:13 AM
- Posted Re: Run Suite installer in Silent mode on InstallShield Forum. Sep 16, 2016 02:21 AM
- Posted Re: Two SQL Dialogs on InstallShield Forum. Aug 31, 2016 03:26 AM
- Posted Re: Two SQL Dialogs on InstallShield Forum. Aug 26, 2016 08:46 AM
- Posted Re: Two SQL Dialogs on InstallShield Forum. Aug 12, 2016 06:10 AM
- Posted Re: Two SQL Dialogs on InstallShield Forum. Aug 04, 2016 01:54 AM
- Posted Re: Run Suite installer in Silent mode on InstallShield Forum. Aug 02, 2016 09:55 AM
- Posted Re: Two SQL Dialogs on InstallShield Forum. Aug 02, 2016 03:19 AM
- Posted Two SQL Dialogs on InstallShield Forum. Aug 01, 2016 09:27 AM
- Posted Re: Run Suite installer in Silent mode on InstallShield Forum. Jul 28, 2016 08:54 AM
- Posted Re: Run Suite installer in Silent mode on InstallShield Forum. Jul 26, 2016 03:52 AM
- Posted Re: Run Suite installer in Silent mode on InstallShield Forum. Jul 25, 2016 07:22 AM
- Posted Re: Run Suite installer in Silent mode on InstallShield Forum. Jul 22, 2016 07:24 AM
- Posted Re: Run Suite installer in Silent mode on InstallShield Forum. Jul 19, 2016 04:26 AM
- Posted Run Suite installer in Silent mode on InstallShield Forum. Jul 13, 2016 08:55 AM
- Posted Re: Compare .Net Framework version in InstallScript MSI projects on InstallShield Forum. May 20, 2016 09:13 AM
- Posted Re: Compare .Net Framework version in InstallScript MSI projects on InstallShield Forum. May 18, 2016 08:47 AM