Apr 26, 2018
10:10 AM
As you’ve discovered, one can’t pass parameters when calling a PowerShell Script File Name. Do what Dan L. suggested and pass your needed parameters vis [PROPERTIES] Here is a simple PowerShell .ps1 file you can try that gets a property. It includes a MessageBox that comes up in the middle of install that can be used to debug. Also includes a line that writes to the Installer log. If you place this Custom Action in the User Interface sequence you can see the dialog when running in Test User Interface mode. You can also run the script in the PowerShell ISE app. You’ll get an error when it tries the get-property and trace-info as those are InstallShield-only components but it will run and you’ll get the dialog. ## $Value1 = get-property -name INSTALLLEVEL [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") $Message = "INSTALLLEVEL: $Value1 " $Title = "Property Check" $Buttons = "OK" $Icon = "Information" $oReturn=[System.Windows.Forms.MessageBox]::Show($Message, $Title, $Buttons, $Icon) trace-info -LogMessage "INSTALLLEVEL was $value1" ##
... View more
Jun 22, 2017
09:26 AM
As a check I started with a clean VM and did a fresh install of InstallShield2015SP1PremierComp.exe And all the Prerequisite .prq files are present. First, check to see if any or all .prq files are in your InstallShield folder: C:\Program Files (x86)\InstallShield\2015\SetupPrerequisites Next check in your InstallShield IDE: Tools > Options > Prerequisites tab The path to your “Prerequisite File Locations” is correct
... View more
Nov 17, 2016
08:37 AM
Also, check the install log to make sure the Custom Action is indeed not running. Look for: Doing action: xxxCustomActionName Skipping action: xxxCustomActionName (condition is false)
... View more
Nov 15, 2016
11:37 AM
Plus 1 I too would like to see this.
... View more
Oct 03, 2016
09:59 AM
See this thread on the InstallShield 2016 Forum: https://community.flexerasoftware.com/showthread.php?221026-NET-Framework-4-6-2
... View more
Sep 19, 2016
03:11 PM
You can make your own. Start with a blank text file. Cut and paste the section below. Save file with the name: Microsoft .NET Framework 4.6.2 Full.prq Move this file to C:\Program Files (x86)\InstallShield\2016\SetupPrerequisites Open InstallShield, go to Redistributables pane. Microsoft .NET Framework 4.6.2 Full should be visible. Right-click > Download Selected Item… The download link is good as of September 2016. +++++++++ +++++++++
... View more
Aug 16, 2016
03:31 PM
Thesorus, No, is does not replace the “latest” automatically. However, it’s easy to do via command line if your Patch paths are all set up. In interesting note, it’s best if you delete the old “latest” before extracting the new one as the extraction doesn’t overwrite the old files. Here is some example command lines: rd /s /q "%patch_dir%\Latest1" "%root_dir%\Full\Web\DiskImages\DISK1\Setup.exe" /a /s /v"/qn TARGETDIR=\"%patch_dir%\Latest1""
... View more
Mar 21, 2016
02:20 PM
Under Media > Releases > Build tab try Compression = uncompressed or try a different Cab Optimization Type MSZIP | LZX
... View more
Jan 26, 2016
10:26 AM
Seriously?!? Contact Flexera and I'm sure they'll happily supply you with one. http://www.flexerasoftware.com/producer/company/about/contact-us/
... View more
Jan 18, 2016
09:50 AM
Below is the text that can be used to create your own .prq file for the Microsoft .NET Framework 4.6.1 Full Prerequisite. +++++++++ +++++++++ Notes: The Conditions are set for 64bit only, Windows 7, Windows 8, Windows 10 The download location is good as of 18 January 2016. No telling how long it will last. Help: For those new to making a Prerequisite .prq file: On your desktop create a new text file. Rename this file “Microsoft .NET Framework 4.6.1 Full.prq” Copy the above text to this new file. (Between the +++++) Move this new file to folder C:\Program Files (x86)\InstallShield\2015\SetupPrerequisites Open any InstallShield project Go to the Installation Designer tab > Application Data > Redistributables The list should now contain the new entry “Microsoft .NET Framework 4.6.1 Full” To the right of the list it will say “Needs to be downloaded” Right-click on the item Microsoft .NET Framework 4.6.1 Full.prq and select Download Selected Item… This downloads the 66 MB file to C:\Program Files (x86)\InstallShield\2015\SetupPrerequisites\Microsoft.net\4.6\Full\ You should be good. To edit any of the Conditions: Right-click on the item Microsoft .NET Framework 4.6.1 Full.prq and select Edit Prerequisite
... View more
Labels
- Labels:
-
InstallShield 2015
Nov 24, 2015
09:27 AM
Set to Yes. The default "Cache Path" is [LocalAppDataFolder]Downloaded Installations
... View more
Nov 04, 2015
01:59 PM
Have you checked the installer log file to see what file is causing the error? If you search these forums for "1001" you'll get a lot of hits.
... View more
Aug 03, 2015
12:24 PM
Can't understand why a simple Not Installed Didn't work. Try: Not REMOVE ~= "ALL"
... View more
Jul 06, 2015
10:10 AM
Look at Registry Key HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\ In that key use one of the following Name/Data pair: Version < xxx Release < xxx It depends on what exact version of .NET you are installing. Then set your Prerequisite Condition as needed.
... View more
Latest posts by JSClark
Subject | Views | Posted |
---|---|---|
6993 | Apr 26, 2018 10:10 AM | |
1478 | Jun 22, 2017 09:26 AM | |
2071 | Feb 16, 2017 11:28 AM | |
1335 | Nov 17, 2016 08:37 AM | |
1515 | Nov 15, 2016 11:37 AM | |
790 | Oct 03, 2016 09:59 AM | |
2372 | Sep 19, 2016 03:11 PM | |
1473 | Aug 16, 2016 03:31 PM | |
1902 | Mar 21, 2016 02:20 PM | |
895 | Jan 26, 2016 10:26 AM |
Activity Feed
- Posted Re: How to run Installshield 2016 with powershell parameters? on InstallShield Forum. Apr 26, 2018 10:10 AM
- Posted Re: why doesn't Visual studio 2015 prerequisites show up? on InstallShield Forum. Jun 22, 2017 09:26 AM
- Posted Re: Registry key installation requirement on InstallShield Forum. Feb 16, 2017 11:28 AM
- Posted Re: How to condition a custom action to run if a feature is selected for install on InstallShield Forum. Nov 17, 2016 08:37 AM
- Posted Re: Anyway to set the default on components to x64-Bit Component on InstallShield Forum. Nov 15, 2016 11:37 AM
- Posted Re: prq for Microsoft Framework .Net 4.6.2 Full on InstallShield Forum. Oct 03, 2016 09:59 AM
- Posted Re: .NET Framework 4.6.2 on InstallShield Forum. Sep 19, 2016 03:11 PM
- Posted Re: Using IsCmdBld to build a patch (and patch configuration) question. on InstallShield Forum. Aug 16, 2016 03:31 PM
- Posted Re: How to speed up the process of initial dialog (Installscript project)? on InstallShield Forum. Mar 21, 2016 02:20 PM
- Posted Re: i need a serial number 4 this product on InstallShield Forum. Jan 26, 2016 10:26 AM
- Posted .prq for Microsoft .NET Framework 4.6.1 Full on InstallShield Forum. Jan 18, 2016 09:50 AM
- Tagged .prq for Microsoft .NET Framework 4.6.1 Full on InstallShield Forum. Jan 18, 2016 09:50 AM
- Tagged .prq for Microsoft .NET Framework 4.6.1 Full on InstallShield Forum. Jan 18, 2016 09:50 AM
- Posted Re: ARP - Repair Mode doesn't work with Setup.exe on InstallShield Forum. Nov 24, 2015 09:27 AM
- Posted Re: Error 1001. Installer Was Working, Now Isn't on InstallShield Forum. Nov 04, 2015 01:59 PM
- Posted Re: Custom action condition to NOT run on uninstall on InstallShield Forum. Aug 03, 2015 12:24 PM
- Posted Re: Install Condition for .Net 4.5 on InstallShield Forum. Jul 06, 2015 10:10 AM
- Posted Re: Question on SQL SERVER 2008 R2 SP2 Pre-Req Quiet Install on InstallShield Forum. Apr 06, 2015 03:33 PM
- Posted Re: Require vc++ 2013 redistributable merge module on InstallShield Forum. Apr 02, 2015 09:52 AM
- Posted Re: How can I get verbose log without command line? on InstallShield Forum. Mar 30, 2015 12:27 PM