Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
156 views

Launch condition to ensure that 64-bit installer is used on 64-bit system

What's up with my launch condition? It's supposed to prevent the x86 installer from running on a 64-bit system, but it seems to have no effect. <!-- Launch Condition to check that x64 installer is ...
2
votes
1answer
194 views

How do I add launch condition for Windows 7 and above in setup project (VS 2010)

I am creating a Setup project using VS 2010, where I want that setup should run only if it is running on Windows 7 or above operating system. How can I add a launch condition for this in setup and ...
2
votes
1answer
237 views

Skip installation of certian custom action based on condition

I'm completely new to Windows Installer, so please be gentle! I want some drivers to be installed when my customers installs my program. If the drivers already is installed, however, I want the ...
2
votes
2answers
122 views

What do I need to check to ensure that an Uninstall is being run?

I need to set up a launch condition in my installer to prevent the user from running the MSI file directly unless they are running an uninstall. (All other types of install should be run from the ...
2
votes
1answer
1k views

Sequencing custom action in WIX before “LaunchConditions”

HI All, Is it possible to sequence a custom action before "LaunchConditions"? This is my custom Action: <CustomAction Id="CA_vcAppRunning" BinaryKey="vcShowMsg" DllEntry="IsAppRunning" ...
1
vote
2answers
463 views

Launch Condition - Check if a service is running

In VS2008, how can I check whether a windows service is running int he launch condition?
1
vote
2answers
197 views

Free launcher or bootstrapper that checks OS Version or whether .net framework installed

I look for a free launcher or bootstrapper that checks whether the .net framework is installed, and starts my app1.exe, or app2.exe if not. Alternatively a louncher that checks for the OS version.
0
votes
1answer
127 views

Wix: Custom Action to read version text from file and set launch condition

I've got a Wix situation that seems like its solution might be the combination of several steps. I just don't know what the steps are or how to contruct them. My installation depends on a certain ...
0
votes
1answer
131 views

HttpRequest Timeout exception when making http request from a class inherited from System.Configuration.Install.Installer

I want to launch an EXE after completing the installation, so I wrote a custom launch condition like below: [RunInstaller(true)] public class InstallerClass : ...
0
votes
3answers
539 views

How can you access the TargetPlatform property in a Launch Condition?

I'm trying to access the TargetPlatform property value (which you can set in a Deployment project) from the condition within a "Launch Condition". Basically I'm trying to tell the application not to ...
0
votes
0answers
390 views

How to set Registry Based Launch Condition in c#.net Desktop application setup

Please tell me how can i add such a launch condition to my desktop application setup (.net) so that, Only install the software if the revision level is high than that shown in the registry file. Where ...
0
votes
1answer
781 views

How To Use Launch Conditions in Visual Studio .NET

How do you use Launch Conditions in Visual Studio .NET for oracle data provider when set variable in setup web application equal oracle?
0
votes
1answer
1k views

Creating a future proof .NET 3.5 SP1 installer prerequisite for setup.exe AND the .MSI

I've demanded .NET 3.5 SP1 a la http://stackoverflow.com/questions/88136/will-a-vs2008-setup-project-update-net-3-5-sp1. This makes the setup.exe check correctly. I've also added a "SP1" launch ...