Tagged Questions
InstallShield is a software tool for creating installers or software packages. InstallShield is primarily used for installing software for Microsoft Windows desktop and server platforms, but it can also be used to manage software applications and packages on a variety of handheld and mobile devices.
23
votes
8answers
677 views
Is there any definitive documentation on writing software installers?
I've read a bunch of documentation on installers and haven't come across anything good that explains the underlying concepts. Most of the installer software I've come across is based on the same ...
18
votes
3answers
9k views
How to execute custom action only in install (not uninstall)
I'm sure this is fairly easy, but I've kind of had a hard time with it. I've got a custom action that executes a different (non-msi) installer on installation. Unfortunately, I've noticed that it also ...
13
votes
3answers
130 views
InstallShield battery level warning
Is there any way to display an warning message if the user tries to install my app when the battery level is under 5%? I'm using InstallShield.
12
votes
2answers
542 views
Are Visual Studio Setup Projects suitable for complex setups
Are "Visual Studio Setup" Projects suitable for complex setups in different versions?
The application is rather large (> 500.000 lines of code) and is under continuous development. Every 6 to 10 ...
11
votes
3answers
612 views
How can I detect when the .NET Framework feature is “turned off” in Windows 7 / Vista?
My application requires the .NET Framework version 3.5. I recently ran into a customer that had the .NET Framework installed but turned off on Windows Vista (also applies to Windows 7).
In this ...
9
votes
5answers
4k views
Switching from InstallShield to WiX
I am looking for a replacement for InstallShield. Unfortunately we only have 1 license for InstallShield and it was installed on a developer's machine. I'm considering switching over to WiX, but after ...
6
votes
1answer
627 views
Bootstrappers that download packages over the web from Microsoft
What are the best practices for creating internet download bootstrappers that reference Microsoft packages?
For example InstallShield has a Setup Prerequisite that can download vstor40_x86.exe from ...
6
votes
3answers
873 views
Installer capabilities, WIX vs InstallSheild express
Programmers that actually promote their products to production need an installer. (pre-emptive "programming related" justificaton.)
For deploying a new suite of internal corporate apps and services, ...
6
votes
4answers
364 views
When installing different technologies on clients, should I just use InstallShield?
I'm currently doing some investigation on moving off of the installation package we currently use (Wise Installer 9) and moving to something that will handle things like Windows Vista, Windows 7 and ...
6
votes
1answer
4k views
Installshield 64-bit project setup
What is the best way to use InstallShield to generate installers for both 32 and 64-bit environments? The majority of my application is bit-neutral (.net, Java, data files). I would prefer it if I ...
6
votes
5answers
4k views
chained msi's/Bootstrapper/prerequisite?
I have a few component msi packages that need to installed together to form the end application.
The problem is: the components that make up the package can be updated and the component relaunched ...
5
votes
4answers
548 views
Where do you store the private key for your code signing certificate?
I recently acquired a code signing certificate for my employer, but I am not the InstallShield developer who will sign the binaries before distribution. I know I can export the certificate along with ...
5
votes
2answers
1k views
InstallShield 2010 with license - no license for automatic build system (CI) as Windows service
I really need help here.
We are using CI build-process (Hudson) as an automated build system using Msbuild.
The CI run in Apache Tomcat 6 that run under the credentials of a domain user (not a local ...
5
votes
5answers
387 views
Windows application installer frameworks
It's always seemed strange to me that downloadable applications would offer multiple types of installers. For example, sometimes you can choose either a .exe or a .msi
Do certain types of installers ...
4
votes
1answer
173 views
Can i include the “vcredist_x86.exe” in my setup
I have an application developed using c++\cli on vs2008. As you are aware to deploy this application on any machine, i need the vc++ redistributable to be installed on the target machine.
I wanted to ...
4
votes
2answers
174 views
Show message “Setup requires a 64Bit processor” from InstallShield in basic MSI project
I am using InstallShield 11 and creating a basic MSI project for a 64 Bit machine.
When I run my setup on a 32 Bit machine, the Windows installer shows a message that
This installation package is ...
4
votes
1answer
956 views
set “run as administrator” flag programmatically
Is it possible to programmatically set the "Run As Administrator" flag on exe file or shortcut file?
Does Installshield support this functionality if i'll do it as part of the installation process?
...
4
votes
4answers
850 views
Prevent .NET config file being overwritten during install
I'm using InstallShield 2010 Express to install a .NET WinForms app. The latest InstallShield project is a major upgrade, so I've used the Upgrade Paths section to allow upgrades from earlier versions ...
4
votes
1answer
1k views
Choosing an InstallShield project type
I am about to start a new InstallSheild project. It looks like there are three choices for the project type, MSI, InstallScript, and InstallScript-MSI. How should I choose which one to use?
3
votes
6answers
94 views
Questions about a Windows Service that is mostly idle
I have a Windows Service that is meant to run a 2-minute job once a day. The remaining 23:58 of the day, it just sits around looking pretty.
My question relates firstly to the idle time: is it ...
3
votes
4answers
202 views
Is there a way to avoid UAC for autorun app in Program Files?
Firstly I want to emphasize that I'm not trying to do anything "nasty" or "hackerish", nor am I trying to hide anything from user here.
During installations (using InstallShield LE) of my application ...
3
votes
2answers
188 views
What are some good alternatives to InstallShield?
After using InstallShield on many projects (over many years), I am throwing in the towel: Recent versions of InstallShield are too hard to use, slow to develop with, too complex, and too buggy.
I'm ...
3
votes
2answers
388 views
What is the MSI component generation best practice?
Visual Studio Installer states that it is a best practice to install each file as an installer component. The heat utility provided with Wix also seems to follow the practice of putting every file in ...
3
votes
3answers
3k views
How to add .NET Framework 3.5 and other prerequisites to InstallShield project
I can create setup file in InstallShield 2009
I don't know how to add the .NET Framework 3.5 and other prerequisites to the InstallShield project.
3
votes
4answers
795 views
Embedding SQL Server into a .NET application
Hey, I've just finished writing a VB.NET application. Now I want to package the executable and the database ofcourse into a single installer file. I tried using QSetup, InstallShield to make SQL ...
3
votes
1answer
415 views
Global String in Installshield
I am trying to do have a global string in Installshield so I can access it in multiple places. This is my first run at scripting in it. Here is what I have:
STRING DIR;
....
DIR="c:\\tempdir";
...
3
votes
2answers
2k views
Register assemblies to GAC using InstallShield
I have to register multiple assemblies to GAC using InstallSheild and also I need the assemblies to be copied on the INSTALLDIR also. What's the best way to do it? Also I need to call regasm.exe for ...
3
votes
13answers
4k views
InstallAware vs InstallShield vs Other
Which is better? Has anyone used both?
I would welcome any advice as we are trying to decide which one (or any other installer options) to purchase.
EDIT:
After looking into this I found that ...
3
votes
1answer
1k views
Set registry key through ClickOnce installation
I need to add my application to the startup and hence, need to set the Registry Key with the Installation path. I have got this working through the Visual Studio Setup project but can't figure out how ...
3
votes
7answers
803 views
Is Installshield the only way to go for Delphi Installations?
Or is there anything cheaper and better?
I am still using the Installsheild express (Borland Limited Edition) as supplied with Delphi 6 :) but I "feel" that I should update it – am I going to gain ...
3
votes
4answers
254 views
Unwanted Dependency on .NET Framework
I have moved my Microsoft Visual Studio 6.0/C++/MFC application to Visual Studio 2008 SP1 using the new MFC Feature Pack classes. I explicitly use nothing from the .NET Framework. However, we have ...
3
votes
2answers
229 views
InstallShield 2009 Pre install
Is there any option to copy some of the files (pre installation) to the system before onFirstUIBefore() method. These files are also part of installer.
I am using install shield 2009 and project type ...
3
votes
4answers
3k views
Always update files in minor upgrade (how to)
I am creating an install package using InstallShield Pro X. The upgrade works properly. However, the product manager wants the upgrade to replace all files on an upgrade even if the create date != ...
3
votes
2answers
8k views
How can I programmatically determine if the Visual C++ Runtime 8.0 is installed?
I have an InstallShield installation that uses custom actions that depends on the Visual C++ Runtime 8.0 sp1. In the past, I was able to install the runtime using the merge module provided by ...
2
votes
2answers
87 views
TFS 2010: Perform different builds and command line task in sequence?
my build process with TFS 2010 should perform different task one after the other like:
Build 1st project in solution
Execute MSBuild via command line (to publish the project)
Execute a 3rd party ...
2
votes
2answers
52 views
How do I modify a registry value during uninstall (Basic MSI project)
I have a registry value that I set to 1 during installation. What I want to achieve is that during uninstall this value should be set to 0 instead of being removed.
How do I get about doing this?
I ...
2
votes
1answer
37 views
Multiple installs Installshield 2010
I'm trying to create an installation and ask the user within my installer if they want to install two additional programs using check boxes. The installer should then start the installation based on ...
2
votes
2answers
82 views
Install Dotnet after installing own pakage in installshield?
I have problem with Install-Shield. I create package to install my project and then use JS (JavaScript in Install-Shield) for checking Dotnet frame work and if it isn't exist install Dotnet. so that ...
2
votes
2answers
82 views
InstallShield, update files that were modified
I'm using InstallShield in order to create an installer/updater for an application (Basic MSI). I have installed an application (version 1) with the installer and then manually modified some files. ...
2
votes
2answers
63 views
How to update assemblies in existing MSI?
We have existing MSI created using InstallShield 9.0. This MSI installs some .NET assemblies in target installation directory.
We have changed some functionality of application and so a few ...
2
votes
4answers
128 views
Create an installer program: read a path to install to, from registry key (something like wix/installshield/nsis)
I would like to create an installer of my program.
However because the installation is quite complicated, I need something more advanced than installshield limited edition.
I have to run another ...
2
votes
2answers
116 views
Nested Wow6432Node key in InstallShield
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 ...
2
votes
1answer
77 views
Why would InstallShield be unable to find a file?
I have an InstallShield (InstallScript) installation, created using IS2009, that's built automatically every night, and has been used successfully for years. A few days ago, installs started failing; ...
2
votes
2answers
44 views
How to get the file name of the file which is being installed?
How to get the file name of the file which is being installed?
I want to check if the file being installed is already at the destination folder and rename the existing one to some other name. Is ...
2
votes
1answer
61 views
How can I detect if OS is Windows 7 Embedded from an Install Condition?
I have an installation package that I want to only install if it is currently being installed on an embedded version of Windows 7. I was hoping to check the WindowsBuild property in my Install ...
2
votes
1answer
85 views
InstallShield - How to display Product Code on Install Dialog
This is probably really obvious, but for the life of me I can't figure out how to do this.
I have a Basic MSI install package created in InstallShield 2011. I haven't been able to figure out how to ...
2
votes
2answers
211 views
Installshield/MSI Install temporary file during uninstall process
I have an install project that runs a custom action. The custom action itself uses some temporary files that are copied by the installer before the custom action is called. The files are deleted after ...
2
votes
1answer
53 views
How to detect (from installer) if SQL Reporting is installed in the server?
I'm working on a Windows Installer project (via InstallShield) that will perform some work with SQL Reporting Services.
Does anybody know what is the safest way to detect if SQL Reporting services ...
2
votes
1answer
123 views
Installshield 2009, prevent reinstall of feature during MSI repair
I have a MSI package which on first install will install an SQL script onto an SQL Server. This works fine using the SQL Script feature within Installshield.
During a repair of the MSI, the SQL ...
2
votes
1answer
171 views
How to configure an InstallShield 2009 project to run on 32- and 64-bit systems
I have a 32-bit application that I'm packaging with InstallShield 2009 Premier. I would like to be able to install it on 32- and 64-bit machines, but the InstallShield installer doesn't seem to be ...