Re: [WiX-users] Nit error while trying to run Lux tests.

2013-08-30 Thread Bob Arnson
On 30-Aug-13 04:33, Ihor Horovetskyi wrote: > 'nit.exe : error NIT0001 : This installation package could not be opened. > Verify that the package exists and that you can access it, or contact the > application vendor to verify that this is a valid Windows Installer package.' What happens if you run

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-08-30 Thread Bob Arnson
On 28-Aug-13 13:29, Steven Ogilvie wrote: > FontId="2" HideWhenDisabled="yes" > DisablePrefix="yes">#(loc.SuccessHeader) > FontId="2" HideWhenDisabled="yes" > DisablePrefix="yes">#(loc.SuccessSetupHeader) > Height="30" FontId="2" HideWhenDisabled="yes" > DisablePrefix="yes">#(l

[WiX-users] Add install InstallScopeDlg to WixUI_InstallDir.wxs

2013-08-30 Thread jo...@msli.com
Hay anyone modified WixUI_InstallDir.wxs to enable a per-user vs. per-machine install? I really like the flow of WixUI_InstallDir, but I need to add an install scope (per-user vs per-machine), to make it more like the old VS Setup Project. I am trying to take pars of WixUI_Advanced.wxs and add th

Re: [WiX-users] error CNDL0123 : The Verb/@Sequence attribute's value, '0', is not in the range of legal values. Legal values for this attribute are from 1 to 32767.

2013-08-30 Thread John Cooper
Sequence="1"? It's telling you that Sequence="0" is illegal. Why do you want Sequence="0"? -- John Merryweather Cooper Build & Install Engineer -- ESA Jack Henry & Associates, Inc.(r) Shawnee Mission, KS 66227 Office: 913-341-3434 x791011 jocoo...@jackhenry.com www.jackhenry.com -Orig

Re: [WiX-users] [Wix]: Read a binary file data from MSI file using Wix custom action

2013-08-30 Thread John Cooper
You can stream the file from the Binary Table to the absolute path of your choice (that you have permissions to), and then read it at your leasure, but if the file is available at build time, it will be a lot cheaper and more reliable to read it then. Depending on the type of file, you may even

Re: [WiX-users] error CNDL0123 : The Verb/@Sequence attribute's value, '0', is not in the range of legal values. Legal values for this attribute are from 1 to 32767.

2013-08-30 Thread Brian Payne
As I mentioned before, this was generated by the dark.exe (The decompiler). What value should I change to? Since the decompiler all use "0", should I change it to "1"? Thanks! On Fri, Aug 30, 2013 at 12:54 PM, John Cooper wrote: > Sequence="1"? It's telling you that Sequence="0" is illegal.

Re: [WiX-users] path depends on os

2013-08-30 Thread JoeMarks
Not sure, but I think that what you are looking for is [ProgramFilesFolder] Take a look at http://wixtoolset.org/documentation/manual/v3/howtos/files_and_registry/add_a_file.html Not directly related to m

[WiX-users] WiX Samples

2013-08-30 Thread Kevin Goyena
I need to create a new WiX project to replace the Setup project I had in VS2010. My app is pretty simple as it contains the following: One primary executable A few secondary tools/executables Some .htm documentation files Some other miscellaneous files; text, sound/wav, jpg, pdf One file t

Re: [WiX-users] Add install InstallScopeDlg to WixUI_InstallDir.wxs

2013-08-30 Thread John Cooper
Well conceptually, you don't need the InstallDir dialog if you're installing perUser as it's always going into the LocalAppData tree anyway. It's a pretty straight forward translation of WixUI_Advanced. Even the somewhat troublesome custom actions could be moved to another file since they run

Re: [WiX-users] WiX Samples

2013-08-30 Thread Phil Wilson
Good start here: http://wix.tramontana.co.hu/ http://blogs.technet.com/b/alexshev/archive/2008/02/10/from-msi-to-wix.aspx Phil Wilson On Fri, Aug 30, 2013 at 11:47 AM, Kevin Goyena wrote: > I need to create a new WiX project to replace the Setup project I had in > VS2010. My app is pretty si

