Re: [WiX-users] WiX 3.x and 4.0 roadmap for 2015

2015-06-11 Thread Rob Mensching
Message- From: Robert Flaming [mailto:rflam...@exchange.microsoft.com] Sent: Thursday, June 11, 2015 9:15 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] WiX 3.x and 4.0 roadmap for 2015 Thanks Phil for sharing your insights. I see this blog post reports what will happen

Re: [WiX-users] WiX 3.x and 4.0 roadmap for 2015

2015-06-11 Thread Robert Flaming
...@rimage.com] Sent: Wednesday, June 10, 2015 2:32 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] WiX 3.x and 4.0 roadmap for 2015 There are some comments in this <https://www.firegiant.com/blog/2015/6/2/wix-online-meeting-68-highlights/> blog. I missed last nights meeting which i

Re: [WiX-users] WiX 3.x and 4.0 roadmap for 2015

2015-06-10 Thread Phill Hogland
There are some comments in this blog. I missed last nights meeting which is also summarized in another blog post, but there is often a comment about the general plan in the weekly meeting. -- View this message in con

Re: [WiX-users] [WIX]: MSI package creation failed

2015-06-10 Thread Dileep S
Thank you for your information. I got the solution. I have given Package Name as 'PRN'. So, it was failed to create the package. On Tue, Jun 9, 2015 at 2:27 PM, Tobias S wrote: > Just a guess... Not sufficient privileges for ICE Validation: Does this > issue still occur if ICE validation is disa

Re: [WiX-users] [WIX]: MSI package creation failed

2015-06-09 Thread Tobias S
Just a guess... Not sufficient privileges for ICE Validation: Does this issue still occur if ICE validation is disabled? -- ___ WiX-users mailing list WiX-users@lists.sourceforge.

Re: [WiX-users] Wix Built-in Variable escape content

2015-05-20 Thread Rob Mensching
. [mailto:tucaliucmi...@gmail.com] Sent: Wednesday, May 20, 2015 7:55 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Wix Built-in Variable escape content And it this case, how could I escape the values by hand? I was trying to create my own Bootstraper but i cannot use .NET for it

Re: [WiX-users] Wix Built-in Variable escape content

2015-05-20 Thread Tucaliuc Mihai .
And it this case, how could I escape the values by hand? I was trying to create my own Bootstraper but i cannot use .NET for it since in production it may not be installed on every machine. Also I downloaded the source code for wixstdba with the attempt to modify it :D but I didn't get to far with

Re: [WiX-users] Wix and FinalBuilder - InvalidOperationException: Collection was modified; enumeration operation may not execute [SEC=UNOFFICIAL]

2015-05-19 Thread Scott Brown
to attach the logs. Any help appreciated! Thanks good.log <http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/file/n7600353/good.log> bad.log <http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/file/n7600353/bad.log> -- Mes

Re: [WiX-users] Wix and FinalBuilder - InvalidOperationException: Collection was modified; enumeration operation may not execute [SEC=UNOFFICIAL]

2015-05-19 Thread Rob Mensching
Always possible. There's a probably a couple 100,000 lines of code in the WiX toolset. Dropping .pdbs next to the tools and getting the resulting call stack would narrow it down to which line of code is offending. Plus, knowing which version of the WiX toolset would help too since the code keeps

Re: [WiX-users] Wix Built-in Variable escape content

2015-05-19 Thread Rob Mensching
I guess Burn is resolving the variables in the InstallCommand multiple times. Not sure there is a work around except to escape the values by hand. Probably a reasonable thing to file a bug on but fixing it may be hard since it'd likely be breaking behavior change. __

Re: [WiX-users] Wix Built-in Variable escape content

2015-05-14 Thread Sean Hall
http://wixtoolset.org/issues/4763/ Custom code could use IBootstrapperEngine::GetVariableString to get the value of WixBundleOriginalSource, call IBootstrapperEngine::FormatString to escape it, and then call IBootstrapperEngine::SetVariableString to a custom variable and use that custom variable i

Re: [WiX-users] Wix Built-in Variable escape content

2015-05-14 Thread Tucaliuc Mihai .
Hi, I have to follow-up on this. Why is the built-in variable WixBundleOriginalSource not returning the correct location of the installer. It seems to remove the content of square brackets from the path. For example lets say that i'm trying to execute the installer from location "C:/MyTestFolder/S

