[WiX-users] Reading [SOURCEDIR] before CostFinalize

2007-01-18 Thread Kaushik Barat
Hi All, I have a configuration file which contains values of properties. Some of these properties have to set before CostFinalize since, they decide the condition of components. Since condition decisions are done at CostFinalize, the property values have to be set before CostFinalize. I have a l

Re: [WiX-users] Platforms attribute of Package element...

2007-01-18 Thread Bob Arnson
Ravikumar Gopinath wrote: I need to set the Platforms attribute of Package element to either 64-bit or default(platform independent) during build. Is "Intel" the default value for "Platforms" attribute? "Intel" (x86) is the default. There isn't a platform-independent setting. See "Template Su

[WiX-users] Terminating running process before uninstallation

2007-01-18 Thread Kaushik Barat
Hi All, I have an application whose executable will be running when user tries to uninstall. The process of the executable should be killed before the files are removed. Currently i am seeing that the files are being deleted but the process is not killed. Somehow the process is running and points

Re: [WiX-users] Bitmap scaling

2007-01-18 Thread Levi Wilson
From the tutorial: If you want to change the bitmaps or icons, just do so in the Binary directory. The front page bitmap (named Dialog.bmp here) is a 503 by 314 pixel BMP while the top banner bitmap has 500 by 63 pixels. But note that Windows Installer might stretch or shrink these bitmaps if th

[WiX-users] Bitmap scaling

2007-01-18 Thread Steve Bennett
I'm having a problem where the bitmap I choose as the background of a WiX-UI setup is getting scaled differently on different machines. It looks fine on mine (1152x864), but badly pixellated on machines with 1280x1024. I've tried using a fairly high resolution image but it still looks bad. I've als

Re: [WiX-users] package ASP.NET application

2007-01-18 Thread Dhaval Patel
See the example here: http://www.tramontana.co.hu/wix/lesson6.php#6.3 Basically, the Directory element would contain all your *.aspx, *.js, etc files. One thing the example doesn't mention is nested directories (example, you may have an App_Code, App_Themes, etc) directories - if you are using Vi

[WiX-users] Questions about sharing folder

2007-01-18 Thread Andy Chen
Hi, Can I use element to share a folder which is not created by my MSI file? If yes, could anybody give me an example? Thanks in advance! Andy - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's

[WiX-users] Platforms attribute of Package element...

2007-01-18 Thread Ravikumar Gopinath
Hi, I need to set the Platforms attribute of Package element to either 64-bit or default(platform independent) during build. Is "Intel" the default value for "Platforms" attribute? Thanks Ravi- Take Surveys. Earn Cash. Infl

[WiX-users] CCTV camera

2007-01-18 Thread BEYOND
Dear Sir or Madam, We are Shenzhen Beyond Company. a professional high-tech manufacturer of CCD camera in China. Our products include the follows: -- -- --Miniature Camera -- -- --Underwater Camera -- -- --Bullet Camera -- -- --Dome Camera -- -- -- Weatherproof IR LED C

Re: [WiX-users] Browse button in WixUI_FeatureTree

2007-01-18 Thread Bob Arnson
Antony Walmsley wrote: > Is the browse button meant to work using WixUI_FeatureTree? Yes but the feature must have the ConfigurableDirectory attribute set to a public (all uppercase) directory. -- sig://boB http://bobs.org

[WiX-users] package ASP.NET application

2007-01-18 Thread Ogurok, Oleg
Hi there, I am migrating from the bult-in VS2005 web deployment project to WiX. Could someone please provide a simple example of creating an MSI package which will create a virtual directory in IIS and install all output files (e.g. *.aspx, *.js) from a Visual Studio 2005 Web Deployment Projec

Re: [WiX-users] WiX and PocketPC installations

2007-01-18 Thread Mike Dimmick
You can't use WiX. Windows Mobile uses CABs which are built with CabWiz.exe, not MSIs. You write an .inf file to tell CabWiz.exe what to do. If building only for Windows Mobile 5.0, you can use a compressed CAB and should build it with the version of CabWiz from VS2005 (typically in C:\Program File

