Re: [WiX-users] Using Registered Sign in Name property

2007-03-09 Thread Rob Hamflett
What codepage are you using? The copyright R symbol shows up fine in our English installer, but it's just not in the Japanese codepage, so we leave it out for our Japanese installers. I see you've got Language set to 1033. Is the codepage set to 1252? Rob Trevor Clifton wrote: > An example

[WiX-users] Password input during the installation

2007-03-09 Thread pobox77
Hi, I ask the user to enter a password during the installation, which I then write into a config file (xmlfile). Do wix have a password input field instead of edit field to be able to hide the entered password ( * instead of readable characters)? If not, could somebody send me an example how to d

[WiX-users] Password input during the installation

2007-03-09 Thread Peter Varga
Hi, I ask the user to enter a password during the installation, which I then write into a config file (xmlfile). Do wix have a password input field instead of edit field to be able to hide the entered password ( * instead of readable characters)? If not, could somebody send me an example how to d

[WiX-users] Uninstalling a deleted SQL database

2007-03-09 Thread Peter Varga
Hi, How can I uninstall an sqldatabase installed by Wix if the database has been unfortunately deleted in the SQL Server Management Studio. If I start .msi, I have the modify dialog because the project is already installed. If I try to uninstall (start .msi, select Remove) I get an unknown db er

[WiX-users] Registry settings based on registry settings

2007-03-09 Thread Jesper Hogstrom
Trying to wrap my haed around the following scenario: a) I need to write some information to the registry. b) If a certain registry key path in HKCU exists, I want to write to that path, otherwise to that same path but in HKLM. What would be the best approach to achieve this in wxs? --Jesper -

Re: [WiX-users] Password input during the installation

2007-03-09 Thread Rob Hamflett
I think [EMAIL PROTECTED]"yes" is what you want. Rob Peter Varga wrote: > Hi, > > I ask the user to enter a password during the installation, which I > then write into a config file (xmlfile). Do wix have a password input > field instead of edit field to be able to hide the entered password ( >

Re: [WiX-users] Registry settings based on registry settings

2007-03-09 Thread Rob Hamflett
You could create 2 components; one to write the HKLM value, one to write the HKCU value. Use a RegistrySearch for the HKCU value, which sets a property with an initial value of "HKLM". Then use this as a condition on the 2 components. The former conditioned on YourProperty = "HKLM", the la

Re: [WiX-users] Password input during the installation

2007-03-09 Thread Levi Wilson
You could use the @Password attribute of the Edit control. On 3/9/07, pobox77 <[EMAIL PROTECTED]> wrote: Hi, I ask the user to enter a password during the installation, which I then write into a config file (xmlfile). Do wix have a password input field instead of edit field to be able to hide

[WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Scott Sam
I want to you use heat to create the wix files for the latest version of our product, but I can't find any documentation for it. Is there any out there? The problem I'm having is that heat automatically generates registry entries for any dll in the directory, but I don't want it to. Anyone know

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Levi Wilson
I'm not sure about having heat *not* generate registry entries, but here is an article that was written about heat that might be useful: http://installing.blogspot.com/2006/04/heatexe-making-setup-easier.html On 3/9/07, Scott Sam <[EMAIL PROTECTED]> wrote: I want to you use heat to create the

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Scott Sam
Thanks, I saw that already. It only gives very basic info, I was hoping for some more in depth documentation. It would really be helpful if I could get the wxs files create by heat without the registry entries. From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: Friday, March 09, 2007 10:07 A

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Levi Wilson
Why is it exactly that you don't want it to generate the registry values? On 3/9/07, Scott Sam <[EMAIL PROTECTED]> wrote: Thanks, I saw that already. It only gives very basic info, I was hoping for some more in depth documentation. It would really be helpful if I could get the wxs files crea

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Scott Sam
We don't need them, and I don't want to put anything into the registry that I don't have to. From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: Friday, March 09, 2007 10:26 AM To: Scott Sam Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Heat. Can it not generate registry entries?

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Levi Wilson
Typically the registry entries that get automatically generated by heat.exewill come from your COM dlls and such, since this is the preferred way to register a COM dll rather than calling regsvr32 on each dll. So, whatever registry entries are being generated, are probably needed for your install

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Scott Sam
No they are not. We don't use regsvr32 to register any dlls, and there are no registry entries in the wix for the last version of our software, and it all worked. Trust me we don't need to make any registry entries for the software to work. I guess I can just manually delete them from the wxs fil

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Richard.Foster
I'd say you need to find out what those registry items are for. You're right that there should be a "better way", and that is Heat should not be including them (unless they really are needed). Since they are appearing, it sounds as if either you have: A) Found a bug in Heat B) There

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Levi Wilson
Pun intended? On 3/9/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I'd say you need to find out what those registry items are for. You're right that there should be a "better way", and that is Heat should not be including them (unless they really are needed). Since they *are* appearing,