Re: [WiX-users] Wix installer with modern ui look

2015-05-13 Thread Rob Mensching
Make a bundle: http://robmensching.com/blog/posts/2012/6/25/b-is-for-bundle-and-thats-good-enough-for-me/ _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Gareth Price [mail

Re: [WiX-users] Wix Built-in Variable escape content

2015-05-12 Thread Tucaliuc Mihai .
Hello, Thanks for the quick reply, but I don't think its what I was looking for. I am not using any custom code for the bootstrapper or UI. I am using the standard bundle and trying to send (as an argument) to an executable package the source path from where the bundle originally ran. The problems

Re: [WiX-users] Wix Built-in Variable escape content

2015-05-12 Thread Phill Hogland
Use Engine.FormatString on the path (in your mba or BAFunctions.dll when using WixStdBA, probably in the DetectComplete handler). In mba something like this: path = object.Engine.FormatString(object.Engine.StringVariables["WixBundleOriginalSource"]) Then save 'path' to a string variable for use in

Re: [WiX-users] Wix Built-in Variable escape content

2015-05-12 Thread Tucaliuc Mihai .
#new_here. Not sure if you received this because of the spam blocker. Hello, I'm trying to use the Built-in variable WixBundleOriginalSource in order to send to an executable package the source path from where the bundle originally ran. This is my code The problem is tha

Re: [WiX-users] WiX-users Digest, Vol 107, Issue 43

2015-05-03 Thread Yahoo
Sent from my iPhone > On Apr 28, 2015, at 10:00 PM, wix-users-requ...@lists.sourceforge.net wrote: > > Send WiX-users mailing list submissions to >wix-users@lists.sourceforge.net > > To subscribe or unsubscribe via the World Wide Web, visit >https://lists.sourceforge.net/lists/listinfo

Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors

2015-04-21 Thread Dileep S
Thanks Zig, After adding this property this error messages are in localized. On Tue, Apr 21, 2015 at 11:39 PM, Zig wrote: > Sounds like your WXS might be missing the line: > > > > Worth a sanity check? > > > dileep s wrote > > Yes. Both error messages are there in English and Spanish as well.

Re: [WiX-users] WiX Burn use UILevel from simple UI

2015-04-21 Thread Sean Hall
Is this what you're asking for? http://wixtoolset.org/issues/3789/ On Tue, Apr 21, 2015 at 2:59 PM, Marco Tognacci wrote: > I need to make a Burn Bootstrapper setup using base wix interface, I have > to customize some conditions using the UILevel.Is there any way to read a > property like UILeve

Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors

2015-04-21 Thread Zig
Sounds like your WXS might be missing the line: Worth a sanity check? dileep s wrote > Yes. Both error messages are there in English and Spanish as well. > > Error 1313, Error 1314. > > Translations are avaliable in Spanish WXL file. But, These errors are not > translated when MSI is running

Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors

2015-04-21 Thread Nir Bar
Do all the dialog texts translate OK, and just the errors are in English? - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux and Embedded Platforms - WiX & InstallShield -- View this message in context: http://windows-installer

Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors

2015-04-20 Thread Dileep S
irst and find it. > > Mrugesh > > -Original Message- > From: Dileep S > Sent: Tuesday, April 21, 2015 10:05 AM > To: General discussion about the WiX toolset. > Subject: Re: [WiX-users] [WIX]: Localization issue of Spanish Language > errors > > The followin

Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors

2015-04-20 Thread Mrugesh Patel
et first and find it. Mrugesh -Original Message- From: Dileep S Sent: Tuesday, April 21, 2015 10:05 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors The following errors are not translated. 1) The volume is c

Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors

2015-04-20 Thread Dileep S
The following errors are not translated. 1) The volume is currently unavailable. Please select another. 2) the specified path is unavailable. On Mon, Apr 20, 2015 at 8:49 PM, Nir Bar wrote: > System error messages are in the system's locale. > Windosw Installer error texts in spanish (and ot

Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors

2015-04-20 Thread Nir Bar
System error messages are in the system's locale. Windosw Installer error texts in spanish (and other languages) are in WiX's UI extension. Which error are you getting in English? - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux an

Re: [WiX-users] [WIX]: Localization issue of Spanish Language errors

2015-04-20 Thread Mrugesh Patel
Hi Dileep, which error message you want to localize? May be below line help you. It's work for me. Mrugesh -Original Message- From: Dileep S Sent: Monday, April 20, 2015 5:28 PM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] [WIX]: Localization issue

