[WiX-users] Copy a file to Windows\Help folder

2009-04-24 Thread Michael
Hi, I need to copy a file to Windows\Help folder. I done it by extracts file to install location and then copied to Windows\Help folder, and then deleting during uninstall. snippet for that, Component Id=C_HELP Guid=---- File Id =F_HELP Name=help.chm

Re: [WiX-users] Copy a file to Windows\Help folder

2009-04-24 Thread Rob Mensching
Why not just install to [WindowsFolder]Help? Michael wrote: Hi, I need to copy a file to Windows\Help folder. I done it by extracts file to install location and then copied to Windows\Help folder, and then deleting during uninstall. snippet for that, Component Id=C_HELP

Re: [WiX-users] Reference custom directory

2009-04-24 Thread Brian Bakkebo
Hi dkijc, I think you can do this, but a little unclear about the storing of icons somewhere else? Are you actually installing a program also or just icons? For storing the icons part you have a question in the installer I assume and it asks to download latest icons or choose a directory? If

Re: [WiX-users] Using DTF to merge a merge module int o an msi package

2009-04-24 Thread Frank Neumann
I followed your suggestions and used MergeMod.dll via COM interop in my little repackaging tool. This works perfectly. After the successful merge I still have to do a couple of steps to patch the resulting msi: 1. Extract the merge module's cab file 2. Insert the cab file into the _Streams

[WiX-users] database and windows service not getting uninstalled

2009-04-24 Thread Mark Sinnathamby
Hi, I have created an msi installation pack with Wix, using my own custom UI library. I have added the maintenance dialogs in this library as well. When I install the product, Which consists of a database a windows service and some executables, everything gets installed without any problems.

Re: [WiX-users] Copy a file to Windows\Help folder

2009-04-24 Thread Pally Sandher
Directory Id=WindowsFolder Directory Id=Help Name=Help Component Id=help.chm Guid=PUT-GUID-HERE File Id=help.chm Name=help.chm Source=..\..\Packages\help.chm / /Component /Directory /Directory I suggest you use a more 'unique' name than help.chm

Re: [WiX-users] How To Create Successive Patches That SupersedePrevious?

2009-04-24 Thread Pally Sandher
I've created patches which do exactly what you're trying to do but from your description I can't pinpoint where you're going wrong. If you could post the .wxs file you're using to create your .pcp file, I or someone else on the list should be able to help point you in the right direction. Cheers,

[WiX-users] On Team Build and WiX, and why it hates me.

2009-04-24 Thread Christopher Karper
I've been struggling with this issue for some weeks now, and I've continued to back burner it, but can't do that anymore. I've built a WixExtension, and use it in several installers. But I keep running into problems with Votive / MSBuild loading the extension I've built. I'm guessing I'm having

Re: [WiX-users] Heat 3.0.4923 vs 3.0.5217 vb6 dll output

2009-04-24 Thread Roy Abou Assaly
Can anyone run light 3.0.5217 on this to confirm this? The merge module simple won't build and that Interface element is indeed needed. Thanks again. Roy Abou Assaly wrote: Oh, and one more: 00020420---C000-0046 After that, I was able to build my merge module and link

Re: [WiX-users] How To Create Successive Patches That SupersedePrevious?

2009-04-24 Thread Emanuel Masciarelli
Sure thing. It was a long day so sorry for the lack of detail. Attached you'll find the wxs for the installs and the patches, and the batch files I use. I pass the version numbers into the batch files which in turn pass them along to WiX. I create the installs with buildInstall 0.3.0.0 for

Re: [WiX-users] How To Create Successive Patches That Supersede Previous?

2009-04-24 Thread Emanuel Masciarelli
And apparently no attachments. I'll paste the contents :) Content of original post with attachments: Sure thing. It was a long day so sorry for the lack of detail. Attached you'll find the wxs for the installs and the patches, and the batch files I use. I pass the version numbers into the

Re: [WiX-users] Question about patching

2009-04-24 Thread Brian Rogers
Hey Henk, Although not specifically stated, yes Component GUIDs need to remain stable. A patch is a difference between two MSIs, so that would mean most everything that is unique to a component must stay the same. Someone else on the forum might be able to give you a more detailed answer.

Re: [WiX-users] Heat 3.0.4923 vs 3.0.5217 vb6 dll output

2009-04-24 Thread Neil Sleightholm
I am not sure I understand what you are asking, could you explain? Neil -Original Message- From: Roy Abou Assaly [mailto:royass...@gmail.com] Sent: 24 April 2009 16:02 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Heat 3.0.4923 vs 3.0.5217 vb6 dll output Can anyone run

Re: [WiX-users] WIX : Java Version Opening New Browser issue

2009-04-24 Thread Brian Rogers
Hey Ron, Have you tried setting the custom action to immediate. It will not be able to launch the window as deferred. You might also want to look at using ShellExecute as well. http://msdn.microsoft.com/en-us/library/bb774148(VS.85).aspx Thanks, Brian Rogers Intelligence removes complexity. -

[WiX-users] Major upgrade - feature migration

2009-04-24 Thread Dale Quigg
I'm trying to get feature state migration working on a major upgrade that I invoke by running the MSI. I think I have the appropriate entries in my WiX project. Upgrade Id=$(var.Brand_UpgradeCode) UpgradeVersion Maximum=$(var.Brand_ProductVer) MigrateFeatures=yes IncludeMaximum=no

