[WiX-users] [SPAM] How to create a subfolder in a folder created by "CreateFolder"?

2011-04-21 Thread Froggie
Hello! My directory structure is: Now I need Permissions for the "INSTALLDIRDATA" folder and all subfolders. I read about "" and "". "" can only be used in a component. So my new structure is: Now my 2 Question

[WiX-users] [SPAM] Re: [SPAM] How to create a subfolder in a folder created by"CreateFolder"?

2011-04-21 Thread Froggie
Thank you very much! It works like a charm. (I didn't know that the "Directory" Attribute can be left out.) -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-create-a-subfolder-in-a-folder-created-by-CreateFolder-tp6293535p6293700.html Sent fr

[WiX-users] Wix 3.8 - Burn - Detection of .Net Framework 1.1 not working

2014-06-13 Thread froggie
Hi! I'm trying to detect if .Net Framework 1.1 is installed and then skip it in my bootstrapper. But the setup of NetFx1.1 is always starting and then crashing because it is already installed. Can you help? I have a reference to the netfx-extension and util-extension. Here is the relevant? code-

Re: [WiX-users] Wix 3.8 - Burn - Detection of .Net Framework 1.1 not working

2014-06-16 Thread froggie
Hi! This is my (for me) working solution (just for completeness): http://download.microsoft.com/download/4/f/3/4f3ac857-e063-45d0-9835-83894f20e808/dotnetfx.exe ?> Snippet Thank you for your help! PS: Maybe this could be added to the NetFxExtension ... Am 13.06.2014 18:44, schrieb Phi

[WiX-users] Wix 3.8 - Burn - DetectCondition string compare syntax

2014-06-16 Thread froggie
Hi! I'm trying to do a string compare in a DetectCondition. According to the log the syntax is wrong. But what is the correct syntax? What I want: Check wether a registry value is exact a given value (string). Log-message: Error 0. Failed to parse condition GOTO_ASSISTEXISTS = My Company name.

Re: [WiX-users] Wix 3.8 - Burn - DetectCondition string compare syntax

2014-06-17 Thread froggie
Is there any information available about the syntax and string compare? Am 16.06.2014 11:27, schrieb froggie: > Hi! > I'm trying to do a string compare in a DetectCondition. According to the > log the syntax is wrong. > But what is the correct syntax? > > What I want:

Re: [WiX-users] Wix 3.8 - Burn - DetectCondition string compare syntax

2014-06-17 Thread froggie
Ah damn! This gets me every time. Thank you for your help! I think the offical documentation needs some additional advices/hints/tricks/examples. Am 17.06.2014 14:04, schrieb Phill Hogland: > A string should be enclosed in quotes, but in a XML statement use the html > entity " or use CDATA.

[WiX-users] Wix 3.8 - Burn - wrong path for payload in ExePackage

2014-06-18 Thread froggie
Hi! I'm trying to create a bootstrapper which is also working when there is no internet connection. So my expectation is the following list of files as a result: * Setup.exe (the bootstrapper with some compressed dependencies) * redist\[dependencies] (a directory with some other dependencies

Re: [WiX-users] Wix 3.8 - Burn - wrong path for payload in ExePackage

2014-06-20 Thread froggie
ou can use attribute "name". > e.g. set name=redist\WindowsXP-KB942288-v3-x86.exe to get your > expected result > Markus > www.xeam-solutions.com > > > froggie hat am 18. Juni 2014 um 13:32 > geschrieben: > > > > > > Hi! > > I'm tryin