Re: [WiX-users] Strange behaviour of ARP Icon...

2007-01-18 Thread Mike Dimmick
ARPPRODUCTICON is a property and it is documented at http://msdn2.microsoft.com/en-us/library/aa367593.aspx. Use a element to set the property's value. See also the Icon table (http://msdn2.microsoft.com/en-us/library/aa369210.aspx) and the WiX element. If you want to use the 'default MSI icon'

Re: [WiX-users] xmlfile and namespaces

2007-01-18 Thread Matthew Janulewicz
I'm not totally in tune with xml paths and whatnot, but I hacked through an example and came up with this: The escape characters and whatnot are hardly intuitive and it took forever to get it to work, but this is the syntax I use in our installers to change values in our config files. Hope

Re: [WiX-users] OK Why does this not work

2007-01-18 Thread Joe O'Sullivan
Thanks Tony. Can anybody enlighten me on how to complete this? I want to install the file then run this file with a custom action? What have I missed, it seemed just as I had read but not so? Thanks Joe Code as supplied in issue 113

Re: [WiX-users] Slightly OT: votive and ankh?

2007-01-18 Thread Justin Rockwood
I haven't played around with Ankh to know, but other users have run into issues with this also. I really don't think it's a Votive issue, since I'm using the standard Visual Studio SCC stuff. I really think it's an Ankh issue. Of course, I could be wrong. It's probably best to log a feature request

[WiX-users] Slightly OT: votive and ankh?

2007-01-18 Thread Simon Dahlbacka
This is slightly off-topic, but I cannot seem to get AnkhSvn (subversion provider for Visual studio) to play along nicely with a votive project. Now, I don't know if this is due to Votive or Ankh? (latest v3 WiX and latest Ankh) If anyone has had any success in combining these two, I'd appreciate

[WiX-users] xmlfile and namespaces

2007-01-18 Thread Shaun Wilde
I am trying to use xmlfile on an file with namespaces I would therefore construct my query to look like this ElementPath="//*[\[]local-name()='deployment'[\]]/*[\[]local-name()='deploymentProvider'[\]]/@codebase" but I get the following error ExecXmlFile: Error 0x80004005: failed to find no

Re: [WiX-users] Strange behaviour of ARP Icon...

2007-01-18 Thread Peter G. Sakhno
Ahh! I see... Is there any way to force ARP to use default MSI icon for my product? How to specify ARPPRODUCTICON in that manner? Best regards, Peter G. Sakhno C-MAP RUSSIA Ltd http://www.c-map.ru/ Bob Arnson wrote: > Peter G. Sakhno wrote: >> Why in ARP my product have an icon of the only EXE-f

Re: [WiX-users] Bootstrapper and MSI

2007-01-18 Thread Wilson, Phil
AFAIK you can't install IIS externally - it's an operating system component. It's not a Wix inconvenience that you can't install the .NET framework and SQL and so on in an MSI setup. There are a couple of reasons: 1. It's an architectural feature of Windows Installer. The main issue is that you

[WiX-users] Browse button in WixUI_FeatureTree

2007-01-18 Thread Antony Walmsley
Is the browse button meant to work using WixUI_FeatureTree? I've got the following : .. I've tried various combinations for Property/Value but the button is always disabled when selecting features. --

Re: [WiX-users] FW: Help regarding Wix needed

2007-01-18 Thread Bob Arnson
Joydeep Bhattacharyya wrote: No I am supplying certificate paths as parameter to msi at runtime. The build is independent of the path. Wix might build tables at build time, but my guess is it populates the paths based on the parameter. For my case the parameter is defined in the courier file.

Re: [WiX-users] Please update examples

2007-01-18 Thread Bob Arnson
TestTrack EacTeam wrote: Would someone be kind enough to update the examples embedded in the Wix3 package? They compile/link with warnings or even errors. Can you be more specific? -- sig://boB http://bobs.org - Take

Re: [WiX-users] Refresh on next button

