[WiX-users] Patching and the new limitation of Directory to 72 characters

2007-12-21 Thread Cristian Baiu
Hello, I have a product which I've already delivered. The RTM setup of this product was built with WIX 3.0.3210.0 and contains some directories which unfortunatelly have the ID longer than 72 characters (they came from a MSM and because of the MSM's GUID suffix they got longer than 72 - WIX had

Re: [WiX-users] Website problems

2007-12-21 Thread Rob Mensching
1. Putting the WebSite under a Component causes the WebSite's lifetime (install/uninstall) to be controlled by that Component. 2. The WebSite needs a Directory attribute provided when it is going to be installed/uninstalled. 3. A WebSite element cannot be the child of a Directory element. If

Re: [WiX-users] digitally signing (authenticode) with wix?

2007-12-21 Thread Rob Mensching
More specifically, signing is a build task (think MSBuild or NAnt) not a build setup task (aka: WiX). Bob Arnson wrote: Craig Miller wrote: Is there an easy way to digitally sign the msi w/ the WIX toolkit or should I use signtool by hand? WiX doesn't sign.

Re: [WiX-users] Unicode. Unicode?

2007-12-21 Thread Rob Mensching
One thing I remember the MSI team mentioning was that certain system dialogs the Windows Installer puts up will show up with boxes because the Windows Installer does not understand the UTF-8 codepage. Basic UI maybe... I forget the specific dialogs (if they even said)? Tony Hoyle wrote: DEXK

Re: [WiX-users] problems browsing WiX.sourceforge.net

2007-12-21 Thread Rob Mensching
Can you provide more details about these crashes? There should be a stack dump with lots of information. Calin Iaru wrote: Some links are down like the download links. Sometimes the browser won't even open WiX.sourceforge.net. What is wrong? I could not download WiX 2 nor could I take any

Re: [WiX-users] How to associate certificate with IIS website without adding certificate to store?

2007-12-21 Thread Rob Mensching
Try putting the Certificate element in a permanent Component. Lin wrote: Hi, I am new to Wix so I hope this is the correct mailing list for such questions. I am using Wix3. I would like to associate a certificate with a IIS website. The certificate already exists in machine store, so I

Re: [WiX-users] Allowed chars for the cabinet attribute in the Media element?

2007-12-21 Thread Rob Mensching
That should be a safe set of characters. I haven't pushed it myself. md5hans wrote: Hi! Which chars are allowed (or not allowed) when defining the cabinet name for the Media element, is it the same as for a DOS file name? Regards Hans

Re: [WiX-users] Building WiX v3.0.3617

2007-12-21 Thread Rob Mensching
Thanks for these notes. Moving to CLR v2.0 was an interesting struggle and I don't think we have all of our build dependencies worked out. The AssemblyInfo.cs is totally one of those files that I've messed up. I've been struggling with the freaking keys for a while (keeping the private

Re: [WiX-users] Uninstall a Website

2007-12-21 Thread Rob Mensching
What is the value for your PORT property during uninstall? Meyrignac, Jean-Charles wrote: I have a weird bug while uninstalling a website on Windows XP, using the MSI installer: when the application is uninstalled, *IIS is completely* *broken*. Here is the part installing my web site:

Re: [WiX-users] Add User Group

2007-12-21 Thread Rob Mensching
Groups cannot be created with the existing set of Custom Actions. More code needs writing. Krishna Kishore B wrote: How can I add a User Group in Windows 2003 using WIX Regards Krishna

Re: [WiX-users] UTF8 in registry

2007-12-21 Thread Rob Mensching
Don't hold your breath. sigh/ Tony Hoyle wrote: DEXK JAHN, GXbor wrote: Windows Installer still doesn't handle Unicode--I can't simply understand how the developers got away with this :-)) So, it's not a WiX limitation... Maybe MSI 4 wil fix it.. we can only hope. Tony

Re: [WiX-users] Possible to install event manifests without using wevtutil?

2007-12-21 Thread Rob Mensching
Latest build of WiX v3 has support for Event manifests in Vista. Bob Arnson wrote: Jared Hughes wrote: Currently my product is running a custom action of wevtutil.exe im [manifest_filename] to install an event manifest and create logging channels with the Windows event logging system,

Re: [WiX-users] SQLExtension

2007-12-21 Thread Rob Mensching
Do you have a bug number that explains this in more detail? I'm not sure what the wiki is referring to. Quattro IV wrote: Hello, the wix wiki regarding the SQLExtension mentions There is a serious bug with how the *SqlExtension* handles the SqlDatabase Element

