Feb 21, 2013
09:54 AM
Hello, is there a standalone build availabe for InstallAnywhere (like InstallShield) or did I have to buy a full licence for the build server. Thanks. Regards Simon
... View more
Labels
- Labels:
-
InstallAnywhere 2012
Dec 12, 2012
08:42 AM
Hello, thanks for the help. I have retried it with FOO=[BAR] and it is working now. I don't know why it is hasn't worked before. Regards Simon
... View more
Dec 12, 2012
01:14 AM
Hello, thanks for the reply. I'm using a feature prerequisite. I know the suite projects and we are want to use it for our new projects but it isn't working because of some errors. Do you mean that i can only use the properties as a paramater if i run the prerequisite installation with Full UI. Or must the calling installation runs with Full UI? This is true for me. How can i pass the property? Like i have done? FOO=[BAR] Or something else? Thanks Simon
... View more
Dec 11, 2012
01:16 AM
Hello, thanks for the answer but i know this articel and it doesn't help me. I want to launch an msi file. And i know that i can specifiy a parameter in the called msi with FOO=42 int the command line of the application. But what if the value 42 is stored in a property BAR. How can i use it. I tried FOO=[BAR] but this doesn't work. Regards Simon
... View more
Dec 10, 2012
05:44 AM
Hello, is it possible to pass the value of a propertry as a parameter to a prerequisite installation. I now that i have to define them in the "Application to Run" tab in the "Installshield Prerequisite Editor". I also now how to store the parameter in a property of the called msi installer PROPERTYNAME=foo But i don't know how to pass the value of a property of the calling installer as a parameter to the called msi installer. Thanks Simon
... View more
Labels
- Labels:
-
InstallShield 2012
Mar 16, 2012
01:36 AM
Hello Michael, is this a bug or is there someting wrong in my project? If it is a bug is there a workaroung do get this running? Thanks, Simon
... View more
Mar 09, 2012
02:14 AM
Hello, i could not read the property from a custom action. Which hot fix do i need? Where can i find it? And where it is mentioned in the community? Thanks Simon
... View more
Mar 09, 2012
02:12 AM
Thanks this is working. For other user with the same problem. How i solve the problem: I inserted a label with an error message wich i can set visible with a property I changed the Next (Install) Button that i can disable it with a property I'm using the action field of the textbox to call a custom function. In the function i check the input. If it is not valid i set the property to set the label visible and i set the property to disable the Next (Install) button.
... View more
Mar 09, 2012
02:05 AM
Thanks. I have changed it for both packages. but it is still not working. My Test: I have installed it with the Complete Selection and then with Modify i tried to remove FeatureZ_2_A and FeatureZ_2_B. I have attached the logfile. [CODE] 3-9-2012[08:52:37]: Feature FeatureZ_2_A setting parcel states, parent override: no, override state: 0 3-9-2012[08:52:37]: Requesting action state 2 for parcel '{25E3CECA-DC13-48EE-A6A8-FB2AB01BD2EE}' 3-9-2012[08:52:37]: Containing feature is request state change to parcel {25E3CECA-DC13-48EE-A6A8-FB2AB01BD2EE}, feature request: 2 3-9-2012[08:52:37]: MSI parcel detect: condition is overridden by setup.xml detect 3-9-2012[08:52:37]: Preliminary parcel action state: 4 3-9-2012[08:52:37]: Requesting state 2 for parcel feature 'FeatureZ_2_A' 3-9-2012[08:52:37]: Adding feature to selection list (ISParcelFeatureRemove), feature: FeatureZ_2_A 3-9-2012[08:52:37]: Feature FeatureZ_2_B setting parcel states, parent override: no, override state: 0 3-9-2012[08:52:37]: Requesting action state 2 for parcel '{0317C3E9-2292-4967-B6A6-AC0A69845756}' 3-9-2012[08:52:37]: Containing feature is request state change to parcel {0317C3E9-2292-4967-B6A6-AC0A69845756}, feature request: 2 3-9-2012[08:52:37]: MSI parcel detect: condition is overridden by setup.xml detect 3-9-2012[08:52:37]: Preliminary parcel action state: 4 3-9-2012[08:52:37]: Requesting state 2 for parcel feature 'FeatureZ_2_B' 3-9-2012[08:52:37]: Adding feature to selection list (ISParcelFeatureRemove), feature: FeatureZ_2_B 3-9-2012[08:52:37]: Final action state for parcel {25E3CECA-DC13-48EE-A6A8-FB2AB01BD2EE}: 5 3-9-2012[08:52:37]: Final action state for parcel {0317C3E9-2292-4967-B6A6-AC0A69845756}: 5 [/CODE] First the state 2 (The package will run its Modify operation) is requested for the parcels. But at the end they have the state 5 (No action will be performed for the package) What I'm doing wrong? Thanks Simon
... View more
Mar 08, 2012
02:33 AM
Hello, i have two Installer (Basic MSI Project). Each installer has this features. InstallerA: Always_A FeatureX_1 FeatureX_2 FeatureZ_1_A FeatureZ_2_A InstallerB: Always_B FeatureY FeatureZ_1_B FeatureZ_2_B I want to install both with a suite. At the end i want to have a suite with the following feature tree. InstallerA FeatureX_1 FeatureX_2 InstallerB FeatureY Other FeatureZ_1 FeatureZ_2 InstallerA:AlwaysA and InstallerB:AlwaysB should always installed FeatureZ_1 should install InstallerA:FeatureZ_1_A and FeatureZ_1_B FeatureZ_2 should install InstallerA:FeatureZ_2_A and FeatureZ_2_B But i could not get it running. So i tried a simple suite with this features: Always_A Always_B FeatureX_1 FeatureX_2 FeatureY FeatureZ_1_A FeatureZ_1_B FeatureZ_2_A FeatureZ_2_B Installing only the selected features is working. But if i only want remove a few deselected features nothing is removed. Only if i deselect all features from an installer the features are removed. I have attachted my projects. Is it a bug or is something wrong? Thanks Simon
... View more
Labels
- Labels:
-
InstallShield 2012
Mar 05, 2012
05:34 AM
Assuming i have a feature name foo_bar in the suit project. Can i access the information like this? CComBSTR strProperty; spSuiteUIExtenstion->get_Property(L"FEATUREfoo_bar.installState", &strProperty); or [CODE]CComBSTR strProperty; spSuiteUIExtenstion->get_Property(L"FEATURE[foo_bar].installState", &strProperty);[/CODE] In both version i get only an empty string. Thanks Simon
... View more
Mar 05, 2012
05:27 AM
Hello, i have a suite installation and i want to be sure that the format of a value is correct, e.g. only number in a specific range. The textbox ha a property Validate and the descriptions says something about custom validation function when the user changes the control. It sounds like that i can solve my probem with this. But how can it be used. What is signiture of the called function. How is the syntax for the property to call this function. Thanks Simon
... View more
Labels
- Labels:
-
InstallShield 2012
Mar 01, 2012
08:52 AM
Hello, i tried to read this property (ISInstallMode) but i can't get the data. Either it is empty or the property is not available. Thank Simon
... View more
Mar 01, 2012
01:31 AM
Thanks, i will try it. I can't find anyting about this property in the help. Are there more undocumented properties? Isn't there a possibility to access the other interfaces like IBootstrap. Thanks Simon
... View more
Feb 29, 2012
04:48 AM
Hello, i'm writing a custon action dll for a suite installation. How can i get more information of the actual build, e.g. the install mode. There is an interface named IBootstrap which has the method get_InstallMode but i have only the ISuiteUIExtension interface. Is there a way to access more information? Thanks Simon
... View more
Labels
- Labels:
-
InstallShield 2012
Latest posts by sruetzler
Subject | Views | Posted |
---|---|---|
1768 | Feb 21, 2013 09:54 AM | |
1151 | Dec 12, 2012 08:42 AM | |
1151 | Dec 12, 2012 01:14 AM | |
1151 | Dec 11, 2012 01:16 AM | |
2516 | Dec 10, 2012 05:44 AM | |
1054 | Mar 16, 2012 01:36 AM | |
1156 | Mar 09, 2012 02:14 AM | |
806 | Mar 09, 2012 02:12 AM | |
1054 | Mar 09, 2012 02:05 AM | |
2182 | Mar 08, 2012 02:33 AM |
Activity Feed
- Posted Standalone Build on InstallAnywhere Forum. Feb 21, 2013 09:54 AM
- Posted Re: Property as a parameter for a prerequisite parameter msi installation on InstallShield Forum. Dec 12, 2012 08:42 AM
- Posted Re: Property as a parameter for a prerequisite parameter msi installation on InstallShield Forum. Dec 12, 2012 01:14 AM
- Posted Re: Property as a parameter for a prerequisite parameter msi installation on InstallShield Forum. Dec 11, 2012 01:16 AM
- Posted Property as a parameter for a prerequisite parameter msi installation on InstallShield Forum. Dec 10, 2012 05:44 AM
- Posted Re: Suite: Could not uninstall a feature on InstallShield Forum. Mar 16, 2012 01:36 AM
- Posted Re: Get information about suite installation in Custom Action DLL on InstallShield Forum. Mar 09, 2012 02:14 AM
- Posted Re: Validate input of a textbox on InstallShield Forum. Mar 09, 2012 02:12 AM
- Posted Re: Suite: Could not uninstall a feature on InstallShield Forum. Mar 09, 2012 02:05 AM
- Posted Suite: Could not uninstall a feature on InstallShield Forum. Mar 08, 2012 02:33 AM
- Posted Re: Get information about suite installation in Custom Action DLL on InstallShield Forum. Mar 05, 2012 05:34 AM
- Posted Validate input of a textbox on InstallShield Forum. Mar 05, 2012 05:27 AM
- Posted Re: Get information about suite installation in Custom Action DLL on InstallShield Forum. Mar 01, 2012 08:52 AM
- Posted Re: Get information about suite installation in Custom Action DLL on InstallShield Forum. Mar 01, 2012 01:31 AM
- Posted Get information about suite installation in Custom Action DLL on InstallShield Forum. Feb 29, 2012 04:48 AM