[WiX-users] Strange request I know...

2011-01-25 Thread Reggie Burnett
We are building a type of 'universal installer' for a set of our products. This universal installer is a .NET app that manages a cache of MSI files located in ProgramData. Management wants to deliver the product in a MSI bundle that would install the binary as well as populate the cache with

Re: [WiX-users] Question about dynamically defining a version var

2009-02-27 Thread Reggie Burnett
: > Reggie Burnett wrote: >> By using the warning element I can see that my RetrieveIdentities >> target is running.  I'm trying to use my version property here >> >>   >>     Version=$(CurrentVersion) >>     >>   >> >> But this doesn'

[WiX-users] Question about dynamically defining a version var

2009-02-26 Thread Reggie Burnett
I want my installer wix project to retrieve the version # of a built assembly and then use that for the version in the installer. I am using preprocessor variables in my wix code and that all works great if I use the command line. In my installer msbuild project I have the following target

Re: [WiX-users] Getting the version from the Assembly file

2009-01-15 Thread Reggie Burnett
I ship 4 binary components that all have the same version so I use a small snippet in my msbuild script that reads the version # from one of the components and then passes that into to wix through a preprocessor var. On Tue, Jan 13, 2009 at 6:44 PM, Michael Osmond wrote: > Colin, > > You can set

Re: [WiX-users] CustomAction console application in C# for WIX installer

2008-12-21 Thread Reggie Burnett
I wouldn't use the vbs CA due to problems with virus scanners On Sat, Dec 20, 2008 at 9:48 PM, siaj wrote: > Hello, > > > > I know custom Action in managed code is discouraged but to be more specific > I have a requirement of doing SharePoint specific operations like creating > groups, registerin

Re: [WiX-users] Custom action console window

2008-12-20 Thread Reggie Burnett
Use the QuietExec custom action. On Sat, Dec 20, 2008 at 2:06 PM, Alex Ivanoff wrote: > Is there a way to suppress console window that pops up for a custom > action that is an console executable? > > -- >

[WiX-users] Can I not use directorysearch like this?

2008-04-25 Thread Reggie Burnett
Guys We want to use directorysearch to find out if the directory selected by the user already exists. We want to set a registry to 1 if the directory exists and 0 if it does not. We thought the following wix v2 snippet would do it but it appears to not be working. Any idea why? Not E

[WiX-users] How to tell what Windows installer version will be needed?

2008-01-09 Thread Reggie Burnett
I have an installer that used to work ok on windows 98 but is now causing a problem. It's probably due to me moving from wix v2 to wix v3. How can I tell what features of MSI I am using that is causing a problem on Windows 98? Thanks Reggie --

[WiX-users] How to tell what Windows installer version will be needed?

2008-01-09 Thread Reggie Burnett
I have an installer that used to work ok on windows 98 but is now causing a problem. It's probably due to me moving from wix v2 to wix v3. How can I tell what features of MSI I am using that is causing a problem on Windows 98? Thanks!

[WiX-users] next weekly release

2007-12-13 Thread Reggie Burnett
I saw that the bug where using the perfmon stuff was not working has been fixed. It was fixed on 12/2 so I was wondering if anyone knows when the next weekly release is coming out. I'm hoping to avoid having to build it myself. :)

[WiX-users] Sorry for the double post.

2007-12-05 Thread Reggie Burnett
Didn't think the first one made it out. - SF.Net email is sponsored by: The Future of Linux Business White Paper from Novell. From the desktop to the data center, Linux is going mainstream. Let it simplify your IT future. htt

[WiX-users] Installing a help collection for VS2005 and VS2008 from same MSI. Possible?

2007-12-05 Thread Reggie Burnett
I want to include documentation for my product in the V90 and V80 collections (for Vs2008 and vs2005 respectively). Does this involve including both VSIPCC_Collection_Files_RTL_---_---.msm files (the one from the VS2005 collection and from the VS2008 collection)? Will this even work? -

[WiX-users] Registering help for VS2005 and VS2008 from same MSI

2007-12-05 Thread Reggie Burnett
I want to include documentation for my product in the V90 and V80 collections (for Vs2008 and vs2005 respectively). Does this involve including both VSIPCC_Collection_Files_RTL_---_---.msm files (the one from the VS2005 collection and from the VS2008 collection)? Will this even work? -

[WiX-users] Validation failing on Wix v3 generated MSI

