Re: [WiX-users] SqlDatabase install optional and SqlString execute

2011-04-11 Thread Mike Menaker
helps Michael -Original Message----- From: Mike Menaker [mailto:mi...@voicebox.com] Sent: Tuesday, 12 April 2011 9:47 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] SqlDatabase install optional and SqlString execute The cancel will apply to only the DB creat

Re: [WiX-users] SqlDatabase install optional and SqlString execute

2011-04-11 Thread Mike Menaker
restore scenarios. Michael -Original Message- From: Mike Menaker [mailto:mi...@voicebox.com] Sent: Tuesday, 12 April 2011 3:24 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] SqlDatabase install optional and SqlString execute Hi, I want to adjust my installer to have 2

[WiX-users] SqlDatabase install optional and SqlString execute

2011-04-11 Thread Mike Menaker
Hi, I want to adjust my installer to have 2 different modes: 1. User wants to create database and then I run a set of SqlString 2. User uses preexisting database and then I run the same set of SqlString Right now I have a SqlDatabase element in a component that creates the

[WiX-users] ComboBox won't display option

2008-01-22 Thread Mike Menaker
Hi, I have this combobox in my ui/dialog file However I cannot get the option to display. The combobox will, but when it drops down it doesn't display anything. Thanks, Mike ---

Re: [WiX-users] Problems with copy file

2007-10-26 Thread Mike Menaker
Even with all this I'm not really sure what I need to do to make this work. I have multiple wix files that need to know PATH/temp. But the user only enters PATH. Not sure how I'm going to make a Dir element out of PATH. -Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PR

Re: [WiX-users] Problems with copy file

2007-10-19 Thread Mike Menaker
name of the property called PATH which contains a pathname. You need to create a property which contains a string giving the required path, and give the name of that property to DestinationProperty. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Beh

Re: [WiX-users] Problems with copy file

2007-10-19 Thread Mike Menaker
PROTECTED] On Behalf Of Richard Sent: Friday, October 19, 2007 2:58 PM To: WiX Users Subject: Re: [WiX-users] Problems with copy file In article <[EMAIL PROTECTED] m>, "Mike Menaker" <[EMAIL PROTECTED]> writes: > Source=3D"$(var.SOURCEPATH)\ \"> >

[WiX-users] Problems with copy file

2007-10-19 Thread Mike Menaker
Hi, I can't get copyfile to copy a file. Here is the element I use (PATH is a property set earlier) If I use DestinationProperty="PATH" it works. I have also tried DestinationProperty="PATH\dir\" What am I doing wrong? Thanks, Mike ---

Re: [WiX-users] Silent install won't copy in files

2007-09-26 Thread Mike Menaker
t CopyFile didn't work. From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 26, 2007 1:49 AM To: Mike Menaker; wix-users@lists.sourceforge.net Subject: RE: Silent install won't copy in files What is the exact problem? I'm

Re: [WiX-users] Silent install won't copy in files

2007-09-17 Thread Mike Menaker
ource/target dirs and the unattended file is compressed. Any help would be very appreciated. Thanks, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Menaker Sent: Monday, September 17, 2007 11:35 AM To: Frédéric Viollet; wix-users@lists.sourceforg

Re: [WiX-users] Silent install won't copy in files

2007-09-17 Thread Mike Menaker
stall won't copy in files Mike Menaker a écrit : > > Hi, > > I'm having a problem with a silent install. > > I have a component that copies 2 files and writes to the registry > however it isn't copying the 3 files correctly (yet writing the > registry cor

[WiX-users] Silent install won't copy in files

2007-09-14 Thread Mike Menaker
Hi, I'm having a problem with a silent install. I have a component that copies 2 files and writes to the registry however it isn't copying the 3 files correctly (yet writing the registry correctly). This is my component.

[WiX-users] Problems when running installer silently from command line