Re: [WiX-users] Wix preprocessor extension: multiple prefixes

2015-04-15 Thread Nir Bar
Can you post the complete code for the extension? - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux and Embedded Platforms - WiX & InstallShield -- View this message in context: http://windows-installer-xml-wix-toolset.687559.

Re: [WiX-users] [WIX]:How to reset the INSTALLDIR path by changing the path using 'Change' button

2015-04-09 Thread Joel Budreau
Does this post help? - http://stackoverflow.com/questions/19355537/wix-setting-install-folder-correctly > On Apr 6, 2015, at 10:12 AM, Dileep S wrote: > > Hi All, > > I created an MSI with two dialogs. > 1. InstallDirdlg.wxs > 2. ProgressDlg.wxs > > In *.wxs file i have used some custom actio

Re: [WiX-users] WiX vs. Microsoft Platform Ready

2015-04-08 Thread Juan Castro
I also get two errors in the Internal Consistency Evaluator part that I don't have the slightest idea how to fix: ICE20ERROR Exit dialog/action not found in 'AdminUISequence' Sequence Table. ICE68ERROR Invalid custom action type for action 'SetCertificatePath'. There's not

Re: [WiX-users] WiX vs. Microsoft Platform Ready

2015-04-07 Thread Juan Castro
Ooops, sorry, Product.wxs is here: https://github.com/modulogrc/modSIC/blob/master/Modulo.Collect.Service.Wix/Product.wxs 2015-04-07 14:36 GMT-03:00 Juan Castro : > The entire project can be found at https://github.com/modulogrc/modSIC -- > it's a BSD-style license. > > 2015-04-07 10:10 GMT-03:00

Re: [WiX-users] WiX vs. Microsoft Platform Ready

2015-04-07 Thread Juan Castro
The entire project can be found at https://github.com/modulogrc/modSIC -- it's a BSD-style license. 2015-04-07 10:10 GMT-03:00 Brian Enderle : > I have certified one product at our company which uses the WiX installer > without issue, although it wasn't installing a service, just a program. > > C

Re: [WiX-users] WiX vs. Microsoft Platform Ready

2015-04-07 Thread John Cooper
ocoo...@jackhenry.com -Original Message- From: John Cooper Sent: Tuesday, April 7, 2015 8:28 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] WiX vs. Microsoft Platform Ready RBF Files -- Rollback Files. These should be deleted after a successful upgrade. This should

Re: [WiX-users] WiX vs. Microsoft Platform Ready

2015-04-07 Thread John Cooper
eral discussion about the WiX toolset. Subject: Re: [WiX-users] WiX vs. Microsoft Platform Ready I have certified one product at our company which uses the WiX installer without issue, although it wasn't installing a service, just a program. Could you also post your Product.wxs and any rela

Re: [WiX-users] WiX vs. Microsoft Platform Ready

2015-04-07 Thread Brian Enderle
I have certified one product at our company which uses the WiX installer without issue, although it wasn't installing a service, just a program. Could you also post your Product.wxs and any related files? Also, are you doinga x86 or x64 build? Our product was build as x86 and certified on a Wind

Re: [WiX-users] [WIX]: How to display UAC prompt as much early as possible

2015-04-06 Thread Phil Wilson
Do the install with a verbose log and look for the elevation entries that will say something like "MSI_LUA: Elevation required to install product, will prompt for credentials". See what's going on before that. In an MSI the elevation prompts appear at the start of the execute sequence (you don't g

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-04-03 Thread John Cooper
Ext: 431050 |jocoo...@jackhenry.com -Original Message- From: Dileep S [mailto:dileep.sanamp...@gmail.com] Sent: Friday, April 3, 2015 8:24 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI di

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-04-03 Thread Dileep S
S 66214 | Ext: 431050 | > jocoo...@jackhenry.com > > > > -Original Message- > From: Dileep S [mailto:dileep.sanamp...@gmail.com] > Sent: Thursday, March 26, 2015 10:57 PM > To: General discussion about the WiX toolset. > Subject: Re: [WiX-users] [WIX]: How to extract the files

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-04-03 Thread John Cooper
@jackhenry.com -Original Message- From: Dileep S [mailto:dileep.sanamp...@gmail.com] Sent: Thursday, March 26, 2015 10:57 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog. Please find the log files

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-04-03 Thread Dileep S
I have added the log files. can you just tell me the reason why INSTALLDIR is not changing. On Fri, Mar 27, 2015 at 9:27 AM, Dileep S wrote: > Please find the log files attached here > > On Fri, Mar 27, 2015 at 12:31 AM, Nir Bar wrote: > >> Can you upload the log file? >> >> >> >> - >> Nir

