The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click
here
for more information.
Type: InstallScript ProjectProblem: During Maintenance Mode, I would like to select a list of features to reinstall. Howerver, the unselected features should not be uninstalled. How do I do this??
Project Type: Install ScriptWhen I click the cancel button during the Installation Dialogue (or move data event): 1. I am prompted with "Are you sure want to exit?". 2. After clicking yes3. The UninstallingFile and UninstalledFile events are called. ...
How do I debug a feature event function? I am trying to determine why my install locks up when the user cancels during the moving data portion of the install. What happens is the following:1. User goes through all of the pre-screening dialogues.2. Us...
I would like to pass more than one feature to SdFeature() using the szFeature string parameter. What is the syntax to accomplish this?Project Type: InstallScript ProjectFailed Code: //Used comma seperated feature namesszFeatures = "Data\\Deploy Data ...
To debug a feature event function, you will need to run the project in debug mode. 1. Click open file (in the debu window)2. Locate your Features.rul file3. Place breakpoints where needed.
I found what caused the issue. I was deploying a feature which contained a .msm package for SQLSMO deployment. If the user cancled the install during the installation phase of the setup, the uninstall could not procress the SQLSMO .msm package. I sim...
The CtrlSetList function places the contents of a string list into the specified single- or multi-selection list box or combo box control. Any pre-existing contents are replaced with the items contained in listID. InstallShield places each element of...
I figured it out. I had to unselect the feature as well as remove the feature using featuresetdata().//Remove FeaturesFeatureSetData (MEDIA, "ProjectConversion", FEATURE_FIELD_VISIBLE, FALSE, szTemp);FeatureSetData (MEDIA, "SQLSMO", FEATURE_FIELD_VIS...