2007-01-18 Thread Bob Arnson
Patrick Steele wrote: If the masked edit is moved to the bottom of the screen, the radio buttons will still disappear. I have just decided I am going to separate this one dialog into two dialogs. This is not the answer I would wish for, but at least it would be correct. If it's not just happe

Re: [WiX-users] Strange behaviour of ARP Icon...

2007-01-18 Thread Bob Arnson
Peter G. Sakhno wrote: Why in ARP my product have an icon of the only EXE-file included in the product MSI-package instead of a standart MSI icon? If you don't specify ARPPRODUCTICON, ARP tries to guess which icon it should display. See Raymond Chen's blog

Re: [WiX-users] Any examples on how to do NGen?

2007-01-18 Thread Rob MacFadyen
Dan, There's a couple of examples on wixwiki (v3): http://www.wixwiki.com/index.php?title=NetFxExtension Regards, Rob _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Hoeger Sent: Thursday, January 18, 2007 9:59 AM To: wix-users@lists.sourceforge.net Subject: [Wi

[WiX-users] Any examples on how to do NGen?

2007-01-18 Thread Dan Hoeger
I would like to include Ngen in our install. It sounds like I can use NetFX but I cannot find this in the documentation and did not see any examples anywhere. Anyone have an example they would care to share? Thanks, Dan -

[WiX-users] minor upgrade not upgrading all files

2007-01-18 Thread Scott Sam
I'm trying to upgrade version 3.0 of our software to version 3.1. there are at least 2 files that do not get upgraded when I do a minor upgrade. They are version 3.0 and need to be replaced by the 3.1 version. If I uninstall the 3.0 version then install the 3.1 version the correct files are put

[WiX-users] Bootstrapper and MSI

2007-01-18 Thread XiaoYuan Duan
Hi, there I'm very new to Wix and installation programming. We have a web application nearly completed and need it to be installed as a single application on laptop somehow. As a web app. it needs following supports before the app. installed: 1. IIS 2. .NET Framework 1.1 3. Windows Installer 3.1 4.

[WiX-users] (no subject)

2007-01-18 Thread X.Y. D
Hi, there I'm very new to Wix and installation programming. We have a web application nearly completed and need it to be installed as a single application on laptop somehow. As a web app. it needs following supports before the app. installed: 1. IIS2. .NET Framework 1.13. Windows Installer 3.14.

Re: [WiX-users] OK Why does this not work

2007-01-18 Thread Joe O'Sullivan
Thanks Tony, can anyone tell me what I need to do next, seems like I am having one of them weeks which ensures nothing goes to plan. I have included the code so maybe someone can say where next, even to the point of what I have over looked. Thanks Joe -Original Message- From: [EMAIL PRO

[WiX-users] Please update examples

2007-01-18 Thread TestTrack EacTeam
Would someone be kind enough to update the examples embedded in the Wix3 package? They compile/link with warnings or even errors. I’m also looking for up-to-date basic UI examples and a Wix3 tutorial. Thanks for your help.

[WiX-users] WiX and PocketPC installations

2007-01-18 Thread Ben Sion
Hi there, I am at the point of creating an installer for the Windows Mobile 5 application that we have developed. I have been experimenting with WiX 3.0 to create a PocketPC installer but have been unsuccessful. Could anyone shed some light as to how I use WiX to generate an installer for Pock

[WiX-users] Strange behaviour of ARP Icon...

2007-01-18 Thread Peter G. Sakhno
Hello everybody. Why in ARP my product have an icon of the only EXE-file included in the product MSI-package instead of a standart MSI icon? This EXE-file is put in a separate component and when I comment this component in WXS my product have the desired standard MSI icon in ARP. -- Best rega

Re: [WiX-users] Refresh on next button

2007-01-18 Thread Patrick Steele
If the masked edit is moved to the bottom of the screen, the radio buttons will still disappear. I have just decided I am going to separate this one dialog into two dialogs. This is not the answer I would wish for, but at least it would be correct. Patrick From