Re: [WiX-users] WiX Burn how to suspend and restart setup

2015-03-30 Thread Sean Hall
The engine won't do anything while calling OnResolveSource. Don't return from ResolveSource until you have located the package. If you don't want the UI thread to be the same thread that handles BA calls, then create a new thread for running your UI. That will probably require nontrivial changes

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Sean Hall
> Sent: Monday, March 30, 2015 1:31 PM > To: General discussion about the WiX toolset. > Subject: Re: [WiX-users] Wix bootstrapper only works on .net 4.5 > > I didn't understand you correctly than, sorry. My custom bootstrapper is > already targeting v4.0. What else can I change

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread John Cooper
eral discussion about the WiX toolset. Subject: Re: [WiX-users] Wix bootstrapper only works on .net 4.5 I didn't understand you correctly than, sorry. My custom bootstrapper is already targeting v4.0. What else can I change? Thanks for your help! Met vriendelijke groet, Robin Lutteke Software

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
8010 www.ordina.nl -Original Message- From: Rob Mensching [mailto:r...@firegiant.com] Sent: maandag 30 maart 2015 20:22 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Wix bootstrapper only works on .net 4.5 I did not say that at all. If you want code to run against v4.0 you

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Rob Mensching
...@ordina.nl] Sent: Monday, March 30, 2015 10:55 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Wix bootstrapper only works on .net 4.5 So, because I've got .Net 4.5 installed on my system I cannot create a custom bootstrapper setup for .Net 4.0? Met vriendelijke

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
ssage- From: Rob Mensching [mailto:r...@firegiant.com] Sent: maandag 30 maart 2015 18:17 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Wix bootstrapper only works on .net 4.5 NETFX v4.5 is an in place upgrade of v4.0. If you have v4.5 you no longer have v4.0 on your ma

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Rob Mensching
[mailto:robin.lutt...@ordina.nl] Sent: Monday, March 30, 2015 6:46 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Wix bootstrapper only works on .net 4.5 Just changed my custom bootstrapper to .Net 4.0, but it still is running only under .Net 4.5. My bootstrappercore.config

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
I tried your suggestion, but unfortunately it didn't work. It still crashes. Thanks anyway. Somebody else? Van: John Cooper Verzonden: maandag 30 maart 2015 15:55 Aan: General discussion about the WiX toolset. Onderwerp: Re: [WiX-users] Wix bootstr

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
:0E1C][2015-03-30T15:42:51]i000: Launching Installation Interface Thanks!! Robin Lutteke Van: John Cooper Verzonden: vrijdag 27 maart 2015 17:54 Aan: General discussion about the WiX toolset. Onderwerp: Re: [WiX-users] Wix bootstrapper only works on .net

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread John Cooper
| Ext: 431050 |jocoo...@jackhenry.com -Original Message- From: Lutteke, Robin [mailto:robin.lutt...@ordina.nl] Sent: Monday, March 30, 2015 8:46 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Wix bootstrapper only works on .net 4.5 Just changed my custom bootst

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
tteke Van: John Cooper Verzonden: vrijdag 27 maart 2015 17:54 Aan: General discussion about the WiX toolset. Onderwerp: Re: [WiX-users] Wix bootstrapper only works on .net 4.5 Bootstrapper Prerequisite does not equal Product Prerequisite. If you're using

Re: [WiX-users] WIX force GUI on uninstall

2015-03-27 Thread Nir Bar
You'll need to rewrite the MSI UI for the bundle. A starting point should be: http://wixtoolset.org/documentation/manual/v3/bundle/ If the built-in UI's are not good for you you'll need to author a theme . Of course you can

Re: [WiX-users] WiX Burn ResolveSource event and SetLocalPath(newPath) not working