Re: [WiX-users] ICE39 Validation Failure

2007-03-09 Thread Bob Arnson
Jon LeCroy wrote: There may be other more appropriate articles, but I was looking at: http://msdn2.microsoft.com/en-us/library/w1behyzx(VS.80).aspx which lists x86. That's the Visual Studio deployment project system "help

Re: [WiX-users] Icon attribute on ProgId elements

2007-03-09 Thread Bob Arnson
Nick Johnson wrote: > What's the format of this? Specifying the ID of any icon listed in an Icon > element results in me getting the error "Unresolved reference to symbol > 'File:iconid' in section 'Product:myguid". Every variation I've tried has > resulted in this error, or an error about the form

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Bob Arnson
Scott Sam wrote: Thanks, I saw that already. It only gives very basic info, I was hoping for some more in depth documentation. It would really be helpful if I could get the wxs files create by heat without the registry entries. Use the -sreg switch. -- sig://boB http://bobs.org -

Re: [WiX-users] MSI question

2007-03-09 Thread Bob Arnson
Please keep /wix-users/ on the thread so everyone can participate. Mike Poulson wrote: Not really WIX related but more MSI. I have an MSI that has all the working logic to support major upgrades. But if I take that MSI and advertise it in AD (via GPO) the upgrade check, migration of featu

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Scott Sam
Thanks that is exactly what I was looking for. Is there somewhere I could look to find all of the various switches for heat? I looked around and can't find anything except that blog linked to earlier. Also Is there a reason that each file is in its own fragment? That really isn't that big of

Re: [WiX-users] Heat. Can it not generate registry entries?

2007-03-09 Thread Bob Arnson
Scott Sam wrote: Thanks that is exactly what I was looking for. Is there somewhere I could look to find all of the various switches for heat? The ultimate documentation: src\ext\UtilExtension\wixext\UtilHeatExtension.cs. Also Is there a reason that each file is in its own fragment? Tha

Re: [WiX-users] MSI question

2007-03-09 Thread Wilson, Phil
Also see if FindRelatedProducts found the older product, and beware of the per-user/per-machine mismatch. If the original is per-system and the GPO has defaulted the new one to per-user it won't upgrade. Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROT

[WiX-users] Using Registered Sign in Name property

2007-03-09 Thread Trevor Clifton
Thanks Rob, The codepage was not set for the Product which is what describes the resulting msi file. Instead I had set the SummaryCodepage for the package. It is now set in both places to 1252 and the Registered Symbol shows up correctly. -Trevor -Original Message- From: [EMAIL PROTECTED

[WiX-users] Uninstalling

2007-03-09 Thread Jason Erickson
I have the installer working well enough for my purposes. I've got it so that it verifies .Net2.0 is installed, and then continues with my installation. My installation has the following directory structure. -mainFolder -Plugins When I un-install using either the installer or windows Add/Remo

Re: [WiX-users] ServiceArgument

2007-03-09 Thread Bei Liu (Volt)
I used the ServiceControl element, however, it gives me error msg when I install the product: "verify that you have sufficient privileges to start system services." In fact, I can start the service by just using the CustomAction without any error. Do you happen to know what the problem is? Tha

[WiX-users] WiX at TechEd 2007?

2007-03-09 Thread Peterson, Joel
This is more for Rob and Bob, but if anyone else has any details I'd love to hear them. It actually crossed my mind to ask this as I was reading Rob's blog on the Designed for Operations Workshop. Is there any details for WiX-related breakout sessions, Birds of a Feather sessions, and/or Techni

[WiX-users] FW: ServiceArgument

2007-03-09 Thread Bei Liu (Volt)
It looks like that ServiceControl is WindowsNT based ... From: Bei Liu (Volt) Sent: Friday, March 09, 2007 10:38 AM To: Rob Mensching; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] ServiceArgument I used the ServiceControl element, however, it gives me error msg when I install the pro

[WiX-users] Can't set the order of the sequence of CustomAction to 1

2007-03-09 Thread Bei Liu (Volt)
In the uninstall steps, I want to set my custom action to order '1' just to prevent the following dialog popup: [cid:image001.png@01C76240.711C7D70] My custom action will close the application. So there shouldn't be any popup. However, when I tried to do this, I got the following error: DEBUG:

Re: [WiX-users] property in a conditional statement?

2007-03-09 Thread Sigurd Stenersen
I must have been tired when I wrote that. If Conditions work, they are usually a better choice than CAs. However, CAs support conditions for tags that can't use Conditions. Sigurd "Rob Mensching" <[EMAIL PROTECTED]> wrote > Why a CustomAction? Would a Condition under the Feature element wo