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] Converting VS Setup project to WiX

2013-08-23 Thread Brian Payne
SharedDllRefCount once is set to "yes", you should not change it ever. The reason of course, you have dll out on the customer site using the older version that will have conflicting issue. You can set it to "no", but you need to write a custom action that will set the SharedDllRefCount to 1 as a

Re: [WiX-users] [Wix]: Copy the INI file to local temp folder before Install Files action (MSI action)

2013-08-23 Thread Brian Payne
Write a Custom Action (CA) in the UI sequence, the CA contained the embedded resource of the INI file for you to write out. If you're doing that in a Windows .DLL file, here is one way to do it: HRSRC hRCStub; DWORD dwStubSize; HGLOBAL hGBStub; char *pStubData; FILE *fOut; char szOutFile[MAX_PATH]

Re: [WiX-users] Wix: Create OS specific installer using Wix?

2013-08-23 Thread Brian Payne
Property VersionNT http://msdn.microsoft.com/en-us/library/windows/desktop/aa370556(v=vs.85).aspx For 32/64 bit detection, write a custom action and set a Public Property. On Fri, Aug 23, 2013 at 4:59 AM, ak m wrote: > Dear All, > > How to create OS specific installer using Wix? > > For Examp