[WiX-users] How would I register a COM+ service using Wix (DCOMCNFG)

2009-04-24 Thread MacDiarmid, James D
Right now I have to go through DCOMCNFG to set service parameters. How would do this using Wix? Thanks, Jim -- Crystal Reports #45; New Free Runtime and 30 Day Trial Check out the new simplified licensign option that

Re: [WiX-users] Wix Coder forums

2009-04-24 Thread Arun Perregatturv
I think I like the idea of forums. Categories like Announcements Bootstrappers HOW-TO Articles Wix 2.0 Issues Wix 3.0 Issues Heat Issues Votive Issues And many more.. This will make it easier for users to go to specific forum to find their problem related answers rather than one main list for

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Jan Bilek
Thanks for the link. But i've got one more question. I,ve never needed to customize UI of my installer, so i'd like to know how to change attributes (hidden, modeless) of already defined Dialog from my installer code?... Or do i have to browse original Wix sources and make these changes where

Re: [WiX-users] database and windows service not getting uninstalled

2009-04-24 Thread Wilson, Phil
That sounds like something missing in ServiceControl - that's where you explicitly say you want the service deleted with the Remove attribute. Phil Wilson -Original Message- From: Mark Sinnathamby [mailto:mr...@eurocenter.lk] Sent: Friday, April 24, 2009 1:01 AM To:

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Brian Bakkebo
Jan this is a good starting point: http://neilsleightholm.blogspot.com/2008/08/customised-uis-for-wix.html Dizzy Monkey design has a little ok guid. http://www.dizzymonkeydesign.com/blog/misc/adding-and-customizing-dlgs-in-wix-3/ You can also use the guide here by Gábor DEÁK JAHN :

Re: [WiX-users] Wix Coder forums

2009-04-24 Thread Jason Birch
In my experience, the more categories there are for discussion, the less vibrant a community is. Fewer questions are be answered because not everyone follows all of the forums and because, in many cases, developers prefer mailing lists to web interaction. On a couple of the forums I've been

Re: [WiX-users] Wix Coder forums

2009-04-24 Thread MacDiarmid, James D
Hi Rob, It's similar to a mailing list, however one difference is that it would be forum-based organized by sections and categories. I could also have an section where HOW-TO articles written by various developers that use Wix could post their contributions to the site. The forum could have

Re: [WiX-users] Marking portions of strings within wxl for not localization

2009-04-24 Thread Brian Rogers
Hey Sudripta, A wxl file doesn't get processed for localization. You need to make a wxl file per language you want to localize and pass that into light to output the MSI with the correct localization. This means that any text you put there for fonts will be what gets put in the MSI. en-US.wxl

Re: [WiX-users] How would I register a COM+ service using Wix (DCOMCNFG)

2009-04-24 Thread Brian Rogers
Hey James, Have you looked into the WiX COM+ public custom actions at all? Thanks, Brian Rogers Intelligence removes complexity. - Me http://icumove.spaces.live.com On Fri, Apr 24, 2009 at 12:41 PM, MacDiarmid, James D james.macdiar...@eds.com wrote: Right now I have to go through

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Jan Bilek
Wow! So the only way how to get rid off that damned FileInUse dialog is to create complete own version of WixUI template like WixUI_MondoNoLicense? Jesus, it's like hunting mice with an a-bomb! Seriously, isn't there any other easier way how to accomplish this simple task? Is there any way how

Re: [WiX-users] Major Upgrade: some files are randomly not installed

2009-04-24 Thread little.forest
I'd like to post my code in the Upgrade part. This is our Major Upgrade code:     Upgrade Id='$(var.UpgradeCode)'     UpgradeVersion Property=OLDAPPFOUND     OnlyDetect='no'     Minimum=0.0.0     IncludeMinimum=yes

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Karthik Krishnan
It is buried/implied in the documentation, but there is a simpler way. Just change the sequencing of the windows. I haven't done this for Mondo, but here it is for FeatureTree : UI UIRef Id=WixUI_FeatureTree / Publish Dialog=WelcomeDlg Control=Next Event=NewDialog Value=CustomizeDlg1/Publish

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Karthik Krishnan
Sorry, I just pasted my response into the wrong window :) On Fri, Apr 24, 2009 at 7:25 PM, Karthik Krishnan vulca...@gmail.comwrote: It is buried/implied in the documentation, but there is a simpler way. Just change the sequencing of the windows. I haven't done this for Mondo, but here it is

[WiX-users] Light.exe emits seemingly bogus warning

2009-04-24 Thread Jeff Reed
Can someone help me determine if this is a bug or not? I have a .wxs that I authored, and when I link the .wixobj with light.exe, it emits a warning when I have my Compressed attribute on the Package element set to no. If I set it to yes (only thing I'm changing), it goes away. Here's the

Re: [WiX-users] Major Upgrade: some files are randomly not installed

2009-04-24 Thread Jeff Reed
I appreciate if anyone can tell me why some times some files are not installed during Major Upgrade. Perhaps you could try isolating the problem, by taking each version of the product that you've released so far and installing, then uninstalling on a clean machine? I like to use virtual