Re: [WiX-users] Unicode. Unicode?

2007-12-21 Thread Tony Hoyle
Rob Mensching wrote: One thing I remember the MSI team mentioning was that certain system dialogs the Windows Installer puts up will show up with boxes because the Windows Installer does not understand the UTF-8 codepage. Basic UI maybe... I forget the specific dialogs (if they even said)?

Re: [WiX-users] Uninstall a Website

2007-12-21 Thread Mike Dimmick
To add to Rob's extremely terse answer ;) the IIS custom actions use the IP address/port/Host header tuple to discover the internal website ID for the site. Unfortunately there's no special place to store in the metabase that the website/virtual directory was installed by WiX - not even a field

Re: [WiX-users] Patching and the new limitation of Directory to 72 characters

2007-12-21 Thread Bob Arnson
Cristian Baiu wrote: Obivously, I will need to cut shorter this directory ids in order to be able to build my upgrade setup. The question is : will this affect the patch (I will have the same components in the RTM and upgrade setups but with different parents in the Directory tables) ?

Re: [WiX-users] Problems deploying Microsoft MSM module to SystemFolder

2007-12-21 Thread Bob Arnson
Bryan C. Boettcher wrote: Well, it sort of helped. I got rid of about 7 errors, and I'm now left with the following 8: ICE03: Table: MIME Column: ContentType Missing specifications in _Validation Table (or Old Database) ICE03: Table: MIME Column: Extension_ Missing specifications in

[WiX-users] Creating patches for a feature that has condition statements

2007-12-21 Thread Unmesh Vartak
Hello I have WiX files that deploys features based on conditions. However I am having trouble creating a patch (msp) for this WiX file, especially for files that are deployed by conditional statements. I am following the recommended process for creating msp. 1. Candle patch.wxs for

Re: [WiX-users] How to find temporary location path in MSI

2007-12-21 Thread Bob Arnson
Sneha Gharpure wrote: Is there any way to find out the temporary location? No, it's done on demand only. Custom actions should have no dependencies on where they're running from, taking everything they need from the registry or command-line arguments. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] Label text color change during branding

2007-12-21 Thread Bob Arnson
Levon Levonian wrote: Will this require defining in my XML code complete UI of every standard dialog? Ideally, I just want to reference the needed label and change its font color. I am using the standard Install_Dir type of UI, with no actual UI code in my XML. Using WixUI, you can

Re: [WiX-users] Allowed chars for the cabinet attribute in the Media element?

2007-12-21 Thread Bob Arnson
Rob Mensching wrote: That should be a safe set of characters. I haven't pushed it myself. md5hans wrote: Hi! Which chars are allowed (or not allowed) when defining the cabinet name for the Media element, is it the same as for a DOS file name? The Cabinet topic in the SDK is

Re: [WiX-users] Shortcuts, ICE43, and Wix 3.0

2007-12-21 Thread Bob Arnson
Doug Payne wrote: My application installs for ALLUSERS (ALLUSERS=1). I want to crate a start menu shortcut which points to the product's root installation folder. This implies that I want a non-advertised shortcut, since an advertised shortcut points to the product feature, and launches the

Re: [WiX-users] Wix Newbie - Need help learning something.

2007-12-21 Thread Bob Arnson
Marc b wrote: Error LGHT0204: ICE38: Component Dirs installs to user profile. It must use a registry key under HKCU as its KeyPath, not a file. Error LGHT0204: ICE43: Component MainExe has non-advertised shortcuts. It should use a registry key under HKCU as its KeyPath, not a file. Error

Re: [WiX-users] Wix Newbie - Need help learning something.

2007-12-21 Thread Marc b
This is perfect thanks Bob Arnson-6 wrote: Marc b wrote: Error LGHT0204: ICE38: Component Dirs installs to user profile. It must use a registry key under HKCU as its KeyPath, not a file. Error LGHT0204: ICE43: Component MainExe has non-advertised shortcuts. It should use a registry

Re: [WiX-users] How to associate certificate with IIS website without adding certificate to store?

2007-12-21 Thread Lin
Thanks, putting the Certificate element in a permanent Component prevented the certificate from being uninstalled. While the above solution works, I am curious to know if Wix allows the ability to only associate certificates with websites without actually installing the cert? Thanks, Dakun

Re: [WiX-users] Patching and the new limitation of Directory to 72 characters

2007-12-21 Thread Cristian N. Baiu
Hi Bob, Most probably I will not have to patch the files in those directories because they are not binaries. But just in case : could you please detail the problems I might have if I patch those files ? (if I will ever get a request to patch them it would be good for me to know what problems