-2
votes
1answer
180 views
+100

Complete WiX sample *.wxs to download and install a specific version of .NET Framework if it's not available

There are many incomplete questions and answers about how to download and install .NET Framework(s) if they are not available but none complete code seems to be available on Internet. Can you provide ...
2
votes
1answer
40 views

Is it possible to avoid MAX_PATH limit using WiX variables?

I'm developing a project in WinForms, and I'm on the process of creating an installer using WiX. But when the installer is going to copy a .dll that comes from a really long path, Visual Studio says ...
1
vote
1answer
29 views

Wix check if .net 2.0 is installed without condition the setup

i have a wix project. I want insert in it a check for .net 2.0 that if there isn't in the machine generates a warning and not an error. In that mode the user can continue with the installation and ...
1
vote
1answer
35 views

Wix installer puts DLLs into the GAC and the program folder

I've found that by adding KeyPath="yes" and Assembly=".net" to a DLL component in my Wix XML file, that after I build the installer, and run it, it does indeed install the DLLs I've specified with ...
1
vote
2answers
88 views

WiX bundle for installing .NET

I'm trying to create a bundle for installing .NET Framework 4.0 if it needs to be installed. I realize there are similar questions, but all of the answers are just snippets and don't describe what ...
1
vote
1answer
36 views

How to show log in custom installer in wix

I am making a custom installer in wix. This will have multiple steps for completing the even. Everything is working fine. Now I want the show some message line. Step 1 starting step 1 Running... Step ...
0
votes
1answer
84 views

How do I use Burn to bundle WiX installers? Can I make them both in a single project?

I've been stuck for a while with WiX/Burn lately. My intention is to create an installer that unpacks files and downloads .Net Framework if it is missing. As far as I'm concerned, I should use some ...
3
votes
1answer
85 views

Editing Web.Config Connection string settings with Wix

I am currently attempting to modify my Wix(V3.5) installer to edit the Web.config settings of the .NET application i want to install. This is fine for normal ASP.NET applications but now im attempting ...
0
votes
1answer
69 views

Windows Firewall - how it works [closed]

