Re: [WiX-users] Icon

2006-10-13 Thread Leila Lali (Excell Data Corporation)
Thanks it really helps, Other question is, can I change the Icon of uninstall that shows on Control panel/Remove Program?   Thanks Leila     From: Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: Friday, October 13, 2006 5:45 PM To: Leila Lali (Excell Data Corporation); wix-user

Re: [WiX-users] Icon

2006-10-13 Thread Mike Dimmick
I think you have a typo - I'm not aware that System32 is ever localized.   You should be aware that the file you specify is looked up on the build machine and included in the MSI - it is not the version on the end-user's machine. It's very unlikely that you actually want to do this since it

[WiX-users] Icon

2006-10-13 Thread Leila Lali (Excell Data Corporation)
Hi,   I need to use the aka Icon (cmd.exe) for one of my shortcuts, and it is not working like this:     Does any body know how I can fix that?   Thanks Leila -

[WiX-users] Certificates with WIX

2006-10-13 Thread Muzammil Ahmed
Hi,   I had a question about installing certificates to the personal store. I am using the certificate element as follows:     However, I do not see my certificate within the personal store when I view them through mmc.   Can any one why this is the case? Or if someone has added

Re: [WiX-users] CheckBox Problem

2006-10-13 Thread Agustín K-ballo Bergé
Didn't work either. Here is my code now: Installed Bob Arnson escribió: Agustín K-ballo Bergé wrote: Good advice, but didn't work :(. I wasn't aware that the location of the control items represented the z-order. Now I'm thinking that my problem should be prob

Re: [WiX-users] Register capicom.dll fails

2006-10-13 Thread Mike Dimmick
Oops! I forgot to finish a sentence: "You also have to cater for other developers who are redistributing the DLL who are not using Windows Installer at all (who, hopefully, will have remembered to increment the SharedDLLs count and won't remove the file until this count drops to 0)." -Origina

Re: [WiX-users] Register capicom.dll fails

2006-10-13 Thread Mike Dimmick
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Torsten Rudnick Sent: 13 October 2006 16:06 To: Tony Hoyle Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Register capicom.dll fails > By the way how do I test wheather the capicom.dll is alre

Re: [WiX-users] Question on Conditional Component and Repair

2006-10-13 Thread Rob Hamflett
Conditions are only considered at installation. However, you can set [EMAIL PROTECTED]'yes' and have the condition re-evaluated for a reinstall. Whether or not this will achieve what you want for a repair I'm not sure, but it might be worth a go. Rob Qu, Li wrote: > Hello, > > > > The i

Re: [WiX-users] RegEx replacement

2006-10-13 Thread Andy Britcliffe
Ok will do Bob. Thanks. On 10/12/06, Bob Arnson <[EMAIL PROTECTED]> wrote: Andy Britcliffe wrote:> I have a file that I would like to run a regex on to replace text with> a passed in property. I've been looking through the documentation but > haven't seen anything obvious that would enable me to do

Re: [WiX-users] Register capicom.dll fails

2006-10-13 Thread Torsten Rudnick
Well that is not really an installer. It is only a selfextracting archive which creates a folder with the capicom.dll and some samples. After executing the "installer" you have to do a "regsvr32 capicom.dll" for registering the COM component. I will try the hints of Mike Dimmick on Monday and h

Re: [WiX-users] Register capicom.dll fails

2006-10-13 Thread Mike Dimmick
Tony, that installs all sorts of samples - it's really a developer download and not suitable for distribution to an end-user. In fact, it's the only way for a developer to obtain CAPICOM. The redist.txt in that archive simply says that 'you may distribute capicom.DLL'. The Readme.txt gives the met

Re: [WiX-users] Register capicom.dll fails

2006-10-13 Thread Tony Hoyle
Mike Dimmick wrote: > Also, the CAPICOM team should have provided a better solution for > installation than SelfReg. Ideally they should provide a merge module. > Am I being too idealistic in suggesting that any Platform SDK > redistributable should have a merge module? > There's an official capic

Re: [WiX-users] Register capicom.dll fails

2006-10-13 Thread Mike Dimmick
You need to put a GUID in place of PUT-GUID-HERE in the element. Since there is no stable component GUID that you can use - that all other setup developers who use CAPICOM will be using - you should set the SharedDllRefCount attribute to "yes" on the . That ensures that it won't be prematurely rem

[WiX-users] Register capicom.dll fails

2006-10-13 Thread Torsten Rudnick
I am trying to register the capicom.dll located inside of the system folder. In WiX v2 I generated a fragment with tallow and all works fine. Now I switched to WiX v3 and used heat to generate the related fragment but it seems not to work. What goes wrong? I tried: > heat.exe file c:\windows\

Re: [WiX-users] Install service using unprivileged user

2006-10-13 Thread Albert Tuulas
Thank you Valery, I have managed to solve it just as you wrote. It seems that there's no other way to do subj with WiX (or it's possible to install, but not possible to start). Best regards -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Valery Drotenko