Re: [WiX-users] Specifying source subdirectory

2012-05-17 Thread robert_h_yang
Look into using SourceDir, eg. File .. Source='SourceDir\include\foo.h'/ You can use the -b linker option to specify the exact location of SourceDir. See also - http://stackoverflow.com/questions/1811035/spaces-in-my-wix-source-path Martin Sustrik-2 wrote Hi, My source tree has a file

Re: [WiX-users] Burn Theme

2012-03-29 Thread robert_h_yang
I started tinkering with this, and got something like this to work : BootstrapperApplicationRef Id=WixStandardBootstrapperApplication.RtfLicense bal:WixStandardBootstrapperApplication LicenseFile=license.rtf LogoFile=mylogo.bmp SuppressOptionsUI=yes

Re: [WiX-users] Burn: uninstalling an MSI

2012-03-23 Thread robert_h_yang
Thanks ! Yes, it's using the standard bootstrapper. In the meantime I hunted through the source and found MsiEngineCalculateInstallLevel, MsiEnginePlanAddPackage and WiuInitializeExternalUI.. wondering if there is a good way to intercept the UI level in a custom BA. Maybe using

Re: [WiX-users] How to register OLE server?

2011-12-19 Thread robert_h_yang
Heat cannot currently harvest EXE servers. I ended up writing a custom Heat extension, since we have a lot of legacy COM objects, some of which have special dependencies, such as ATL.DLL. We also have a postprocessor step to fix the component GUID's to be consistent from build to build (among

Re: [WiX-users] Write STX (Start of Text / ASCII 2) to a registry string

2011-12-19 Thread robert_h_yang
Have a look at Type=binary (REG_BINARY), eg. RegistryValue Root=HKLM Key=Software\SomeKey Name=SomeValue Value=0200 Type=binary Action=write / -Rob Keith Moore wrote Is there a way to write a the STX character to the registry? I am using Wix 3.5. I have the