I have an application, which should connect to web-service and call web-method. Code: private void Button_Click(object sender, RoutedEventArgs e) { ...
0
votes
2answers
47 views

Installing Multiple .Net services with Wix 3.7 only the first one runs

I am installing multiple .net windows services. All the services install all the dependencies in the appropriate folders. However, only the first one will run. The other services give Error 1053: ...
0
votes
1answer
50 views

Do dotNetInstaller exes install as a package or separate products?

Anyone who has experience with dotNetInstaller (http://dblock.github.io/dotnetinstaller/) I have a question. I've previously worked with the WiX bootstrapper which is horrible in many ways but that ...
1
vote
2answers
75 views

Reference version string from another project using WiX

Right now, in one of our WiX installers, we explicitly define the product version string like so: <?define ProductVersion="1.2.3"?> We also use this same version number in the title of ...
1
vote
2answers
58 views

Best deployment tool for windows application with custom requirements?

I am looking for a tool to deploy windows application. My requirement is that I should be able to control the creation of the files and folders in the program files. I need to add my custom actions ...
3
votes
2answers
49 views

How to build a update Notification?

we are currently installing our Program by a wix-generated msi located on a network share. When a new version is ready, I am sending an email to everybody who needs the program. This is clumsy and ...
0
votes
1answer
37 views

Set timeout for shutting down a service in WiX

I have a service that takes between 30-60 secs to stop. When I run the installer and upgrade the service to a new version, I always get the following window (which I verify that the service is stopped ...
2
votes
1answer
185 views

Wix Burn: How to reboot after installing a MsuPackage

I currently have a scenario whereby I need to do the following using burn Install Windows Imaging Component Install Windows Installer 4.5 Install .Net 4 Web Run my installer (created using Wix ...
1
vote
1answer
258 views

WiX Bootstrapper - Install MSI from CustomAction

I have created a Bootstrapper with WiX. It contains a chain with two MSI-Packages. When it is running, It is calling a .NET-CustomAction which is showing a View (like this sample: ...
1
vote
1answer
76 views

WIX relative path ends up being too long

I am getting errors from light.exe that indicate it is having problems locating one of the files in my setup project. Turns out on the PC in question the relative path I am using exceeds 260 ...
0
votes
0answers
47 views

WIX: WixInstaller project doesn't produce an MSI when you build it [closed]

I have inherited a .NET solution which contains a WIX project. When I right click the WIX project and build it, no MSI file is produced. The project properties have output type set to Windows ...
1
vote
1answer
190 views

Wix .net 4 prerequisite

Iam using Wix and I have custom actions written in .net targeting Dotnet 4.0. During the installation , after welcome dlg , the dotnet framework is checked in the system and the dotnetframework ...
0
votes
3answers
170 views

In Wix how do I format version from X.X.X.X to X.X.X

I have a product where the customers expect a 3 part version number like 1.2.3 but internally we use 1.2.3.4. The version is set automatically in the Wix installer, so how do I drop the last number ...
1
vote
0answers
66 views

Wix .NET 4.0.3 for Portable Class Library

I've got a project that contains a .NET Portable Class Library that targets .NET 4.0. My understanding is that this means the client needs to have .NET 4.0.3 installed (KB2468871). How do I detect ...
1
vote
0answers
50 views

Plugin external .dll reference with local-copy false but .dll in different location on users machine

I have developed a plugin for an application. The developer documentation for this application requires that the API file, let's call it API.dll, should be copy-local = false when referenced in my ...
1
vote
1answer
289 views

Build project for Wix installer

I'm trying to create a Wix installer for our app. Wix Project harvest does not work since it only copies the main exe file to the install dir, all dll's etc are not copied. So I was thinking of ...
0
votes
4answers
166 views

What's the best way to manage product keys for code libraries?

Like a lot of modern software companies, my company uses product keys to check what contract a user has for a piece of software. When parsing the product key, I can check what type of product someone ...
0
votes
1answer
36 views

What to modify after forking a .NET/WiX project, so that both original and fork can be installed alongside?

I forked a .NET/WiX product ("SparkleShare") into a completely different product ("CmisSync"). Users should be able to install both products if they wish. Unfortunately, when one is installed then ...
1
vote
1answer
145 views

WIX-Setup Uninstall old version

I upgraded from VS2010 to VS2012. I have a client-application with a setup. I used the Windows-Installer for creating the setup. Now I want to upgrade my project and have the problem that ...
0
votes
1answer
57 views

CultureInfo.CurrentUICulture Discrepency During Install

I am using a WiX installer to deploy my .Net application. I have a custom action to run my application executable with a special parameter in order to copy some localized files to the Public Documents ...
1
vote
3answers
496 views

Generating version number in MSBuild

We have a C# solution with a WiX installer and an MSBuild build script. We're in the process of migrating from SVN to Git. As the fourth part of our version number, we want something that ascends ...
2
votes
1answer
458 views

Embedding .Net Framework setup executable in WIX bootstrapper

Is there some way to embed the .Net framework redist exe (dotNetFx40_Full_x86_x64.exe) inside my wix bootstrapper "Sedtup.exe"? My feature MSI is allready embedded in the Setup.exe. I would like to ...
1
vote
2answers
241 views

Wix Setup Project for Windows Service causes FileNotFoundException

I have created a Wix Setup Project for a Windows Service. On my local developer machine (Windows 7 - 64) it runs and starts without problems. However when I try to install it on a Windows Server 2008 ...
1
vote
1answer
207 views

Wix and Windows Service questions

I have a Windows Service project that contains a WCF(selfhost) service (couple of dll files and a app.config), this is to be insalled with Wix. I have added a reference to my Wix setup package and ...
4
votes
2answers
665 views

Registering a .NET assembly in a COM+ application outside of the GAC

I developed a .NET assembly (.NET 4.0, strong-named) which exposes two Serviced Components. The assembly (dll) is supposed to be hosted in a COM+ application and it is decorated with the COM+ ...
6
votes
1answer
124 views

Do I have to show the .NET EULA if I am bootstraping my install

I am using Wix 3.6 with a BootstraperApplication that will install the .NET 4.0 Client Profile if it is not detected on the users computer. I want to install .NET silently, and only show the progress ...
0
votes
1answer
174 views

Creating Setups in Visual Studio 2012

I have read some blogs which say we cannot create MSI files from VS 2012. I have a below requirement could you please suggest me the recommendation. I should create a setup which will install ...
3
votes
1answer
476 views

Wix bootstrapper won't detect installed .NET framework

I have a Wix installer and bootstrapper application to install my application and a service. As a prerequisite I need the .NET 2.0 SP2 Framework installed and tried to detect that using the following ...
0
votes
0answers
134 views

how to create cab for ActiveX using WIX in VS2012?

I want to create cab file for activex using WIX. My ActiveX is developed in C#.net and I want to create CAB file to load on browsers? While page load it should ask for install ActiveX if it is not ...
0
votes
2answers
95 views

Run an executable during install and delete it after

I have a WIX project and would like to execute a .exe when all the files are copied. But I don't want this .exe to be "installed". How can I do that? The reason is, that my installer drops file in a ...
0
votes
1answer
140 views

WiX: The “ReadRegistry” task could not be loaded from the assembly […] This assembly is built by a runtime newer than the currently loaded runtime

I've developed an application using Visual Studio 2008 targeted at .NET Framework version 3.5. Now I wanted to create an installer for the application using WiX. I installed the WiX toolkit and then ...
0
votes
0answers
59 views

How do I cause an attempt to uninstall my Windows service to fail if another service has a dependency on it?

I have a Windows service (written in .NET) for which I built an installer using WiX 3.7. It serves an infrastructure role, and anyone can write another Windows Service that uses it. Since my service ...
1
vote
2answers
104 views

Wix uninstalls entire website not just application

I've got this below but I want to change it in such a way that it installs the web application to an existing web site. Currently it installs the website and all the files but then on uninstall also ...
0
votes
1answer
147 views

Can Wix 3.6 be used in a self-contained build?

I was using Wix 3.5 in a self-contained build, meaning other developers (and the build server) don't have to install Wix on their machine for the build to work. I tried upgrading to Wix 3.6 but am ...
1
vote
1answer
84 views

Any editors to visually modify Wix templates?

I have tried wixedit and sharp develop and from what I can tell they do not allow you to visually modify the premade templates with a designer. They only allow you to create your own customized ...
1
vote
0answers
42 views

Size and Version fields in Programs and Features

I have wix setup. When I set those properties <Property Id="ARPNOREMOVE" Value="yes" Secure="yes" /> <Property Id="ARPSYSTEMCOMPONENT" Value="yes" Secure="yes" /> in Programs and ...
0
votes
1answer
656 views

Adding WIC as a requirement before .NET 4.0 in WiX Burn custom Managed Bootstrapper

I'm having trouble getting a burn bundle with a custom managed bootstrapper application to launch on certain platforms that do not come with Windows Imaging Component, which is required to install ...
1
vote
2answers
133 views

Wix Start a service conditionally during Patch

I have an MSI installer that installs a Service and by default it is stopped. The user can manually turn it on or leave it stopped. I also have a Patch for the MSI. Problem: When installing the ...
0
votes
1answer
84 views

Wix get user from a running Windows Service

I'd like to know if there is any built-in functionality to obtain the User that is running a Windows Service using Wix 3.5. I have seen this post where it's stated that there is nothing built into Wix ...
3
votes
1answer
759 views

Wix does not uninstall IIS Web Application

I am using Wix 3.5 to build a MSI installer that installs two Web Applications in IIS 7. The user can choose for each application whether to install it under "Default Web Site" or any other existing ...
-2
votes
1answer
125 views

Generate the Unlock key [closed]

I am using WIX and C# custom Action to unlock the products. We have planned to modify our unlock key like (34450-ee33-8736333-30393) from old style. Could you please let me know which algorithm is ...
1
vote
1answer
337 views

Wix Product LaunchCondition if no RegistryValue or RegistryValue is Below 1.3.44

[ I need to get this to work for the Product / .msi directly, not by using Bundle / Burn ] [ Using WiX 3.6 ] Fragment that Puts Registry Value into a Variable <?xml version="1.0" ...

1 2 3