Mar 06, 2023
03:02 AM
Thanks anyway.
Shame that we have to tell people they need .NET Framework just for the installer but not the product itself now. Bit difficult to explain, but anyhow.
Our installers are so massive we don't have the time or money to rewrite them into something else so I guess we're stuck with this until we can move away from InstallShield completely. We're still on IS 2012 cause it hasn't really improved in 11 years and it wasn't very good in the first place, but it was good for it's time (20+ years ago). 😉
... View more
Jun 17, 2020
03:25 AM
you could try following codes, i think they will work. SetStatusWindow(30, "");
... View more
Mar 25, 2020
10:00 AM
Hi Mangus,
Since you you no longer have the old machine with InstallShield on it, you will need to contact Technical support using the contact information below. Technical support will help you return your InstallShield, and activate it on a new machine even if you do not have a valid maintenance plan. Support contacts https://community.flexera.com/t5/Support-Information/Support-Contacts/ta-p/94720
Please make sure that you have the activation code that you are using available if need to contact Technical support.
... View more
May 24, 2019
04:31 PM
I too was having the same issue. Remove ALL Com Extract at Build options from your com components. Do this under Installation Designer -> Components for each component. I make sure ALL components have this set to No. Next, for every com component you are distributing you need to open the component (double click) and select files (personally I think it's good practice to have only ONE file for each component). Right-click on the file and make sure Self Register is checked. But First: make sure the file does indeed need to be registered. If you are redistributing controls from a third party not every file will need to be registered. Unfortunately I haven't found a quick way to determine this so I run Regsrv32.exe on every file from an administrative command prompt. If it needs to be registered you will get a success popup box. If it doesn't need to be registered you will get an error about not finding an entry point. That's cool, just ignore it and make sure you do not check Self Register. Note: I have had a couple of components that NEED to be registered not return either a success or error. If that is the case then assume it needs to be registered and check Self Register. Note 2: if your components are 32 bit make sure you are testing with Regsvr32 from c:\windows\syswow64 instead of the one from c:\windows\system32. The one in syswow64 is for 32 bit controls, the one in system32 is for 64 bit controls.
... View more
Apr 09, 2019
06:28 AM
@Magnus : Looks like this issue has been fixed in IS2018 release. IS2016, there were a limitation in number of character passed in command line parameter. Check IS 2018 release note for more information : https://helpnet.flexerasoftware.com/installshield24helplib/rn/ReleaseNotes.htm#isreleasenotes_2630790174_1140855 IOJ-1823277 Calling a Basic MSI setup launcher from a command prompt and including parameters where the entire command exceeds 752 characters results in a “Setup Launcher Unicode Has Stopped Working” error. Although the error is seen, the MSI still launches and does contain all of the properties passed on the command line.
... View more
Jan 21, 2019
06:48 AM
Mounted iso fails to install on reboot The installation of the prerequirement “Microsoft Visual C++ 2017 Redistributable Package (x86)” seems to be corrupt in the following scenario: 1: Install a complete new Windows 10 x64 version 1809. 2: Run our installation (build from InstallShield 2016) from a mounted iso, using Windows 10 build in mounting feature. Several prerequirements is prompted (See attached image img1.png) to be installed. When the “Microsoft Visual C++ 2017 Redistributable Package (x86)” is installing it requests for reboot. 3: After reboot, the user must manually mount the iso again. When restarting the installation (setup.exe) the prerequirement is prompted to be installed again, but this time, this prerequirement reports an installation error. 4: When starting our application, we got error messages (See attached image img2.png) and another message telling “The code execution cannot proceed because VCRUNTIME140.dll was not found.” We have not found any way to solve this or fixed the corrupt installation. Tried to reinstall every prerequirement but noting we do help except for reinstalling Windows. Any help appreciated. /Magnus
... View more
Labels
- Labels:
-
InstallShield 2016
Feb 22, 2016
11:04 PM
Thanks, thats works fine! Regards Magnus
... View more
Dec 19, 2014
02:15 PM
Hi Magnus, I am not sure if your screen shot will work or not. Installshield uses not's to determine what OS are targeted. If you put a condition for w7 then the condition looks like not os1, not os2, not os3. I would suggest just removing any condition that specifies a user is using OS condition. Grant
... View more
Mar 01, 2013
12:41 AM
Solution is found at: http://community.flexerasoftware.com/showthread.php?201770-Minor-upgrade-does-not-work&p=484914#post484914
... View more
Feb 27, 2013
03:59 AM
Try the following Take a copy of Installshield project source files that you used in last major release. Now paste all the changed files for minor upgrade on the location above. And use these files to create a minor upgrade.
... View more
Oct 01, 2012
06:32 AM
When implementing this reattempt loop, the IsCmdBuild.exe successfully build in average on the 3:rd try. for (int i = 0; i < 15; i++) { if (RunCommandIsCmdBuild() == 0) break; } IsCmdBuild.exe => 0 if it has successfully build the installation. 20121001 094715: RunCommandIsCmdBuild(375): IsCmdBuild START attempt: 1 20121001 094715: RunCommandIsCmdBuild(377): WAIT 20121001 094716: RunCommandIsCmdBuild(379): IsCmdBuild STOP 20121001 094716: RunCommandIsCmdBuild(386): Got Error ExitCode: 1 20121001 094716: RunCommandIsCmdBuild(375): IsCmdBuild START attempt: 2 20121001 094716: RunCommandIsCmdBuild(377): WAIT 20121001 094717: RunCommandIsCmdBuild(379): IsCmdBuild STOP 20121001 094717: RunCommandIsCmdBuild(386): Got Error ExitCode: 1 20121001 094717: RunCommandIsCmdBuild(375): IsCmdBuild START attempt: 3 20121001 094718: RunCommandIsCmdBuild(377): WAIT 20121001 094725: RunCommandIsCmdBuild(379): IsCmdBuild STOP 20121001 094725: RunCommandIsCmdBuild(383): Got ExitCode: 0
... View more
Mar 08, 2013
03:49 AM
Yes, I removed the event in the SetupResume dialog and now the installation work like a charm, many thanks for all help I got from you!!! Regards Magnus
... View more
Sep 13, 2011
06:14 PM
It's pretty well agreed in the WiX community that despite what the MSFT directions on MSDN say that a 1:1 file to component relationship with each file being a keyfile in it's own component is the default, general case to start with. There are times when you would steer away from this but this is the best way to start. The question I think the author is asking is how do you go about telling InstallShield that this is what you *WANT* when using the component wizards. I know I've asked in the past for a wizard configuration screen that allows you to define your component rules ( actually different profiles would be nice ) so that the authoring will be exactly the way you want when you do a big drag and drop. In my tool ( IsWiX ) I provide a simple radio selection that asks if you want one to many ( InstallShield / MSFT style ) or one to one ( WiX / MSFT style ) authoring for non-program executable files.
... View more
Latest posts by Magnus
Subject | Views | Posted |
---|---|---|
214 | Mar 10, 2023 11:21 PM | |
268 | Mar 08, 2023 12:40 AM | |
348 | Mar 04, 2023 12:11 AM | |
249 | Mar 03, 2023 11:28 PM | |
733 | Feb 15, 2021 08:57 AM | |
610 | Jun 17, 2020 12:54 AM | |
806 | Mar 19, 2020 02:26 AM | |
1589 | Jan 30, 2019 06:55 AM | |
1460 | Jan 21, 2019 06:48 AM | |
1450 | Sep 20, 2018 07:57 AM |
Activity Feed
- Posted Re: Setup.rul is required for the project. on InstallShield Forum. Mar 10, 2023 11:21 PM
- Posted Re: Setup.rul is required for the project. on InstallShield Forum. Mar 08, 2023 12:40 AM
- Posted Setup.rul is required for the project. on InstallShield Forum. Mar 04, 2023 12:11 AM
- Posted Re: Managed-Code Custom Actions using .Net 5 does not work on InstallShield Forum. Mar 03, 2023 11:28 PM
- Posted Managed-Code Custom Actions using .Net 5 does not work on InstallShield Forum. Feb 15, 2021 08:57 AM
- Posted How to set progressbar value in the SetupProgress dialog on InstallShield Forum. Jun 17, 2020 12:54 AM
- Got a Kudo for Move my InstallShield license. Mar 20, 2020 03:33 AM
- Posted Move my InstallShield license on InstallShield Forum. Mar 19, 2020 02:26 AM
- Tagged Move my InstallShield license on InstallShield Forum. Mar 19, 2020 02:26 AM
- Posted msiexec properties gets corrupt when using command line on InstallShield Forum. Jan 30, 2019 06:55 AM
- Posted Mounted iso fails to install on reboot on InstallShield Forum. Jan 21, 2019 06:48 AM
- Posted Re: Silent installation with redistributables that trigger a reboot ? (2 questions) on InstallShield Forum. Sep 20, 2018 07:57 AM
- Posted Re: The exit or abort statement does not work in Windows 10 on InstallShield Forum. Feb 22, 2016 11:04 PM
- Posted The exit or abort statement does not work in Windows 10 on InstallShield Forum. Feb 21, 2016 11:47 PM
- Posted Re: InstallShield 2014 crashes during build on InstallShield Forum. May 20, 2015 01:22 AM
- Posted InstallShield 2014 crashes during build on InstallShield Forum. May 19, 2015 05:25 AM
- Posted How to configure a Prerequisite to run on any Operating System? on InstallShield Forum. Nov 06, 2014 07:35 AM
- Posted Re: Minor upgrade does not work on InstallShield Forum. Mar 08, 2013 03:49 AM
- Posted Re: Minor upgrade does not work on InstallShield Forum. Mar 01, 2013 05:10 AM
- Posted Re: Minor upgrade does not work on InstallShield Forum. Mar 01, 2013 02:28 AM