Re: [WiX-users] version numbering

2007-07-03 Thread Patrick Steele
will complain that the attribute is invalid, as it expects a valid integer value. Any sugestions please short of hardcoding it? Thanks, Patrick From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 02 July 2007 16:30 To: John Vottero Cc: Patrick Steele; wix-users

[WiX-users] version numbering

2007-07-02 Thread Patrick Steele
Hi, I have my version number hardcoded in multiple locations throughout my wxs file eg Product Name='Matador 2.1.1' Version='2.1.1.0' Manufacturer='FBBT Limited' Id='F5E0DFC0-7086-49a7-B068-DAB66E84A0BC' Language='1033' UpgradeCode='080075AA-7BEA-46f6-A4A9-96C7279C4F92' Codepage='1252'

[WiX-users] Shortcuts

2007-02-28 Thread Patrick Steele
In wix 3, has there been a change to the creation of shortcuts? Component Id='ExecutableFiles' Guid='57E1279E-8C24-4ba0-BA34-FA4253886C52' File Id='MatadorExe' Name='Matador.exe' Source='.\build\Matador.exe' Vital='yes' Shortcut Id='StartMenuShortcut' Directory='ProgramFilesFBBT' Name='Matador

Re: [WiX-users] Shortcuts

2007-02-28 Thread Patrick Steele
Ok I'll try that out now, thanks fellas! From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 28 February 2007 16:52 To: Patrick Steele Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Shortcuts Patrick Steele wrote: In wix 3, has there been

[WiX-users] Uninstalling

2007-02-28 Thread Patrick Steele
Just one more thing before I go tonight, would anyone mind giving me a quick example of uninstalling? I want to uninstall any previous versions of our software using this: Upgrade Id='285EC2F6-E11B-4163-856C-5969F240A6C7' UpgradeVersion Property='' OnlyDetect='no' Maximum='2.0.1'

Re: [WiX-users] Running a file after installation

2007-01-23 Thread Patrick Steele
Try somethinbg like this: CustomAction Id='LaunchMyBat' Directory='INSTALLDIR' ExeCommand='[INSTALLDIR]My.bat' Return='asyncNoWait' / InstallExecuteSequence Custom Action='LaunchMyBat' After='InstallFinalize'NOT Installed/Custom /InstallExecuteSequence This way you are also not hard coding the

Re: [WiX-users] Refresh on next button

2007-01-19 Thread Patrick Steele
PROTECTED] Sent: 19 January 2007 16:05 To: Patrick Steele Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Refresh on next button Patrick Steele wrote: No conditions in the radio group: Hmmm. Sorry, no ideas coming to mind... -- sig://boB http://bobs.org

Re: [WiX-users] Refresh on next button

2007-01-18 Thread Patrick Steele
From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 18 January 2007 06:05 To: Patrick Steele Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Refresh on next button Patrick Steele wrote: This appears to work in that I can type in numbers ( image 1 ). When I try to type

[WiX-users] Refresh on next button

2007-01-16 Thread Patrick Steele
One of my dialog screens requires the user to fill in two text fields: Property Id=VARIABLE_ONE/Property Property Id=VARIABLE_TWO/Property ... Control Id=Next Type=PushButton X=236 Y=243 Width=56 Height=17 Default=yes Text=!(loc.WixUINext) Condition Action=disable![CDATA[VARIABLE_ONE = OR

Re: [WiX-users] Refresh on next button

2007-01-16 Thread Patrick Steele
an alphanumberic value in the text field and click elsewhere the installer will crash with error code 2892, and can only be closed from task manager ( wix 3.0.2211 ) :| From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: 16 January 2007 13:43 To: Patrick Steele Cc: wix

Re: [WiX-users] Refresh on next button

2007-01-16 Thread Patrick Steele
:31 To: Patrick Steele Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Refresh on next button You can ensure that it is an integer by using a custom action. I've never set @Integer='Yes', but that should not allow them to enter alpha characters in the edit control, and they should

[WiX-users] Running executables in Wix 3

2007-01-12 Thread Patrick Steele
I have two separate executables that I wish to run. The first is during the install: CustomAction Id=LaunchAExeWithCLIAction' Directory='INSTALLDIR' ExeCommand='[INSTALLDIR]A.exe -blah=blah' Return='ignore' / InstallExecuteSequence Custom Action='LaunchAExeWithCLIAction'

Re: [WiX-users] Running executables in Wix 3

2007-01-12 Thread Patrick Steele
PROTECTED] On Behalf Of Patrick Steele Sent: 12 January 2007 11:21 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Running executables in Wix 3 I have two separate executables that I wish to run. The first is during the install: CustomAction Id=LaunchAExeWithCLIAction' Directory

[WiX-users] Icons

2007-01-09 Thread Patrick Steele
Ok quick question. I have already added an icon that will show up inside control panel-add / remove programs by setting ARPPRODUCTICON: Property Id='ARPPRODUCTICON' Value='My.ico' / How can I set the icon that will be used by the .msi itself? Currently it is the top symbol above ( pc and disc

Re: [WiX-users] Running an exe with a working directory

2007-01-05 Thread Patrick Steele
-ballo.- Patrick Steele escribió: After the end of my install, I wish to run my newly created exe with command line parameters. The exe is dependent upon dlls that have been added during the install, so I'm figuring maybe I have to set the working directory somehow prior to running the exe so

Re: [WiX-users] Running an exe with a working directory

2007-01-05 Thread Patrick Steele
Original Message Follows From: Scott Palmer [EMAIL PROTECTED] To: Patrick Steele [EMAIL PROTECTED] Subject: Re: [WiX-users] Running an exe with a working directory Date: Fri, 5 Jan 2007 09:11:24 -0500 I think that in your example My.exe must be the full path to the exe. Scott On 1/5/07

[WiX-users] Running an exe with a working directory

2007-01-04 Thread Patrick Steele
After the end of my install, I wish to run my newly created exe with command line parameters. The exe is dependent upon dlls that have been added during the install, so I'm figuring maybe I have to set the working directory somehow prior to running the exe so that it will correctly pick up the

[WiX-users] Creating files for current user accounts

2006-12-29 Thread Patrick Steele
Hi, I am just beginning to learn about using Wix 3, so any help would be greatly appreciated. As part of my installation process, I need to create a couple of files, placing them inside: C:\Documents and Settings\All Users and C:\Documents and Settings\current_user. How can I go about doing

Re: [WiX-users] Creating files for current user accounts

2006-12-29 Thread Patrick Steele
Most excellent, I will try that out when I get back. Thanks Tony! Original Message Follows From: Tony Hoyle [EMAIL PROTECTED] To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Creating files for current user accounts Date: Fri, 29 Dec 2006 14:49:22 + Patrick Steele wrote