Re: [WiX-users] Minor upgrade fails to upgrade...

2007-12-11 Thread Ali-Akber Saifee
Hey, Thanks. So does this mean that in the case of drastic upgrading - component removal etc - would it be a better idea to completely remove the product under upgrade and then install? ./Ali On Dec 12, 2007, at 12:45 PM, Bob Arnson wrote: > Ali-Akber Saifee wrote: >> * everything is kept th

Re: [WiX-users] possible bug

2007-12-11 Thread Bob Arnson
Adam Langley wrote: If I configure the File to place the dll in the GAC (vital/MSIL), because the file is no longer placed within the enclosing directory, the registry key is no longer created either. Should this really behave this way? Took me a while to find out what was going on, and

Re: [WiX-users] Minor upgrade fails to upgrade...

2007-12-11 Thread Bob Arnson
Ali-Akber Saifee wrote: > * everything is kept the same except the version and the package code. > * the second package contains new binaries, but actually has a few > components removed, and some custom actions removed. > > upon running the second installer in upgrade mode (msiexec /fvomus > P

Re: [WiX-users] non-administartor upgrading help

2007-12-11 Thread Bob Arnson
Koloszar Jozsef wrote: - initial install should be by administrator. (as we need to create directories/keys all users should have access to). - the product is updated frequently, but only a few files need changing (mainly the main executable and related help files). - non-administrators s

Re: [WiX-users] UTF8 in registry

2007-12-11 Thread Bob Arnson
Tony Hoyle wrote: > I've been tasked with modifying an existing installer to include > localised country names. Unfortunately wix seems to be mishandling the > registry entries and replacing every extended character with '?'. > You need to set a codepage that handles all the characters you w

Re: [WiX-users] Custom Action after XmlConfig

2007-12-11 Thread Bob Arnson
Chris wrote: > xml-file. And I guess XmlConfig will be executed with the call of the > ExecXmlConfig-target but I have no clue what the sequencenumber is since > I cant find it anywhere. > > So I'm wondering what the sequence-number of the XmlConfig-Execution is? > The SchedXmlConfig custom act

Re: [WiX-users] WixUI - Conditional UI elements?

2007-12-11 Thread Bob Arnson
Craig Miller wrote: > Is it possible to place conditions on configurable UI elements? > Specifically, if a particular registry string is set, then I want to disable > the Browse for INSTALLDIR dialog (or do a minimal UI). It would be fine to > show the dialog, but I'm hoping to disable the Browse

[WiX-users] Minor upgrade fails to upgrade...

2007-12-11 Thread Ali-Akber Saifee
Hi, we've been seeing some problems with our upgrade mechanism. the situation is such: 1 - Old version (1.0.1.100) 2- new version (1.0.1.200) * everything is kept the same except the version and the package code. * the second package contains new binaries, but actually has a few components remov

Re: [WiX-users] Disabling the next button in a feature tree dialog when no features are selected

2007-12-11 Thread yixie
So, how can I know there's no feature selected? Thanks! rpriest12 wrote: > > Yixie, > >>From what I am seeing, I would say no. I have spent some time trying to > figure it out and I have also had someone who is pretty knowledgeable > about Microsoft installers take a look and it doesn't seem p

Re: [WiX-users] COM registration problems

2007-12-11 Thread Wilson, Phil
That means it can't find the type library. What do you have in the WiX (or the MSI) for HKCR\Typelib\{typelib guid}\\win32 ? It needs to be a path to where the COM Dll was installed. I think I'd expect the WiX to have [#filekey] for the location. Phil Wilson -- From: [EMAIL

[WiX-users] possible bug

2007-12-11 Thread Adam Langley
Hi guys, I was wondering if the following behaviour is a bug or not (before I posted it to bug-track)... I have an MSI which places a single DLL on the filesystem, and some registry keys, both within the same 'directory' element, and within the same 'component' element. Ie (pseudo-xml)

Re: [WiX-users] Votive on VS 2008?

2007-12-11 Thread Justin Rockwood
Sorry for the delayed response. Yes, the project reference variables were added back to Votive 3, so they should work just fine for you now. Justin -Original Message- From: Chris Bardon [mailto:[EMAIL PROTECTED] Sent: Monday, December 10, 2007 6:54 AM To: Justin Rockwood; WiX Users Subje

Re: [WiX-users] COM registration problems

2007-12-11 Thread Szentpali Janos
I don't think the ("TYPE_E_CANTLOADLIBRARY ($80029C4A)") error comes from the way it is installed. It is more likely a dependency problem: another COM component that your library is using (maybe a type library that it implements) might be missing (or is in the path in the context of the user that r

[WiX-users] WixUI - Conditional UI elements?

2007-12-11 Thread Craig Miller
Is it possible to place conditions on configurable UI elements? Specifically, if a particular registry string is set, then I want to disable the Browse for INSTALLDIR dialog (or do a minimal UI). It would be fine to show the dialog, but I'm hoping to disable the Browse button and directory path ed

[WiX-users] COM registration problems

2007-12-11 Thread Tobias Holm
Hi all, Im having serious problems with a registration of a com-dll. When I install it manually with regsvr32, everything works fine. To install it with wix I do the following: 1. Create a wix file with a component-element containing a file-element pointing to my my dll. 2.

Re: [WiX-users] Custom Action after XmlConfig

2007-12-11 Thread Julie Campbell
> Julie, > thank's for the answer! > Maybe I misunderstand something but I don't think that 3073 is the > sequence number. I guess it's the Type-Number of the CustomAction > and > describes the Custom Action In-Script Option as shown here: > http://msdn2.microsoft.com/en-us/library/aa368069.aspx

Re: [WiX-users] Custom Action after XmlConfig

2007-12-11 Thread Chris
Julie, thank's for the answer! Maybe I misunderstand something but I don't think that 3073 is the sequence number. I guess it's the Type-Number of the CustomAction and describes the Custom Action In-Script Option as shown here: http://msdn2.microsoft.com/en-us/library/aa368069.aspx My log (msiexec)

[WiX-users] UTF8 in registry

2007-12-11 Thread Tony Hoyle
Hi, I've been tasked with modifying an existing installer to include localised country names. Unfortunately wix seems to be mishandling the registry entries and replacing every extended character with '?'. I found a reference to a similar issue in 2005: http://groups.google.co.uk/group/micros

Re: [WiX-users] WiX-users Digest, Vol 19, Issue 33

2007-12-11 Thread Julie Campbell
Chris, Your .msi failed before it ever got to your custom action. There is an XMLConfig example on my wix wiki, http://wix.mindcapers.com/wiki/XmlConfig_Example I rebuilt it and opened the .msi in Orca. XmlConfig is sequenced at 3073, just as it was for you. Your FileReplacer is after that, at

Re: [WiX-users] Disabling the next button in a feature tree dialog when no features are selected

2007-12-11 Thread Robert.Priest
Yixie, >From what I am seeing, I would say no. I have spent some time trying to figure it out and I have also had someone who is pretty knowledgeable about Microsoft installers take a look and it doesn't seem possible. What I hope to do , at this point, is just put a message box that says, "You h

Re: [WiX-users] Custom Action after XmlConfig

2007-12-11 Thread Chris
> > Can you give an exsample how to call a custom action deferred? I try to set > the Execute property to deferred but the custom action is > never called. > > > Source="SourceDir\File\Some.exe" /> > > Execute="deferred" Impersonate="no" /> > > ... > > >1 > I tried the same thing a

Re: [WiX-users] Create Directory with name from Property

2007-12-11 Thread EricT-in-Ottawa
I've rewritten the database and the directory created now has the proper name. Thanks! I'm also supposed to create a shortcut on the desktop to that directory, and the name of the shortcut should be the same as the name of the directory. I've now run into the same problem I think: the name cann

Re: [WiX-users] TARGETDIR

2007-12-11 Thread Stefan Pavlik
SaiTeja wrote: > actually I want to assign C:\ to some property. Presently I hardcoded like > this. > > > And am using this property in many places. Suppose if machine doesn't have > C: drive it will give problems. > So I want to assign default drive to my property ie INSTALLPATH > > Can you te

Re: [WiX-users] TARGETDIR

2007-12-11 Thread SaiTeja
Hi Stefan, Thanks for response. actually I want to assign C:\ to some property. Presently I hardcoded like this. And am using this property in many places. Suppose if machine doesn't have C: drive it will give problems. So I want to assign default drive to my property ie INSTALLPATH Can you t

Re: [WiX-users] Custom Action after XmlConfig

2007-12-11 Thread Julie Campbell
... 1 Julie Campbell [EMAIL PROTECTED] -Original Message- Message: 5 Date: Tue, 11 Dec 2007 09:36:50 +0100 From: "INRO\(Robert Inzinger\)" <[EMAIL PROTECTED]> Subject: Re: [WiX-users] Custom Action after XmlConfig To: Message-ID: <[EMAIL PROTECTED]> Content-Type: t

Re: [WiX-users] TARGETDIR

2007-12-11 Thread Stefan Pavlik
SaiTeja wrote: > But when I mention only TARGETDIR ie Name="SourceDir"> > it is not showing "C:\". It is showing some times D:\ or E:\ > > What is the problem here? How can I get drive "C:\" Hi If the TARGETDIR is not defined explicitly (common case) then it is defaulted to ROOTDRIVE. And ROOTD

[WiX-users] TARGETDIR

2007-12-11 Thread SaiTeja
Hi, it is not showing "C:\". It is showing some times D:\ or E:\ What is the problem here? How can I get drive "C:\" -- View this message in context: http://www.nabble.com/TARGETDIR-tp14271857p14271857.html Sent from the wix-users mailing list archive at Nabble.com.

[WiX-users] SelChildCostPos

2007-12-11 Thread SaiTeja
Hi, SelChildCostPos - This feature requires [1] on your hard drive. here [1] - displays size in MB. I want the only size ie for ex: 55Mb to be assigned to some data type like int or to property. Is it Possible? -- View this message in context: http://www.nabble.com/SelChildCostPos-tp14271258p

[WiX-users] non-administartor upgrades help

2007-12-11 Thread Koloszar Jozsef
hi all! (this being my first post to the list) i'll cut to the chase, what is the best way to achieve the following functionality: - initial install should be by administrator. (as we need to create directories/keys all users should have access to). - the product is updated frequently, but

[WiX-users] non-administartor upgrading help

2007-12-11 Thread Koloszar Jozsef
hi all! (this being my first post to the list) i'll cut to the chase, what is the best way to achieve the following functionality: - initial install should be by administrator. (as we need to create directories/keys all users should have access to). - the product is updated frequently, but

[WiX-users] Msi Logging through coding

2007-12-11 Thread SaiTeja
Hi, We can get logs through 1) command line ie msiexec /i asdfg.msi /log c:/log.txt will create log.txt 2) Like in case of %temp% folder it is created automatically because of proerty voicewarmupx I want to create same log file through coding?

Re: [WiX-users] Not able to use special charecters

2007-12-11 Thread Rob Hamflett
You need to check that your using the correct codepage, and also that the codepage supports that symbol. I found that 932 (Japanese) doesn't. Rob Anidil wrote: > i get an invalid character compile error when tried to include registered > symbol 'R' with my installer UI screen text.Any help to

Re: [WiX-users] Custom Action after XmlConfig

2007-12-11 Thread INRO(Robert Inzinger)
Hi Can you give an exsample how to call a custom action deferred? I try to set the Execute property to deferred but the custom action is never called. > -Ursprüngliche Nachricht- > Von: Bob Arnson [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 11. Dezember 2007 04:59 > An: INRO(Robert

[WiX-users] Not able to use special charecters

2007-12-11 Thread Anidil
i get an invalid character compile error when tried to include registered symbol 'R' with my installer UI screen text.Any help to tackle this problem? -- View this message in context: http://www.nabble.com/Not-able-to-use-special-charecters-tp14269673p14269673.html Sent from the wix-users mailin