Re: [WiX-users] CustomAction following specific CustomAction fails

2009-02-11 Thread Yan Sklyarenko
There are two ways how to debug managed custom actions recommended by the DTF help. One is attach to message-box, which I usually use. For instance, the line below shows the message box and contains the process to attach to in its caption: System.Windows.Forms.MessageBox.Show(Stop for

[WiX-users] Wix - Shortcut on desktop program menu for all users

2009-02-11 Thread Tim Musschoot
Hello, I'm struggling with the system to put a shortcut to an executable on the desktop for all users, and a shortcut to the same executable in the program menu for all users. This is an extract of the code I use: Property Id=ALLUSERS Value=1 / DirectoryRef Id=TARGETDIR Directory

Re: [WiX-users] ICE Errors in CI environment

2009-02-11 Thread Nord, James
I get the following from msiexec with verbose logging. What fails to contact the server? Is it light or MSIExec? === Verbose logging started: 2/10/2009 10:47:07 Build type: SHIP UNICODE 4.05.6001.00 Calling process: c:\hudson\jobs\CAB

Re: [WiX-users] Customizable name of a shortcut at installation time

2009-02-11 Thread Geert Gerits
Bob Arnson wrote: Windows Installer doesn't support formatted names for the names of files. The only way I can see to do this is to write a custom action that updates the Shortcut table with the name you want. -- sig://boB http://joyofsetup.com/ http://joyofsetup.com/

[WiX-users] Upgrade/downgrade problem

2009-02-11 Thread Cristian Libardo
Hello all, I'm looking for a way to prevent downgrading certain components installed in the GAC. What I'm currently doing is launching msiexec with UPGRADE=all UPGRADEMODE=vomus. This does upgrade deployed files and GAC:ed assemblies quite nicely. The problem is that it also downgrades GAC:ed

Re: [WiX-users] Windows Service

2009-02-11 Thread Vijeta Khatri
The requirement is to start the windows service immediately after install and also the service should start automatically after reboot. I also have the service control element defined as: !-- Install the Service -- ServiceInstall Id=WindowsService Type=ownProcess Start=auto ErrorControl=normal

[WiX-users] wxl files and preprocessor variables

2009-02-11 Thread ACKH
Hi all, I have an installer where I have outsourced all strings that could be displayed to the user into a .wxl file. The problem I'm now facing is that it does not seem to be possible to use preprocessor variables in .wxl files. For example we have several defines inside a .wxi file

Re: [WiX-users] Adding message to the Welcome Dialog

2009-02-11 Thread Neil Sleightholm
I added the version by customising the welcome dialog and adding: Control Id=Version Type=Text X=135 Y=207 Width=220 Height=10 Transparent=yes NoPrefix=yes Text= Version: [ProductVersion] / Neil -Original Message- From: Beth Hechanova [mailto:bhechan...@imsco-us.com] Sent: 11 February

Re: [WiX-users] Windows service

2009-02-11 Thread Wilson, Phil
You're right, and I perhaps read too much into the question. I assumed that the requirement was to start the service but the poster believes that you do this by setting it to start auto and asking for a reboot instead of using ServiceControl. It's something I keep seeing. Phil Wilson

Re: [WiX-users] Execute action during path installation

2009-02-11 Thread Wilson, Phil
Yes. That's a fairly common way of making sure that a file doesn't get installed on the system without breaking the component rules during patching. That's a transitive component. Phil Wilson -Original Message- From: Tony Juricic [mailto:tjuri...@tradestation.com] Sent: Tuesday,

Re: [WiX-users] Windows Service

2009-02-11 Thread Neil Sleightholm
Sounds like you might have a dependency on some other service running, have you checked the eventlog. Neil -Original Message- From: Vijeta Khatri [mailto:vijeta.kha...@microsoft.com] Sent: 11 February 2009 17:14 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Windows

Re: [WiX-users] Adding message to the Welcome Dialog

2009-02-11 Thread Beth Hechanova
That makes sense. Thanks, Beth -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: Wednesday, February 11, 2009 10:11 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Adding message to the Welcome Dialog I added the version

[WiX-users] Visual Dialog Development

2009-02-11 Thread eseeR
Hello, is there any guidance/tools on how to author dialogs with a visual interface? -- View this message in context: http://n2.nabble.com/Visual-Dialog-Development-tp2310386p2310386.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] Execute action during path installation

2009-02-11 Thread Tony Juricic
Right, transitive component, rather than volatile. It goes like: Component Id=compid Guid=... Transitive=yes !-- 0 to remove the file, 1 to install it -- Condition0/Condition File Id=file name . / /Component -Original Message- From: Wilson, Phil

Re: [WiX-users] Visual Dialog Development

2009-02-11 Thread Neil Sleightholm
I use WiXEdit: http://wixedit.sourceforge.net/ Neil -Original Message- From: eseeR [mailto:0x000...@gmail.com] Sent: 11 February 2009 18:23 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Visual Dialog Development Hello, is there any guidance/tools on how to author dialogs

Re: [WiX-users] Visual Dialog Development

2009-02-11 Thread eseeR
Thanks, I tried that out a little but it's sort of clunky. What would be awesome is a plugin for VS that let's you author the dialog like WinForms. Anyone working on something like that? On Wed, Feb 11, 2009 at 10:41 AM, Neil Sleightholm (via Nabble)

[WiX-users] Accessing Oracle via ODBC

2009-02-11 Thread lesterbangs
Our products run on an Oracle 9i/10g backend; one of the requirements for installation is to verify a particular version of a DB schema on the server. Right now this is accomplished via running sqlplus.exe @scriptname.sql, logging the output to a file, then parsing the result. In order to

Re: [WiX-users] Visual Dialog Development

2009-02-11 Thread Tim Musschoot
SharpDevelop is able to edit dialogs. http://www.icsharpcode.net/OpenSource/SD/ The app is freeware open source. HTH, Tim -Oorspronkelijk bericht- Van: eseeR [mailto:0x000...@gmail.com] Verzonden: woensdag 11 februari 2009 19:23 Aan: wix-users@lists.sourceforge.net Onderwerp:

Re: [WiX-users] Windows Service

2009-02-11 Thread Vijeta Khatri
The service doesn't have any dependency on any other service. Thanks, Vijeta -Original Message- From: wix-users-requ...@lists.sourceforge.net [mailto:wix-users-requ...@lists.sourceforge.net] Sent: Wednesday, February 11, 2009 10:18 AM To: wix-users@lists.sourceforge.net Subject:

[WiX-users] any insights as to why sql extension commands containing public property references are not working

2009-02-11 Thread Robert O'Brien
Any insights as to why the following sql extensions commands that create a sql login and db user setting work Property Id=DATABASESHOST Value=localhost sql:SqlDatabase Id=MasterDatabase Database=master Server=[DATABASESHOST] / sql:SqlDatabase Id=Database1 Database=MyDeliverableDatabase

Re: [WiX-users] any insights as to why sql extension commands containing public property references are not working

2009-02-11 Thread Robert O'Brien
p.s. looking at my verbose logs searching for ExecuteSqlStrings hits I only see RollbackExecuteSqlStrings hits containing both the sql login and db user settings I want applied during install ( and during component uninstall rollbacks) as well as the settings I want applied during uninstall (

Re: [WiX-users] any insights as to why sql extension commands containing public property references are not working

2009-02-11 Thread Robert O'Brien
p.s. looking at my verbose logs searching for ExecuteSqlStrings hits I only see RollbackExecuteSqlStrings hits containing both the sql login and db user settings I want applied during install ( and during component uninstall rollbacks) as well as the settings I want applied during uninstall (

[WiX-users] Launch condition for checking .net framework.

2009-02-11 Thread Sachin Dubey (Tata Consultancy Services)
Hi, I have a quick question. In the launch condition I'm checking for version of .net framework using: Condition Message='This setup requires the .NET Framework 2.0 or higher.' ![CDATA[MsiNetAssemblySupport = 2.0.50727]] /Condition Does this check is performed at both installation and

Re: [WiX-users] Launch condition for checking .net framework.

2009-02-11 Thread Chad Petersen
This should do the trick as far as I now. Condition Message='This setup requires the .NET Framework 2.0 or higher.' ![CDATA[MsiNetAssemblySupport = 2.0.50727 OR (Installed)]] /Condition -Original Message- From: Sachin Dubey (Tata Consultancy Services) [mailto:v-sad...@microsoft.com]

[WiX-users] Need help while integrating with MSBuild

2009-02-11 Thread Pankaj Agrawal (Infosys Technologies Ltd)
Hi, I have created a WiX file and I have hardcoded file path in it. Now during daily build the path is getting changed and I have to integrate this wix file with daily build. Here we are dropping the bits into binary and copying them to some other folder (which will be changed with every

Re: [WiX-users] How does one use a WebSite locator in order to set the file path for content?

2009-02-11 Thread Thomas S. Trias
I see; the ConfigureIIs ca doesn't get added, but the other ca's call ScaWebsGetBase, which finds the appropriate metabase path. When the WiX help says that it inserts a row into the IISWebSite table, it means at link time, not that it updates the MSI database with information related to the

Re: [WiX-users] Need help while integrating with MSBuild

2009-02-11 Thread Wendell Joost
If memory serves correct, the $env syntax allows you to read environment variables - does the build environment set environment variables you can use? Wendell On Wed, Feb 11, 2009 at 12:55 PM, Pankaj Agrawal (Infosys Technologies Ltd) v-pa...@microsoft.com wrote: Hi, I have created a WiX file

Re: [WiX-users] Visual Dialog Development

2009-02-11 Thread Arun Perregatturv
I would like to vote for this feature. if needed I can help in developing. VS Plugin something like Orca look and feel. Arun Perregattur -Original Message- From: eseeR [mailto:0x000...@gmail.com] Sent: Wednesday, February 11, 2009 1:49 PM To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] any insights as to why sql extension commands containing public property references are not working

2009-02-11 Thread Michael Osmond
Robert, Just one observation, are you sure that the difference in between using create (in the exampel that works) and wrapping the create inside an exec command (in the example that fails) is not the problem. Both look okay to me, but I have had fun in the past with getting exec('strings') to

Re: [WiX-users] Visual Dialog Development

2009-02-11 Thread eseeR
Thanks I'll take a peek. On Wed, Feb 11, 2009 at 11:29 AM, Tim Musschoot (via Nabble) ml-user+179969-494825...@n2.nabble.comml-user%2b179969-494825...@n2.nabble.com wrote: SharpDevelop is able to edit dialogs. http://www.icsharpcode.net/OpenSource/SD/ The app is freeware open source.

Re: [WiX-users] Visual Dialog Development

2009-02-11 Thread Neil Sleightholm
something like Orca look and feel Really, what that bad :-) -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: 11 February 2009 21:51 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Visual Dialog Development I

[WiX-users] configuring a firewall exception

2009-02-11 Thread Jason Person (TEKsystems)
Hi, I have a component that I need to add a firewall exception to, the catch is I need to specify the port from a property that is set on the command line. For example, I am using something like the following: Component Id=Service Guid=XXX----XXX Win64=yes

[WiX-users] Selecting log settings for IIS ...

2009-02-11 Thread Ravikumar Gopinath
On our websites, we want to select the properties to log, like Host( cs-host), bytes sent etc. How can we set this properties through Wix? Thanks Ravi -- Create and Deploy Rich Internet Apps outside the browser with

[WiX-users] A problem of the hyperlink button

2009-02-11 Thread 姜松
Hi all, I am working on the Wix and want to add a hyperlink on my UI. But it got error code 2885. My os is Windows Vista Enterprise SP1, my wix version is the 3.0.5006.0. This webpagehttp://www.joyofsetup.com/2009/01/17/msi-v50-features-in-wix-v30/said that the Hyperlink is supported

[WiX-users] Apply office look and feel to the wix dialogs

2009-02-11 Thread sandun css
Hi, Is it possible to apply the MS office look and feel to the wix dialogs? If so, how can I do it? Thanks, Sandun -- Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adobe

[WiX-users] create environment variables

2009-02-11 Thread sandun css
Hi, I need to create few environment variables during the installation. Please advice me how to do it? Sandun -- Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adobe AIR,

Re: [WiX-users] create environment variables

2009-02-11 Thread Sudhakaran, Suraj
http://www.tramontana.co.hu/wix/lesson5.php#5.10 -Original Message- From: sandun css [mailto:sandun...@gmail.com] Sent: Thursday, February 12, 2009 10:24 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] create environment variables Hi, I need to create few environment

Re: [WiX-users] configuring a firewall exception

2009-02-11 Thread Neil Sleightholm
I think you may be using an old version of WiX, setting the port to a formatted value wasn't added until fairly recently. Neil Neil Sleightholm X2 Systems Limited n...@x2systems.com mailto:n...@x2systems.com From: Jason Person (TEKsystems)

[WiX-users] Questions about the WIX terchnology.

2009-02-11 Thread Henk Roos
Hi there, My name is Henk and I would like some advice from the users if possible about the WIX technology. I'm very new to the technology, and I've just moved into a build master's position at my company. We are providing software for a bank, and they require new functionality that patches