Questions tagged [launch-condition]

20 questions
0
votes
1 answer

How to check .Net Core version in launch condition of Visual studio setup project

I am trying to make an installer on Visual studio for my C# project that is dependent on .Net Core 2.1. I know I need to look in file directory "C:\Program Files\dotnet\host\fxr" to check if the .NET core is installed or not. but is there a way we…
0
votes
1 answer

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 Will a VS2008 setup project update Net 3.5 SP1?. This makes the setup.exe check correctly. I've also added a "SP1" launch condition to my MSI so it doesn't let the user install my .NET 3.5SP1 app via launching the…
0
votes
2 answers
0
votes
1 answer

Cannot read registry in VS2010 Setup Project Launch Condition

the installer won't proceed please help. I believe I did everything right but I don't know what seems to be wrong in the registry settings. Am I missing something? I've uploaded a photo of my case, please…
0
votes
1 answer

Check if OS is 32 bit or 64 bit before application install in C# windows application

I want to validate a 32 bit application install on a 64 bit machine where I need to show some information to the user before installing the application. Is this possible? I am using the launch condition (Not VersionNT64) for 32 bit and (VersionNT64)…
1
2