2015-03-27 Thread Sean Hall
The header file that I pointed to before tells you what to do - return Retry. On Fri, Mar 27, 2015 at 2:47 PM, Marco Tognacci wrote: > I have a WiX Burn Mamaged Bootstrapper with WPF UI.I need to locate the

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-27 Thread John Cooper
Bootstrapper Prerequisite does not equal Product Prerequisite. If you're using a managed bootstrapper (such as the WiX installer), it has its own .NET requirements. If you have a custom bootstrapper written to .NET 3.5, then it's a bug that you hadn't modified the prerequisite of the bootstrap

Re: [WiX-users] WIX force GUI on uninstall

2015-03-27 Thread Tristiu Ileana
Thanks for your response.I am new to WIX so could you please give me a link to a tutorial or an exampleof how this can be made. On the internet I found some thinks but i don't know were to start from.(I want something more simple so I can understand how bootstrapper works.) Ily On Thursd

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-03-26 Thread Dileep S
Please find the log files attached here On Fri, Mar 27, 2015 at 12:31 AM, Nir Bar wrote: > Can you upload the log file? > > > > - > Nir Bar > Freelance Developer > Mail: nir@panel-sw.com > Web: www.panel-sw.com >- C++ On Windows, Linux and Embedded Platforms >- WiX & InstallShiel

Re: [WiX-users] WIX force GUI on uninstall

2015-03-26 Thread Nir Bar
You can do that with burn as a bootstrapper. - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux and Embedded Platforms - WiX & InstallShield -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.na

Re: [WiX-users] [WIX]: How to extract the files in selected folder using MSI dialog.

2015-03-26 Thread Nir Bar
Can you upload the log file? - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux and Embedded Platforms - WiX & InstallShield -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-How

Re: [WiX-users] [WIX]: Execute setup.exe from MSI package location (which is not packaged) using MSI.

2015-03-26 Thread Hoover, Jacob
Use burn... Calling one installer from another installer is not supported. https://msdn.microsoft.com/en-us/library/aa368010(v=vs.85).aspx -Original Message- From: Dileep S [mailto:dileep.sanamp...@gmail.com] Sent: Thursday, March 26, 2015 12:12 AM To: General discussion for Windows Ins

Re: [WiX-users] (WiX) Write product info to registry for dual purpose installer

2015-03-16 Thread Egger, Jerome
I found the problem. MSIINSTALLPERUSER="" is not enough. Only when I set ALLUSERS="1" it's written to HKLM. I expected the dual purpose installer checking the MSIINSTALLPERUSER property and not the ALLUSERS one. -Original Message- From: Egger, Jerome [mailto:jerome.eg...@uster.com] Sent

Re: [WiX-users] WiX 3.9 R2 NuGet package

2015-03-04 Thread Tunney, Stephen
All of these statements make me a sad panda :( -Original Message- From: Sean Hall [mailto:r.sean.h...@gmail.com] Sent: March-04-15 11:48 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] WiX 3.9 R2 NuGet package There is no official Nuget package for WiX. That

Re: [WiX-users] WiX 3.9 R2 NuGet package

2015-03-04 Thread Sean Hall
There is no official Nuget package for WiX. That won't happen until 4.0 stabilizes. There are no plans for releasing 3.x by Nuget package. The nuget package in 4.x will not include the VS integration, you will still need to install WiX for that. On Wed, Mar 4, 2015 at 10:33 AM, Tunney, Stephen

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Sean Hall
them to mean... although that's awfully weird and > not at all recommended. > > _ > Short replies here. Complete answers over there: > http://www.firegiant.com/ > > -Original Message- > From: Marco Tognacci [mailto:mark...@live.it] &

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Rob Mensching
y weird and not at all recommended. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Marco Tognacci [mailto:mark...@live.it] Sent: Monday, March 2, 2015 3:53 PM To: WiX - users Subject: Re: [WiX-users] WiX Burn Command Line O

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Marco Tognacci
Base class in the next version? (perhaps adding a parameter in the Burn Bundle variable)? Thanks > From: r...@firegiant.com > To: wix-users@lists.sourceforge.net > Date: Mon, 2 Mar 2015 23:37:18 +0000 > Subject: Re: [WiX-users] WiX Burn Command Line Options > > The Command o

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Rob Mensching
, March 2, 2015 3:09 PM To: WiX - users Subject: Re: [WiX-users] WiX Burn Command Line Options Is there a built in way for passing the value of a Burn Variable as command line options in managed custom Burn setup?Or I need to parse manualli the command lines args and then read the properties and the

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Marco Tognacci
phogl...@rimage.com > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] WiX Burn Command Line Options > > This thread > <http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Running-Burn-driven-installer-in-quiet-mode-command-line-parameters-td5913001.html#a59

