6
votes
1answer
546 views

Create EventLog source in WiX without an event message file

I've seen a few questions here and there about creating event log sources using WiX. What puzzles me is why util:EventSource/@EventMessageFile is required. It's annoying having to specify it when you ...
2
votes
3answers
5k views

Wix - Custom installation directory

I'm using Wix 3.x and the user should be able to choose the target directory. My Setup.wxs is currently like here: http://pastebin.com/uH1EjbDQ What is the simplest way to ask the user for a custom ...
2
votes
1answer
1k views

changing existing COM+ applications identity via vbs script

How to changing existing COM+ applications identity via vbs script. like Authentication level = none and identity to this user via vb scripts. found many posting on add/delete com+ applications but ...
0
votes
2answers
146 views

Is it possible to run Managed custom action which is written by .net 2.0 in WIx 3.0 on a machine which only installed .net 4?

I am using Wix 3.0 and developed a managed custom action which dotnet framework version is 2.0. Now, I faced a problem. This custom action can not be run in dot net 4.0 only machine, say WinXP SP2 + ...
0
votes
1answer
389 views

how to update product.wxs file dynamic

i want to make an application which includes dynamic screensaver. User can select multiple images from their PC and generate swf file. so i want to include swf file and images in the wix project ...
2
votes
1answer
543 views

WIX 3.0 Generate Features from .NET projects

I have a large .NET source tree (185 C# and VB projects, of which 60 are apps or websites) that i want to create a wix setup for. The general idea is to have 1 setup msi and to make each executable a ...
1
vote
4answers
984 views

Wix File element Source set to installed file

I am installing files to \MyApp. I want to add some of these files to GAC. How could i refer to the installed location in source attribute of the File element ( which has assembly set to .net) to ...
7
votes
3answers
4k views

WiX: How to register application to start when Windows launches?

I'm exploring distribution of .NET desktop applications with MSI generated by WiX. So far it works great. But I've got a few questions, googling can't help out with. What's the advised way of ...
2
votes
2answers
719 views

Detect if an assembly is in the GAC via WiX 3?

I'd like to detect in WiX 3 (preferably via a Condition) whether a particular assembly is in the GAC. I know the name, version, and public key token of said assembly. Is there any built in way to do ...