Re: [WiX-users] Managed custom action return values

2007-09-10 Thread Mailinglist
Hello, Writing managed custom actions is not supported. A standalone executable will not see anything of the setup around. I took two half ready projects and used them, to build up something that gives you the possibility to write managed custom actions and access the current setup from within

[WiX-users] Problem with german letters if as FragmentRef

2007-09-10 Thread pobox77
Hi, I have in UI some german texts with special german characters like Ä, Ü, Ö, ß. I saved in a separate fragment file FragmentUI.wxs and referenced it by While compiling I always get the error: C:\...\FragmentUI.wxs(629) : error CNDL0104 : Not a valid source file; detail: Invalid charact

[WiX-users] Remove "Install When Required" and "Install to Run From Network"

2007-09-10 Thread Srinivas Tirupati
Hi I want to remove the options "Install When Required" and "Install to Run From Network" when user tires to do a custom installation. How can I achieve this ? Thanks and Regards Srinivas T - This SF.net email is sponsored

[WiX-users] IIS Shared Website and AppPool

2007-09-10 Thread darrenstone
I have a situation where I have a number of virtual directories that need deploying within a single Website and AppPool (using Wix V2) The complication is that I need to have a separate MSI for each virtual directory and therefore the Website and AppPool may or may not exist at install time. Ther

[WiX-users] Wix layout

2007-09-10 Thread Dominik Guder
Hi folks, I would like to move to Wix and I did the basic researches how do this. Now one major part is left and I have no idea how to solve this. We have right now an application with three features and ~ 200 files. This files will be copied to a deployment directory using nant. Then all files

[WiX-users] ZIP archive inside MSI, UNZIP after installation...

2007-09-10 Thread David Stindl
Hallo all, I need to include ZIP archive (documentation in any directory structure...) into MSI and after installation I need to unzip it. Does anybody any idea how to do it? Encapsulation of documentation's directory structure is not so useful for me... Thanks a lot for any help.. David.

Re: [WiX-users] Restarting an existing service (SQLEXPRESS)

