The Windows Installer XML (WiX) is a toolset that builds Windows installation packages from XML source code. The toolset supports a command line environment that developers may integrate into their build processes to build MSI and MSM setup packages.
0
votes
0answers
7 views
WIX: Can we upgrade 1.0.0.0 to 1.0.0.1 while changing product code?
I'm asked to upgrade ver 1.0.0.0 to 1.0.0.1. By default, when I tested with a dummy installer, if we change the product code, both 1.0.0.0 and 1.0.0.1 would install side by side.
But if we do the ver ...
1
vote
1answer
24 views
Is WiX compatible with Visual C# 2010 Express?
I downloaded and installed WiX but there are no project templates for it in Visual C# 2010 Express. Is WiX compatible with VC#2010? If so, how can I integrate it?
-2
votes
0answers
135 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 ...
0
votes
1answer
21 views
WiX: Use [ComputerName] with property in Transforms.xml
I need to use the built-in variable [ComputerName] in a property in a Transforms.xml WiX file.
What I'm doing: <Property Id="MYCOMPUTERNAME" VALUE="[ComputerName]" />
What shows up is: ...
0
votes
0answers
16 views
Wix installer unable to uninstall old version
Facing one really strange problem with wix installer.
I am migrating from VSI to wix. VSI installs everything in program files and run one custom action end of uninstall to clear some files. Now when ...
1
vote
2answers
22 views
Check 3rd party software version installed
I'm filling property with installed office version
<Property Id="VISIOVERSION">
<RegistrySearch Id="VisioVersion14x64"
Root="HKLM"
...
1
vote
1answer
15 views
How to create a Wix patch in combination with Heat?
I'm developer on a big system (>100 Projects in Solution, >100 000 LOC, > 10 Services, ...) and did the installation of this system in the past with wix and it worked fine. Now I need a way to patch ...
0
votes
2answers
21 views
Wix Install assemblies to GAC
i'm trying to install dlls to GAC, I get this error:
The assembly is not strongly named or is not signed with the minimal key length.
Code below. How do I get around this?
<Product ...
1
vote
0answers
15 views
WIX: Update progress text while executing one custom action?
I want to update progress text when executing one custom action.
I have done bellowing things:
1. declare my custom action to be deferred
2. use below code to reset the progress bar:
private static ...
1
vote
1answer
23 views
Nested variables in Wix
I am creating a WIX template for my projects to ensure a relatively standard layout.
I have defined a variable to reference the Main Application using <?define MainApp="MyApp"?> where MyApp is ...
1
vote
1answer
33 views
Is there a way to make an installer which can install multiple msis downloading from internet?
Just like WiX installer, I wanna distribute a small setup.exe, while installing, the setup.exe can download the demanded msis from a specified server.
If anyone know how to do, code sample is better.
...
1
vote
1answer
26 views
Wix burn upgrade needs to uninstall both MSI's before upgrading
I have two MSI's; framework.msi and product.msi. The framework.msi installs dll's into the GAC that the product.msi depends on for both install and uninstall.
I've created a BA that chains the two ...
0
votes
0answers
17 views
Add Native DLL to Existing COM+ Application using WIX
I need to add a native DLL to an existing COM+ application while installing some components using WIX. Is this possible? if so how?
I have a component something like this:
<Component ...
-1
votes
0answers
17 views
How to install / uninstall single msi from wix custom bootstrapper bundle containing multiple msi's like add/remove feature of Setup project
I have 2 msi in wix bundle I am using custom bootstrapper of wix 3.7. My Install,uninstall, and cancel command works perfectly. when I am trying to give functionality of add/remove msi from bundle ...
3
votes
1answer
33 views
How to Upgrade Prerequisite software Ms SQL server using Wix
My application Requires MS SQL Server as one of its Prerequisite.Now i want to upgrade the client machine to MS SQL Server 2008 R2 express edition if they have MS SQL Server 2005 express edition. i am ...
0
votes
0answers
27 views
Silent msi install command [duplicate]
I have 10 .msi instalers in a folder.I want to install all one by one silently without giving the source path(Source may be anything like follows E:/MyInstallers or D:/Installers).
How to write a .bat ...
1
vote
0answers
17 views
WIX Web Project installer removes manually added virtual directory
We have a project web installer that installs, upgrades etc. properly. The only issue is that on upgrade we have a problem with a virtual directory created inside the application manually via the IIS ...
1
vote
1answer
17 views
How should DetectCondition be specified for a Burn bundle ExePackage?
In my bundle, I am chaining another burn bundle as an ExePackage.
<ExePackage SourceFile="$(var.DatabaseBundle.TargetPath)"
InstallCommand="/install /quiet"
...
0
votes
0answers
28 views
How to run custom code as part of WiX burn MBA on install-complete and support rollback
I need to embed, invoke and run some custom code as part of my custom managed bootstrapper application, as a post-install step. This custom code is within a class library that I have included as a ...
0
votes
0answers
19 views
WIX : Create virtual directory under other website than 'Default Web Site'
I have created an installer where user has option to select a website from dropdown (dropdown will list all available websites) and provide name for virtual directory.
Code:
<iis:WebVirtualDir ...
2
votes
1answer
37 views
Using Burn as an alternate to Wix Dialogs and Custom Actions
While digging into BootstrapperApplication methods and events, I implemented OnExecuteMsiMessage and I was able to see the messages being returned by my msi during installation process. That also ...
2
votes
2answers
50 views
What exactly does the `-arch` argument on the `candle` command line do?
I'm setting up 32- and 64-bit builds in WiX version 3.7. The WiX documentation is defective in explaining this adequately. In the documentation for Package/@Platform, it says "Use of this attribute is ...
0
votes
1answer
45 views
WIX Order of execution with Custom Action
I have a wix project that installs a web site, a couple of SQL Server databases and configures users etc.
Part of the install creates a database for the ASP.NET membership system using a Custom ...
1
vote
1answer
44 views
How to create a directory in Wix on D:
Using WiX 3.7, I have figured out how to create a folder in the root. This
<Directory Id="ReceivedFilesDir" Name="ReceivedFiles">
<Component Id="ReceivedFilesComponent" ...
0
votes
1answer
29 views
How to determine whether dotnet and VSTORuntime is installed in WIX Bootstrapper
i made a setup file of my Add-Ins project using wix. it has some dependencies like dotNet and VSTO Runtime. so I used Wix bootstrapper to confirm that dependencies must be installed before installing ...
1
vote
0answers
24 views
Name of shortcut created by wix installer to support latin as well as Russian,Japanese and Korean strings
I need to create an installer using wix which would create a shortcut entry. The name of this shortcut would vary with the language property specified by user while installing.
Now I have taken the ...
1
vote
0answers
19 views
Wix Bootstrapper Uninstallation
I need to programatically access the uninstall location of the bootstrapper. I need this information because some files which will be needed by the packages in the chain during uninstall need to be ...
0
votes
1answer
30 views
WIX Continues Uninstall After Failing To Close Application Causing Application to Crash
When closing my application it prompts users to save any unsaved information. When installing a new version of my application while it is running the following occurs:
Start application.
Install new ...
2
votes
1answer
39 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 ...
0
votes
1answer
28 views
Recursivly opening wix bootstrapper
I'm using Wix 3.7's GenerateBootstrapper to generate bootstrappers that I've used in a VS deployment project.
My Bundle.wxs is currently a chain with a single item, referencing my MSI.
...
2
votes
1answer
44 views
Custom Bootstrapper created using wix3.6 is not unistalling the msi
I'm installing my msi package (my.msi) from custom managed bootstrapper
created using wix3.6 burn, the bootstrapper first installs a few prerequisite
packages and then installs my.msi.
The ...
0
votes
0answers
21 views
How to make exe keep on installing sliently after reboot system in wix?
I make a bootstrapper exe installer by wix v3.8,and the code as follows:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" ...
1
vote
1answer
21 views
Disable features during silent installation
I have an installation that contains about 17 features. When running in UI mode user can
disable features. I am using standard Mondo UI.
I want to allow silent installation - meaning, user can ...
0
votes
1answer
40 views
Wix: how to forcefully kill a process/task?
I need to forcefully kill a process that is running in the background before attempting to delete any files, when running an Uninstall from an MSI created with Wix. The main application consist of a ...
0
votes
1answer
35 views
Cannot add reference to WixUIExtension.dll, WixUtilExtension.dll and WixNetFxExtension.dll from VS 2008
I am using Wix 3.7 with VS 2008 and I am trying to add a reference to few WiX dlls so that i can work with UI in my installation. however, I get the following error for each of the following files ...
0
votes
2answers
26 views
Dynamically assigning name to shortcut at run time in WIX
I want to assign different names to a shortcut based on user input. Is this feasible using the WiX toolset? I have tried assigning value of property to Name attribute of Shortcut element but it does ...
0
votes
1answer
25 views
How to create a wix DirectoryCombo element that only shows network shares?
The wix DirectoryCombo element has the attributes Remote and Fixed. By setting the Remote attribute to no, network shares are removed from the drop down list created by this element. Likewise, setting ...
0
votes
1answer
28 views
Setting summary info in MST using WIX
The MST created using wix does not have updated summary information stream values.
//The temp msi (copy of original msi) has updated summary info values
Database d2 = new Database(tempmsiPath, ...
0
votes
1answer
33 views
How does uninstall process work in windows?
When I'm uninstalling a program from control panel how does it know what components and features are installed on the machine? If I have the .msi file I can use ORCA to take a look inside windows ...
0
votes
2answers
33 views
Windows installer database physical location
Where does Windows installer store information about installed programs and components? Is it a file or registry values or something else?
0
votes
1answer
19 views
wix toolset - expected values for ManagedRuntimeVersion / ManagedPipelineMode
I am trying to create an MSI using the WiX toolset. I have a couple questions:
In the WebAppPool documentry there are two Properties: ManagedRuntimeVersion and ManagedPipelineMode. What are the ...
0
votes
1answer
28 views
Change default directory in wix
How do I change the default installation directory (such as D:/ or E:/) in a WiX installer where the components have auto generated guid?
0
votes
2answers
54 views
Wix: Write register entries under HKCU\Software\Classes\Wow6432Node
I have a super simple installer to test if a installer can write register entries under HKCU\Software\Classes\Wow6432Node (the msi is target x86 and I'm testing it on a Win7 x64 machine).
The problem ...
0
votes
1answer
29 views
WIX MSI customaction not running when deployed using Group Policy
I'm using WIX to create an MSI which has a custom action to install a clickonce application. I want to deploy the MSI via GPO. The custom action runs fine when I just double click to run the msi, but ...
0
votes
1answer
25 views
Transition from visual studio to wix installer
I have visual studio installer installs everything in Programfiles. I have done transition and create new WIX installer. Wix installer alone works fine but when I try to upgrade my old version I get ...
1
vote
1answer
15 views
WiX installer and redistribution of libstdc++6.dll from MinGW
I am building a MSI installer with WiX for redistributing my MinGW64 application. This requires to ship MinGW dlls with the executable.
The libstdc6.dll file is not versionned. What is the cleanest ...
1
vote
1answer
16 views
wix generated bootstrapper is not a valid NT application
We generated with WiX 3.7 a bootstrapper exe, and tried it on XP, Win7 and it works fine. But on an NT (4.0) machine we get "... is not a valid NT application" error when starting the exe. Is thre a ...
2
votes
1answer
41 views
Wix 3.6 bootstrapper to just launch msi
I am working with WIX 3.6, it has some great features to create managed bootstrapper application. I have managed to create a WPF ui for that. But, I dont want to create and handle all the events for ...
2
votes
1answer
35 views
Can you include a generated file to a WiX project without adding it as an existing file
We use HEAT to build a file for our web project installer. I want to know if there is a way that I can have the file included in the compilation, but not included in the project.
The reason I need ...
0
votes
2answers
36 views
WiX Installer Spawn an Executable
My questions is simply this, I have a WiX installer .msi that I want to be able to, after successful installation, an executable that runs another installation. Now the reason I need to do this is ...