Re: [WiX-users] WiX Burn Command Line Options

2015-03-02 Thread Phill Hogland
This thread details the switches (without digging in the source). Your mba can use the Command object (Command.Display) to determine if Burn

Re: [WiX-users] [WIX]: Support MSI package on Windows 98/ME

2015-02-26 Thread David Connet
On 2/26/2015 5:18 AM, Phill Hogland wrote: > What do you have Product/@InstallerVersion set too? > > This link indicates that you > need to install the Windows Installer 2.0 redistributable to support a > Product/@InstallerVersion='200', but the link to t

Re: [WiX-users] [WIX]: Support MSI package on Windows 98/ME

2015-02-26 Thread David Watson
@lists.sourceforge.net Subject: Re: [WiX-users] [WIX]: Support MSI package on Windows 98/ME What do you have Product/@InstallerVersion set too? This link <http://support.microsoft.com/kb/305496> indicates that you need to install the Windows Installer 2.0 redistributable to support a Product/@InstallerVersio

Re: [WiX-users] [WIX]: Support MSI package on Windows 98/ME

2015-02-26 Thread Phill Hogland
What do you have Product/@InstallerVersion set too? This link indicates that you need to install the Windows Installer 2.0 redistributable to support a Product/@InstallerVersion='200', but the link to the redistributable is no longer active. -- View t

Re: [WiX-users] WiX Burn Can't make appear all Uninstall - Modify - Repair buttons

2015-02-20 Thread Rob Mensching
...@live.it] Sent: Friday, February 20, 2015 1:37 PM To: WiX - users Subject: Re: [WiX-users] WiX Burn Can't make appear all Uninstall - Modify - Repair buttons But in this case why there is the option in the Burn Bundle project?Even if it doesn&#x

Re: [WiX-users] WiX Burn Can't make appear all Uninstall - Modify - Repair buttons

2015-02-20 Thread Marco Tognacci
But in this case why there is the option in the Burn Bundle project?Even if it doesn't works? > From: r...@firegiant.com > To: wix-users@lists.sourceforge.net > Date: Fri, 20 Feb 2015 19:47:44 +0000 > Subject: Re: [WiX-users] WiX Burn Can't make appear all Uninstall - Modif

Re: [WiX-users] WiX Burn Can't make appear all Uninstall - Modify - Repair buttons

2015-02-20 Thread Rob Mensching
ARP decided that only MSIs get a "Repair" button. Definitely a bug. Can you file it against Windows? Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Marco Tognacci [mailto:m

Re: [WiX-users] WiX Bundle - Hide Text on Options page, based on Pre-processer variable

2015-02-17 Thread Tall Tyke
Hi Sean, Many thanks for your help ... worked a treat !! Cheers, Chris. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WiX-Bundle-Hide-Text-on-Options-page-based-on-Pre-processer-variable-tp7599226p7599246.html Sent from the wix-users mailing l

Re: [WiX-users] wix switch between perUser and perMachine

2015-02-16 Thread Egger, Jerome
Thanks Nir! I could make it work with the information of that article. -Original Message- From: Nir Bar [mailto:nir@panel-sw.co.il] Sent: Mittwoch, 11. Februar 2015 17:06 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] wix switch between perUser and perMachine Check this

Re: [WiX-users] WiX Bundle - Hide Text on Options page, based on Pre-processer variable

2015-02-15 Thread Sean Hall
In v3.8 and later versions of 3.x, WixStdBA looks for a state variable based on the name of the control. You can do this by adding the following to your bundle: On Sat, Feb 14, 2015 at 5:32 AM, Tall Tyke wrote: > Hi, > > I have a WiX 3.9 bootsrapper project based on the > StandardBootst

Re: [WiX-users] [WIX]: UAC message display behavior in WIX

2015-02-13 Thread Phil Wilson
The only way to run the UI sequence in elevated mode is to run it (in a CreateProcess way that transfers privilege) from an elevated process, such as an executable with an elevation manifest. --- Phil Wilson On Fri, Feb 13, 2015 at 12:19 AM, Dileep S wrote: > Thank you for the inform

Re: [WiX-users] [WIX]: UAC message display behavior in WIX