[WiX-users] error CNDL0123 : The Verb/@Sequence attribute's value, '0', is not in the range of legal values. Legal values for this attribute are from 1 to 32767.

2013-08-30 Thread Beekeeper2020
I am getting this message when I use candle.exe : error CNDL0123 : The Verb/@Sequence attribute's value, '0', is not in the range of legal values. Legal values for this attribute are from 1 to 32767. This is from a .wxs file generated by dark.exe (decompiler). Here is the snippet from the .wxs f

Re: [WiX-users] visual c++ redist merge modules - how to test ?

2013-08-30 Thread Phil Wilson
The merge modules don't get installed as msm files - they get merged into the MSI and their content is installed, so basically you're just looking for the Dlls. Installed location can vary depending on the OS. A verbose log will tell you where. Phil Wilson On Fri, Aug 30, 2013 at 2:55 AM, nks

Re: [WiX-users] Add install InstallScopeDlg to WixUI_InstallDir.wxs

2013-08-30 Thread jo...@msli.com
Thank you for your concern, but Yes, I do want the per-user/per-machine choice in my installer. - Only clients Windows 7 or higher are to be supported. - I only perform major upgrades. - The Setup Project msi allows this choice and thats what I'm replacing, so it must also offer the choice. Have y

Re: [WiX-users] Add install InstallScopeDlg to WixUI_InstallDir.wxs

2013-08-30 Thread John Cooper
Although being able to specify perUser or perMachine is superficially very appealing, it has significant implications for patching and upgrading that are unacceptable in many deployment scenarios. Make sure you're will to live with ALL of those implications. In my experience, too many products

[WiX-users] path depends on os

2013-08-30 Thread Lars Lars
Hello, I have a wix setup which include a merge modules (32 bits). The Merge/@SourceFile contains the path to the merge module. However today I discovered that the merge modules are located in different path depending on winxp or win7 (64 bit). On WinXP they are located in C:\Program Files\Comm

[WiX-users] moving from VS2010 to VS2012 - ClickOnce deployment is gone

2013-08-30 Thread Kevin Goyena
I'm moving my winforms app from vs2010 to vs2012. I currently have a clickonce deployment on my web site and it works great. Is there a good tutorial out there for using WiX to replace the functionality I have in my clickonce deployment project?

[WiX-users] [Wix]: Read a binary file data from MSI file using Wix custom action

2013-08-30 Thread dileep s
Hi All, How to read a binary file data from MSI file using Wix custom action? I have version information in Binary File. Could anyone help me on this.. Regards, Dileep -- Learn the latest--Visual Studio 2012, SharePoint

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-08-30 Thread Steven Ogilvie
No sorry I am not using 3.8 I am using 3.7 with the Extended BA from Neil -Original Message- From: Bruce Cran [mailto:br...@cran.org.uk] Sent: August-30-13 9:00 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Add text to final window in burn bootstra

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-08-30 Thread Bruce Cran
Do you have a diff (e.g. using 'git diff') you can attach? -- Bruce Sent from my iPhone On 28 Aug 2013, at 18:29, Steven Ogilvie wrote: > Here is the code from BA > > Theme wxl file > Setup Successful > Setup Successful > Uninstall Successful > > Setup Failed > Setup Failed > Uninstall

[WiX-users] visual c++ redist merge modules - how to test ?

2013-08-30 Thread nkshirsagar
Hello folks.. How do I test whether the merge modules for the visual c++ redistributable are succesully installed on the machine ? I did uninstall the visual c++ redist runtime from the target machine and after installing my wix generated msi, seems like things are working well.. but just to confi

[WiX-users] Nit error while trying to run Lux tests.

2013-08-30 Thread Ihor Horovetskyi
I'm trying to follow this with wix 3.8: http://wixtoolset.org/documentation/manual/v3/overview/lux.html But during executing 'nit' tool, I've got an error: 'nit.exe : error NIT0001 : This installation package could not be opened. Verify that the package exists and that you can access it, or c