installshield

Installshield not updating related DLLs on minor upgrade

偶尔善良 提交于 2021-02-18 08:04:06
问题 I'm currently working with InstallShield to deploy a .NET Winforms app. I am new to InstallShield and have not enjoyed the learning curve. The Winforms app has three related DLL's which are not getting updated during a minor upgrade. For a minor upgrade I am changing the version from 1.0.001 to 1.0.002 for example. The package code is being changed for each build automatically. I have tried adding the dll's to the [INSTALLDIR] and setting the property to "always overwrite". For some reason

Silent installation with target directory path as parameter

浪子不回头ぞ 提交于 2021-02-11 14:49:12
问题 In my C# app I run some setup in silent mode. the thing is that I want to enable to the user to choose the target installation directory but don't know how. This is the silent install that works fine but installing in the default directory: void RunSilentSetup(string executableFilePath) { ProcessStartInfo startInfo = new ProcessStartInfo() { CreateNoWindow = false, UseShellExecute = true, FileName = executableFilePath, WindowStyle = ProcessWindowStyle.Hidden, Arguments = "/s /v/qn" }; using

How to create log file for a launched setup.exe

给你一囗甜甜゛ 提交于 2021-02-10 20:22:40
问题 I have inherited some InstallShield InstallScript projects. I am currently using InstallShield 2009. I cannot seem to create a log file when I run the setup.exe. What command line options do I need to specify? 回答1: There is no such feature in InstallScript project types. The really good logging is in MSI project types. InstallScript really only has the ability to record a response file and generate a very terse logfile as part of a silent install. (/s /f1 /f2 arguments) Setup.exe Command-Line

how to open a web page on click of button in InstallShield?

岁酱吖の 提交于 2021-02-09 20:40:17
问题 HI, I want to open a web page on click of a button in any dialog that is created in InstallShield. I think it can be created by using custom actions but as I am new in this tool do not find the exact way to achieve this. Please help if anyone have idea for this. Thanks. 回答1: Like epotter mentioned, you could do the following To open a local html file LaunchAppAndWait( "explorer.exe", "c:\temp\readme.html", WAIT ); or to open a remote site LaunchAppAndWait( "explorer.exe", "http://www

Setting Version of InstallShield 2009 InstallScript project from IsCmdBld.exe

久未见 提交于 2021-02-08 17:00:49
问题 I am very new to InstallShield and have inherited a InstallScript project. I have mostly figured out my way around and fixed most of the problems. However, I wish to build this project automatically on our build server with each build of our product. I have this working fine. For some reason, though, I cannot get the version number to increase. I am using the command: IsCmdBld.exe -P <.ism location> -L <some_path_variable>=<some_value> -L <some_path_variable2>=<some_value2> This works.

Setting Version of InstallShield 2009 InstallScript project from IsCmdBld.exe

十年热恋 提交于 2021-02-08 16:59:52
问题 I am very new to InstallShield and have inherited a InstallScript project. I have mostly figured out my way around and fixed most of the problems. However, I wish to build this project automatically on our build server with each build of our product. I have this working fine. For some reason, though, I cannot get the version number to increase. I am using the command: IsCmdBld.exe -P <.ism location> -L <some_path_variable>=<some_value> -L <some_path_variable2>=<some_value2> This works.

Setting Version of InstallShield 2009 InstallScript project from IsCmdBld.exe

China☆狼群 提交于 2021-02-08 16:59:42
问题 I am very new to InstallShield and have inherited a InstallScript project. I have mostly figured out my way around and fixed most of the problems. However, I wish to build this project automatically on our build server with each build of our product. I have this working fine. For some reason, though, I cannot get the version number to increase. I am using the command: IsCmdBld.exe -P <.ism location> -L <some_path_variable>=<some_value> -L <some_path_variable2>=<some_value2> This works.

Setting Version of InstallShield 2009 InstallScript project from IsCmdBld.exe

◇◆丶佛笑我妖孽 提交于 2021-02-08 16:57:04
问题 I am very new to InstallShield and have inherited a InstallScript project. I have mostly figured out my way around and fixed most of the problems. However, I wish to build this project automatically on our build server with each build of our product. I have this working fine. For some reason, though, I cannot get the version number to increase. I am using the command: IsCmdBld.exe -P <.ism location> -L <some_path_variable>=<some_value> -L <some_path_variable2>=<some_value2> This works.

Nested Wow6432Node key in InstallShield

|▌冷眼眸甩不掉的悲伤 提交于 2021-02-07 18:27:51
问题 I have a problem where after my InstallShield project is built and I test the install on a clean 64bit Windows 7 machine, it creates a Wow6432Node key within a Wow6432Node key when I check regedit at HKEY_LOCAL_MACHINE\SOFTWARE. Everything registers correctly and the program seems to run fine. I have made sure that my project is the one that is causing this. I don't want to leave it as it is since it would be silly to have the registry like that. Does anyone know what might have caused this

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 :