2015-02-13 Thread Dileep S
Thank you for the information. Launch -> UAC -> Install. This is the behavior of MSI package. Is there any specification about MSI package for displaying UAC before execute install sequence? If yes, can you please provide me that link. Thanks in advance. On Mon, Feb 9, 2015 at 11:41 PM, Phil Wi

Re: [WiX-users] Wix RemoveFile for removing leftovers

2015-02-12 Thread Sarvagya Pant
Hi Nir, Thanks for the info. Does the removes the main folder where all my components will be installed. I should also be removing the folder that could be created by the executable. ie consider apps and temp inside the main folder. I tried: but during the compilation I get "Unr

Re: [WiX-users] wix switch between perUser and perMachine

2015-02-12 Thread Nir Bar
Check this article: https://msdn.microsoft.com/en-us/library/windows/desktop/dd408068(v=vs.85).aspx It explains how to author a dual-purpose MSI. Nir -- Dive into the World of Parallel Programming. The Go Parallel Website

Re: [WiX-users] wix switch between perUser and perMachine

2015-02-11 Thread Nir Bar
Check this article: https://msdn.microsoft.com/en-us/library/windows/desktop/dd408068(v=vs.85).aspx It explains how to author a dual-purpose MSI. Nir -- Dive into the World of Parallel Programming. The Go Parallel Website

Re: [WiX-users] [WIX]: UAC message display behavior in WIX

2015-02-09 Thread Phil Wilson
It doesn't elevate until it needs to, which is when it starts the actual execute sequence. In other words the UI sequence runs unelevated which is why custom actions requiring elevation don't work there. --- Phil Wilson On Mon, Feb 9, 2015 at 8:47 AM, Hoover, Jacob wrote: > The EXE a

Re: [WiX-users] [WIX]: UAC message display behavior in WIX

2015-02-09 Thread Hoover, Jacob
The EXE and the MSI should behave the same way. You shouldn't get a UAC prompt until you click Install on a burn bundle. This is "standard behavior" of MSI packages which you can't change, and if you were using a bundle you'd be hard pressed to get the bundle to elevate early. -Original

Re: [WiX-users] WiX Burn Chain - multiple packages writing to same ini file

2015-02-07 Thread Tall Tyke
Well no one has replied to this - which is sort of good, as I discovered what [stupid] thing I was doing !! I temporarily put my "developers hat" on for a while instead of my "installers hat" and thought that as I had multiple msi projects all doing a similar thing ( writing different values to th

Re: [WiX-users] WiX MSI or Bundle - calling Windows Explorer with a specified folder

2015-02-05 Thread Joel Budreau
You can have a type-34 custom action launch “C:\Windows\explorer.exe ”. ” Return=“ignore” /> > On Feb 4, 2015, at 9:52 AM, Tall Tyke wrote: > > Hi, > > I posted a question yesterday, which was a bit bizarre and didn't get any > responses - so we have changed tack a bit and now want our instal

Re: [WiX-users] [WIX]: Japanese MSI package creation

2015-02-04 Thread Tunney, Stephen
m] Sent: February-03-15 11:04 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] [WIX]: Japanese MSI package creation Hi Valdimar, I also used same on top of wxs file. If file name is in English there is no problem to create Japanese MSI package. If file name contains

Re: [WiX-users] [WIX]: Japanese MSI package creation

2015-02-04 Thread Valdimar
dileep s wrote > I was not able to see this in my local system. File name appears like > ニ探ニ停€愴致ニ停€ケ_窶凖ィナ耽06.SFC. > How did you convert this filename before adding it to the script? > Do we need to specify any character code to read this? I changed the encoding settings of the browser to be able t

Re: [WiX-users] [WIX]: Japanese MSI package creation

2015-02-04 Thread Nir Bar
Actually the error is not about the file names. It is about the string elements - some of the characters are not in the code-page you stated. You should go over the strings you provided and make sure that all the characters you put there belong to the code-page you specified in the WixLocalization

Re: [WiX-users] [WIX]: Japanese MSI package creation

2015-02-03 Thread Dileep S
Yes, I also set the /codepage/ in the product as well as /summaryCodepage/ in the package element. I was not able to see this in my local system. File name appears like ƒTƒ“ƒvƒ‹_’èŒ^06.SFC. How did you convert this filename before adding it to the script? Do we need to specify any character code t

Re: [WiX-users] [WIX]: Japanese MSI package creation

