installshield-2012

Selecting and install files of only one feature from two different feature conditionally in installshield

心不动则不痛 提交于 2021-01-29 09:22:30
问题 I have three features F1, F2 and F3. User can select only one of feature F1 or F2. F3 is a default feature.Files are distributed between these two features F1 and F2. If user selects F1, files of F1 should be installed. If user selects F2, files of F2 should be installed. Not sure if installshield has an option on this. How can I proceed on this? 回答1: This has been done by adding a radio control in custom setup dialog box with behavior logic of next button set to Event : ADDLOCAL Argument :

InstallShield Template Summary Value AMD64 vs Intel64 vs x64

淺唱寂寞╮ 提交于 2021-01-05 06:54:37
问题 I am setting up my InstallShield to install my package as 64 bit (into Program Files not Program Files x86) by. My processor is: Intel(R) Core(TM) i7-2600 CPU InstallShield => General Information => Summary Information Stream => Template Summary From Intel32;1033 to Intel64;1033 And it gives me the general error message: This installation package is not supported by this processor Then I set the value to: Amd64;1033 or x64;1033 And it magically work. But weird thing is, my processor is Intel,

InstallShield Template Summary Value AMD64 vs Intel64 vs x64

左心房为你撑大大i 提交于 2021-01-05 06:51:54
问题 I am setting up my InstallShield to install my package as 64 bit (into Program Files not Program Files x86) by. My processor is: Intel(R) Core(TM) i7-2600 CPU InstallShield => General Information => Summary Information Stream => Template Summary From Intel32;1033 to Intel64;1033 And it gives me the general error message: This installation package is not supported by this processor Then I set the value to: Amd64;1033 or x64;1033 And it magically work. But weird thing is, my processor is Intel,

InstallShield installer error 2006 with GUI installer

[亡魂溺海] 提交于 2020-01-15 12:27:30
问题 I am trying to run an installer built using InstallShield, and when using the installer in Windows 2008, it works as intended; the same installer running in Windows 2012R2, fails with the message Installer User Interface mode Not Supported The installer cannot run in this UI mode. To specify the interface mode, use the I-command-line option, followed by the UI mode identifier. The valid UI modes identifiers are GUI, Console, and Silent. I am running as Administrator, and I tried using the

Uninstall doesn't delete files within INSTALLDIR - Basic Msi - Installshield 2012

纵然是瞬间 提交于 2020-01-02 04:08:05
问题 I am creating a Basic Msi Installer using Installshield 2012 spring professional . Here i create a folder structure in Application Files as C:\Program files\Test Setup\Productname , Test Setup is the INSTALLDIR , and within this i have sub directories one of which [launch] contains the exe files . I have added these files and the directory sturcture using the Add Files and folders option in Application files menu of Project Assistant. After installing the product , when i uninstall it i find

Is it possible to run a custom action only in repair mode

筅森魡賤 提交于 2019-12-28 07:05:11
问题 I need to run a custom action only during Repair. But I didn't find a valid condition to do so. If I specify a custom action with below condition, it runs in Modify mode as well as in Repair mode. Installed AND Not REMOVE I am using InstallShield 2012 spring. 回答1: Check the REINSTALL property. Conditional statement on your custom action should look like REINSTALL<>"" 回答2: For future reference check these cheat sheets: Installshield condition cheat sheet. How to add a WiX custom action that

Install file create by InstallShield 2012 sometimes did not get the proper INSTALLDIR when uninstall

故事扮演 提交于 2019-12-25 04:40:55
问题 I have one problem with InstallShield 2012. I try to create an install file with InstallShield , this file runs fine in installation period , but when i use this file to do uninstall, it can't get the INSTALLDIR I chosen in UI during the install period. And in additional, if i use the same InstallShield project to create install file, sometimes the output file can uninstall correctly, but sometime are not, i really feel confused. I think the root cause is installer does not get the correct

RollBack Installation if custom action fails [After InstallFinalise] -Basic Msi -Installshield 2012

﹥>﹥吖頭↗ 提交于 2019-12-25 01:45:18
问题 I am creating a basic msi installer using installshield 2012 spring professional , here i have a custom dialog to collect some data from the user based on which i call a custom dll action to create a database inside the installation folder . I have a scheduled a dll custom action to run After InstallFinalise , I want to check the return value from the dll and if the value indicates a failure i need to abort and rollback the installation process. I have managed to catch the error and abort the

How can I use installscript to detect Excel.exe running?

不羁岁月 提交于 2019-12-12 03:35:02
问题 Ive been trying to detect the excel process in my installshield installer. I have a custom action that runs after appsearch and pops a window if it finds the process and displays a warning to the user. I have tried using some old examples I found on installsite.org and using the findWindow() call. Neither seems to find excel.exe in the process list. Here is a snippet of code I was using when trying the findwindow export prototype MyTestFunction(HWND); function MyTestFunction(hMSI) HWND nHwnd;

How to disable an extra window to restart system even after selecting not to do so in files in use dialog in installshield

随声附和 提交于 2019-12-11 02:27:05
问题 I am doing an upgrade for the existing exe file using installshield. when installing the update , in files in use dialog I select the option to automatically close and restart the application instead of the other option to reboot the system. But I get an extra window which tells me to restart the system again after installation is complete. How to disable this window? Please help :) 回答1: You can try to run the installation silently with REBOOT=ReallySuppress (update the paths). Please note