2007-09-10 Thread Peter Conlon
Phil, Rob, Thanks for your replies. It of course pays to read the installer code before asking a question (I dip in an out of this installer when I have the time). Here is what I really want to do: 1. Install MyService1 2. Install MyService2 3. Execute a series of SQL Scripts (setting up a use

[WiX-users] Repair issue

2007-09-10 Thread Albert van Peppen
Hi, Does anyone know how the debug problems with the ARP repair functionality? The problem in my case is that the repair gives a 1706 error; (Dutch version sorry ;) Fout 1706. Kan geen installatiepakket vinden voor product Drumis - Databaseonderdelen V2.90.2352.0. Voer de installatie opnieuw

Re: [WiX-users] Managed custom action return values

2007-09-10 Thread Rachna Khune
Thanks so much Oliver I will take a look at it and ping you if I have any questions danke rachna From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Mailinglist [EMAIL PROTECTED] Sent: Monday, September 10, 2007 12:29 AM To: wix-users@lists.sourceforge.net Sub

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-10 Thread Sandip Shahane
<+wix-dev mailing list and setupsup> Note that file sequencing was changed in SP1 (after RTM was released) for few files in one of the merge modules used. I fixed it so that the merge modules file sequencing is now exactly the same as before (though some merge modules have now additional files

Re: [WiX-users] Problem with german letters if as FragmentRef

2007-09-10 Thread Justin Rockwood
Sounds like your wxs file is not saved in UTF-8 or some other encoding that allows German characters. Also, you have to have at the top of your XML file. Justin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of pobox77 Sent: Monday, September 10, 2007 1:2

[WiX-users] Error when using ServiceInstall

2007-09-10 Thread Matt . Thompson
I'm trying to install a service with the follow bit of WiX - the first is hand done (from tutorial) the second is from WiX-Aware - both are failing: It returns an error (on two boxes)

[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

[WiX-users] creating INF files

2007-09-10 Thread Adam Langley
Hi Guys, A question with a simple answer I'm sure. What is the format for creating an INF file to prepopulate the public properties (theres a mouthful) of an MSI package? And, does the MSI automatically look for INF files with the same name as the currently executing MSI? I do I need to start

Re: [WiX-users] Wix layout

2007-09-10 Thread Christopher Painter
In my build environment, one of my unit tests is to compare the contents of the MSI to the files that were available to be built. This alerts me to application changes that have new resources that I've not been told about. An overly simplified look at this process would be like this:

Re: [WiX-users] ZIP archive inside MSI, UNZIP after installation...

2007-09-10 Thread Richard
In article <[EMAIL PROTECTED]>, "David Stindl" <[EMAIL PROTECTED]> writes: > I need to include ZIP archive (documentation in any directory > structure...) into MSI and after installation I need to unzip it. Why don't you just distribute the files with a CAB? Then everything is integrated w

Re: [WiX-users] ZIP archive inside MSI, UNZIP after installation...

2007-09-10 Thread John Vottero
> I need to include ZIP archive (documentation in any directory > structure...) into MSI and after installation I need to unzip it. Does > anybody any idea how to do it? > Encapsulation of documentation's directory structure is not so useful > for me... Why do you want to do this? The files will

Re: [WiX-users] Managed custom action return values

2007-09-10 Thread Wilson, Phil
Just to clarify, this behavior of executables is nothing to do with the code being managed or not. Any executable that returns a non-zero exit code to a custom action that checks the result will cause the "There is a problem with this installer package" message and a rollback. It's important to no

Re: [WiX-users] Repair issue

2007-09-10 Thread Wilson, Phil
If the product requires a repair to re-install a file then it will want the original MSI file, and the best approach to this issue is to have the original MSI available. You can't really guarantee that a repair will never occur. Unpacking a setup and installing the MSI from a temp location that g

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-10 Thread Heath Stewart
The "why" is because PatchWiz.dll (like when you use msimsp.exe) will automatically update the file sequences to begin the last sequence number of the target product (as authored in PCP files for older PatcWiz.dll, or automatically with newer versions of PatchWiz.dll). If those sequence numbers

Re: [WiX-users] Error when using ServiceInstall

2007-09-10 Thread Wilson, Phil
Some thoughts, not all of which may apply: The account needs the "log on a service" right. It's not automatic for admins IIRC. If you configure the service with an account manually it will add that right for you and tell you. Using the APIs isn't that friendly. If the service starts but never

[WiX-users] user home predefined name?

2007-09-10 Thread Marcel Schutte
Hello, I'm a newbie at using wix. I've been using the tramontana tutorial [1] and now I want to install files to the user's home directory (so C:\Documents and Settings\\). The list of predefined names that is referenced in this tutorial [2] doesn't seem to contain a reference that I can use f

[WiX-users] What makes a custom action incompatible with Data Execution Prevention on Vista?

2007-09-10 Thread Man, Shirley
Hi all, When I restart an installation after a force reboot, in the "Validating Install" phase, I get the error "Windows Installer has stopped working" and a systray bubble saying the installer was closed due to Data Execution Prevention. I only get the error when I relaunch the msi after a faile

Re: [WiX-users] What makes a custom action incompatible with Data Execution Prevention on Vista?

2007-09-10 Thread James Finnigan
Certain versions of ATL can do this. http://www.google.com/search?q=ATL+NX+DEP&rls=com.microsoft:en-US&ie=UTF-8&oe=UTF-8&startIndex=&startPage=1 http://en.wikipedia.org/wiki/Data_Execution_Prevention It's a general issue though. Executing code on the stack, self-modifying code, etc. can cause

Re: [WiX-users] What makes a custom action incompatible with DataExecution Prevention on Vista?

2007-09-10 Thread Man, Shirley
Is there a reason why it only happens when I relaunch the msi after a force reboot? From: James Finnigan [mailto:[EMAIL PROTECTED] Sent: September 10, 2007 3:53 PM To: Man, Shirley; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] What makes a custom acti

Re: [WiX-users] What makes a custom action incompatible with DataExecution Prevention on Vista?

2007-09-10 Thread James Finnigan
No idea. I would look for code that only runs in those cases and see what I can find. It's not always very obvious (as in the case of ATL). I don't know if the MSI team has any tools to help you out there. You could set up IFEO (Image File Execution Options) on msiexec.exe and debug until you

Re: [WiX-users] error 1334 due to file sequencing.

2007-09-10 Thread Sandip Shahane
True, this is what is happening, but what I can't figure out is why this is happening or is there anything I am doing wrong here. Can anybody tell if the following is indeed a bug and if so, is it fixed or any workaround? http://sourceforge.net/mailarchive/message.php?msg_id=E1FZMWn-0007MY-CR%40s

[WiX-users] Error trying to install Performance Counters

2007-09-10 Thread Edwin Frey
Hello all, I am trying to install .net performance counters. According to the documentation if I leave most options blank, it defaults to the .Net settings. When I run the MSI, i get an error about a missing DLL. I have had no luck tracking down any samples of what I may be missing. Does any

Re: [WiX-users] ZIP archive inside MSI, UNZIP after installation...

2007-09-10 Thread Karthik Krishnan
I'm just guessing here, but I take it the directory structure and/or names of your documentation files are unpredictable, and you want to get around that by zipping up the files into a predictably named zip file? You'll need a custom action for that. You'll have to include code that cleans up your

Re: [WiX-users] ZIP archive inside MSI, UNZIP after installation...

2007-09-10 Thread Richard
In article <[EMAIL PROTECTED]>, "Karthik Krishnan" <[EMAIL PROTECTED]> writes: > You'll need a custom action for that. You'll have to include code that > cleans up your unzipped files on uninstall so you don't leave files on the > system. And you'll need code that handles rollback. And you

[WiX-users] Silent install problem

2007-09-10 Thread Anidil
I use the followin code, and associated customaction to detect previous versions of the product.It warns the user about the previous version and stops the install.But when i try to do a silent install,it doesn't seem to check for the existing versions and gets installed parallelly.any help?

[WiX-users] Auto launch of application on machine reboot

2007-09-10 Thread V K Gangwar
Can anybody help me to implement following feature. I am developing a .msi package using WIX3.0 and Votive 3. I want to launch my application on machine reboot. how I can implement this in XML. Regards, Veerendra - Luggage? GPS? Comic books? Check out