2015-02-03 Thread Valdimar
dileep s wrote > Can you just check with your Wix Source by specifying Japanese characters? > > In folder it self i was able to see file name as like this > ('ニ探ニ停€愴致ニ停€ケ_窶凖ィナ耽06.SFC'). Ok, I renamed one of my installer files to the above and was eventually able to build successfully. Usually I b

Re: [WiX-users] [WIX]: Japanese MSI package creation

2015-02-03 Thread Dileep S
Hi Valdimar, I also used same on top of wxs file. If file name is in English there is no problem to create Japanese MSI package. If file name contains Japanese characters this problem occurs. Can you just check with your Wix Source by specifying Japanese characters? In folder it self i was abl

Re: [WiX-users] [WIX]: Japanese MSI package creation

2015-02-03 Thread Valdimar
dileep s wrote > Guid="5eb3283d-5a24-405c-9309-f9a13a05077b" > DiskId="1" Feature="Complete"> > > Source="F:\Sample\Japanese\ƒTƒ“ƒvƒ‹_’èŒ^06.SFC" KeyPath="yes" /> > > > I got following error: > error LGHT0311: A string was provided with characters that are not

Re: [WiX-users] Wix 3.9 Burn -> Error 0x80070570: Failed to extract all files from container, erf: 1:4:0

2015-02-02 Thread Hoover, Jacob
0x80070570 = The file or directory is corrupted and unreadable. Did you have your user verify that the digital signature of the bundle they downloaded was intact and valid? Are you using WixStdBA or your own BA? Are the files by chance Encrypted and/or Compressed (by the operating system)?

Re: [WiX-users] WiX 3.9 R2 - Debugging WPF Burn Application

2015-01-31 Thread John Ludlow
We have the following code in our Run method: #ifdef DEBUG Debugger.Launch(); #endif When we compile as debug and then run the bundle, we get a prompt to attach a debugger from this Debugger.Launch() call. On the dev box (with Visual Studio installed) this would normally be a list of ope

Re: [WiX-users] WiX 3.9 R2 - Debugging WPF Burn Application

2015-01-31 Thread Phill Hogland
To debug my WPF BA, I just build all projects against the installed released wix 3.9 RTM (or 3.9 R2 installed). Then I go back to my WPF project and enable debug/trace in project properties, add a Debugger.Launch() line to the code of interest, and set the start path to point at the bundle exe.

Re: [WiX-users] WiX Installer - Copy folder from DVD to HDD and then run bootstrapper from HDD folder

2015-01-30 Thread Tall Tyke
oops Phill, sorry I missed off the second "l" in your name !! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WiX-Installer-Copy-folder-from-DVD-to-HDD-and-then-run-bootstrapper-from-HDD-folder-tp7599027p7599080.html Sent from the wix-users mailing

Re: [WiX-users] WiX Installer - Copy folder from DVD to HDD and then run bootstrapper from HDD folder

2015-01-30 Thread Tall Tyke
Walt & Phil - sorry I didn't reply earlier; been a bit snowed under ( with work, not the real white stuff ! ) - but many thanks for both your replies; they have certainly put me on the right path - my installer now does create the folder and "installs" ( well copies ) the installers into it. Not

Re: [WiX-users] WiX 3.5 projects don't load properly with new Perforce plugin for vs2010

2015-01-28 Thread gapearce
Thanks for looking at this - Downgrading the p4 client cannot be done in this case because the newer p4 server requires the new one. BUT! The good news is that I figured it out. You must manually edit the wixproj file: replace this: SAK SAK SAK SAK with this:

Re: [WiX-users] WiX 3.5 projects don't load properly with new Perforce plugin for vs2010

2015-01-28 Thread Tunney, Stephen
finally got it right and don't modify the .sln or .???proj files. -Original Message- From: gapearce [mailto:mr_gapea...@yahoo.com] Sent: January-28-15 3:33 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] WiX 3.5 projects don't load properly with new Perforce pl

Re: [WiX-users] WiX 3.5 projects don't load properly with new Perforce plugin for vs2010

2015-01-28 Thread gapearce
I just found the version info for the plugin in VS2010 - it is Microsoft Visual Studio 2010 P4VS - Perforce Plugin for Visual Studio 2014.2.97.6861 -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WiX-3-5-projects-don-t-load-properly-with-new-Per

  1   2   3   4   5   6   7   8   9   10   >