2007-09-10 Thread Reggie Burnett
I have an MSI that I generate using a fairly recent Wix v3 weekly build. Once I add in the following merge modules and add them to a feature I get several new validation errors. Can anyone explain why I get these? Here is what I added to my wxs files. [this was added to a DirectoryRef element

Re: [WiX-users] Rollback not rolling all back

2007-08-22 Thread Reggie Burnett
on <[EMAIL PROTECTED]> wrote: > > Reggie Burnett wrote: > > That explains it. However, it's still contradictory to users when the > > installer clearly tells them that no changes have been made to their > > system and that is a lie. :) > > It's true as

Re: [WiX-users] Rollback not rolling all back

2007-08-21 Thread Reggie Burnett
On 8/20/07, Bob Arnson <[EMAIL PROTECTED]> wrote: > > Please keep *wix-users* on the thread. > Oops. I hit reply instead of reply all. Sorry Reggie Burnett wrote: > > Sure. However, what didn't roll back was not a custom action. A custom > action failed and i

[WiX-users] Rollback not rolling all back

2007-08-20 Thread Reggie Burnett
I have a Wix authored install that is very simple. It installs a .NET assembly into the GAC and also into a folder and then attempts to run installutil on the assembly in the folder. THe installutil run failed due to some directly problem (I think). The installer gave me the stock 'program fail

[WiX-users] MSI not in Add/Remove

2007-08-17 Thread Reggie Burnett
How can I author an MSI file that will not appear in Add/Remove programs when installed? I'm wanting to use an MSI for integrating some help into Visual Studio but it's controlled by a different installer so I don't want the help MSI to be in Add/Remove. Thanks ---

[WiX-users] v3 light crashing with DirectoryNotFound exception

2007-07-19 Thread Reggie Burnett
This is unexpected because I'm been running v3 Wix now for several months. I installed it this morning into a Win2k3 image and now my project is giving me a DirectoryNotFound exception when light is run. Here is the stack trace: [exec] light.exe : error LGHT0001 : The system cannot find the

[WiX-users] Removing the license dialog

2007-05-23 Thread Reggie Burnett
I'm using wix v3 and the mondo ui style. I want to not show a license agreement dialog. Here's the snippet I've included to try and do that. 1 1 The installer correctly goes from Welcome to setuptype but hitting back at setuptype lands me back on license agreement. Any i

[WiX-users] HxS merge module errors

2007-01-25 Thread Reggie Burnett
I saw some mailing list posts about the foreign key errors that are given when you try to use light v3 to link in the HxS help merge modules. Just wondering if anyone else has been able to solve this. Thanks Reggie - Take

Re: [WiX-users] help Managed Custom action

2006-10-27 Thread Reggie Burnett
] [mailto:[EMAIL PROTECTED] On Behalf Of Reggie Burnett Sent: Friday, October 27, 2006 11:53 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] help Managed Custom action   I’m trying to get an Installer class derived class to start executing during install of my assembly.  I’ve searched

[WiX-users] help Managed Custom action

2006-10-27 Thread Reggie Burnett
I’m trying to get an Installer class derived class to start executing during install of my assembly.  I’ve searched and read countless websites and thought I had things setup properly.  I’m including InstallUtil as a binary stream in my assembly along with a config file that sets up .NET 1.

Re: [WiX-users] Adding a page to a wixui installer

2006-10-24 Thread Reggie Burnett
and next for setuptype and verifyready.  This allows my installer to be built without modifying the source of WiX.    From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Watson Sent: Tuesday, October 24, 2006 12:15 PM To: 'Reggie Burnett'; wix-users@lists.sourc

[WiX-users] Adding a page to a wixui installer

2006-10-24 Thread Reggie Burnett
      I’ve recently started using the WiXUI library for our installer and need to add a custom dialog page to the install.  Is there some documentation for how to do this or can someone give me some pointers?   Thanks Reggie --

Re: [WiX-users] Checking for .NET 2.0 or 1.1 installed

2006-10-23 Thread Reggie Burnett
Thanks.  I appreciate the code snippet.  It saved me some time.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Friedrich, Oliver Sent: Monday, October 23, 2006 2:17 AM To: Reggie Burnett; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Checking for .NET

Re: [WiX-users] Checking for .NET 2.0 or 1.1 installed

2006-10-20 Thread Reggie Burnett
> > > 1. (*) text/plain ( ) text/html > > > > What's the easiest way to check that a particular framework is > installed? > > For V3 have a look at > http://blogs.msdn.com/robmen/archive/2006/10/17/wix-v3-syntax-for- > detecting-the-clr.aspx > So by you posting only a link to some v3

[WiX-users] Checking for .NET 2.0 or 1.1 installed

2006-10-20 Thread Reggie Burnett
What’s the easiest way to check that a particular framework is installed?  Is this easy with WiX v2 or should I upgrade to Wix v3?  And, if upgrade is the answer, is v3 stable enough to use currently?   Thanks Reggie     ---

Re: [WiX-users] Component spanning directories

2006-09-21 Thread Reggie Burnett
Mike, Thanks for the response. > -Original Message- > From: Mike Dimmick [mailto:[EMAIL PROTECTED] > Sent: Monday, September 18, 2006 5:40 AM > To: Reggie Burnett; wix-users@lists.sourceforge.net > Subject: RE: [WiX-users] Component spanning directories > > W

Re: [WiX-users] Component spanning directories

2006-09-21 Thread Reggie Burnett
Cullen Thanks for the response. That makes some sense and I had not thought about the patching scenario (since we don't do that). > -Original Message- > From: Cullen Waters [mailto:[EMAIL PROTECTED] > Sent: Friday, September 15, 2006 3:37 PM > To: Reggie B

[WiX-users] Register a provider in machine.config and how to customize wixui

2006-09-19 Thread Reggie Burnett
Guys   I have a need to register an assembly in the GAC and in machine.config but I only want to do this if the user has chosen that option.  I would  like to add a custom installer dialog to present these options but am not sure how to customize the mondo dialog set in wixui.  The exampl

[WiX-users] Component spanning directories

2006-09-15 Thread Reggie Burnett
We've been using Wix for some time now and recently got around to cleaning up our wix files. As we are adding samples and source code to the installer, I find it hard to believe that I can't make a single component include all my source files. As I understand it, a component should be anything th