2007-07-26 Thread Mike Menaker
What are possible issues with running an installer silently from the commandline: MSIEXEC /i MyInstaller.msi /Log LOGFILE.TXT /qn ADDLOCAL=AllMyVariables This works for almost the entire installer. However, it has a problems with an internal property that is set on a UI page (it doesn't get e

Re: [WiX-users] Problem adding assembly to GAC

2007-07-19 Thread Mike Menaker
#x27;t need those attributes at install time because it has the actual assembly and can just get them. Phil Wilson ____ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Menaker Sent: Wednesday, July 18, 2007 10:43 AM To: wix-users@lists.sourc

Re: [WiX-users] Problem adding assembly to GAC

2007-07-18 Thread Mike Menaker
actual assembly and can just get them. Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Menaker Sent: Wednesday, July 18, 2007 10:43 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Problem adding assembly to GAC I have

[WiX-users] Problem adding assembly to GAC

2007-07-18 Thread Mike Menaker
I have encountered a problem adding some assemblies to the GAC. The assembly I'm trying to add is wrapper to a COM object. When I just use TLBIMP it works fine. However I added versioning by: Using ildasm.exe to disassemble Then appending a resource file and using ilasm.exe to re asse

Re: [WiX-users] Am I using a property and condition correctly

2007-05-23 Thread Mike Menaker
PROTECTED] Sent: Tuesday, May 22, 2007 6:06 PM To: Mike Menaker Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Am I using a property and condition correctly Ignore those extra spaces, I don't know where they came from. :-P 1 //aj On 5/22/07, Aaron Shurts <[EMAIL PROTECTED

[WiX-users] Am I using a property and condition correctly

2007-05-22 Thread Mike Menaker
Hi, I'm not sure what I'm doing wrong. When one feature is selected it will go to a certain dialog, in this dialog I will always set a property to true. And later I will check this property in a component. Here is what I have in the dialog: TRUE

Re: [WiX-users] Am I publishing a property correctly?

2007-05-18 Thread Mike Menaker
Bump, can any one show what I'm doing incorrectly? Thanks From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Menaker Sent: Thursday, May 17, 2007 1:17 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Am I publishing a pro

[WiX-users] Am I publishing a property correctly?

2007-05-17 Thread Mike Menaker
Hi whenever I enter a specific dialog screen, I want a property to be set. I have this right now. But whenever I click next nothing happens. I tried removing the 1 but then the property doesn't get set. What am I doing wrong? Thanks, Mike 1

[WiX-users] Feature Condition not evaluating correctly

2007-05-08 Thread Mike Menaker
I have these components in Feature 1. What I am trying to do is if only feature1 is selected the website is the home directory of the default web site on IIS, if feature 2 is selected as well the website isn't the home directory on IIS. However the first case is always being evaluated as true even

[WiX-users] Condition to check if Feature was selected.

2007-05-07 Thread Mike Menaker
Hi, In one of my features I will copy things to a certain directory if another feature was selected for the install and will copy things to another directory if that other feature wasn't selected. How do I set up the condition? Thanks, Mike

[WiX-users] Setting default home directory for web site

2007-05-04 Thread Mike Menaker
When installing 2 applications I would like the 2nd to always be the "Home Directory" of the default web site on the machine it gets installed on. This works when the installation happens with 2 machines (1 application on each machine, both home directories). However when they are both on the same

[WiX-users] ASP.NET web application uninstall

2007-05-04 Thread Mike Menaker
My web applications that I create don't delete the virtual dirs/apps from the Default Web Site section in IIS. The folders created are gone but you can see the app in the IIS. Has anyone been able to uninstall a web application?

[WiX-users] ASP.NET uninstall and home directory question

2007-04-17 Thread Mike Menaker
I'm having 2 problems: 1. My web applications that I create don't delete the virtual dirs/apps from the Default Web Site section in IIS. The folders created are gone but you can see the app in the IIS. 2. Also I'm when installing 2 applications I would like the 2nd to always be the "Home Di