Re: [WiX-users] Auto deletion of reg values written by MSI

2011-08-22 Thread Rob Hamflett
Try Component@Permanent='yes' Rob On 19/08/2011 18:19, Pratapa Reddy Sanaga wrote: Hi, Is there a way I can ask the MSI not to delete the registry values it has written to the MSI during uninstallation? I'm looking at the RegistryKey's Action options. create or createAndRemoveOnUninstall

Re: [WiX-users] WiX Wrappers: For or against?

2011-08-22 Thread Peter Shirtcliffe
I use WixEdit and like it. It's a GUI editor plus a simple wizard and a couple of other features. You can switch into the .wxs file easily using one of the menu items that runs a text editor of your choice and it will detect and reload changes when you switch back. The files it generates can be

Re: [WiX-users] WiX Wrappers: For or against?

2011-08-22 Thread Pally Sandher
I'd echo Peter's sentiments of WiXEdit. I used it a lot when I was learning WiX Windows Installer (back in the v2.0 days) it was invaluable as a teaching aid alongside the WiX tutorial. However I find Votive (WiX native plug-in for Visual Studio 2005/2008/2010) a far better solution all round

Re: [WiX-users] installing directory contents and its subdirectories and their contents on target machine

2011-08-22 Thread Pally Sandher
No, you'll need to create a separate CopyFile element for each subdirectory. The directory paths need to exist in the Directory Table otherwise Windows Installer doesn't know anything about them. You can't put completely unknown stuff on to the target machine in the first place to use the

Re: [WiX-users] WiX Wrappers: For or against?

2011-08-22 Thread James Johnston
I second the vote for WixEdit. I used it when first setting up my installer. Helped me learn WiX to some extent. Now that the files are littered with preprocessor commands and I only make small, minor changes, I find it easier to edit the WXS files directly in a text editor. One thing I feel

Re: [WiX-users] WiX Wrappers: For or against?

2011-08-22 Thread Durwin Wright
I also like using WixEdit for simple changes and prototyping. It has a lot of very good feature and is easy to use. It does re-format lines and makes it hard to preserve comments. But once you are aware of these limitations it is still very useful. I use WixEdit in conjunction with Notepad++

[WiX-users] Custom Action for InstallExecuteSequence

2011-08-22 Thread Kyle Lee
I am trying to add some custom actions (CA's) after AppSearch. However, since AppSearch action is in both InstallExecuteSequence and InstallUISequence tables, my CA's are performed twice. Is it possible to tell the installer to perform my CA's only during InstallExecuteSequence, not during

Re: [WiX-users] WiX Wrappers: For or against?

2011-08-22 Thread Tobias S
Worth mentioning is IMHO SharpDevelop in a version 4.0.1.7090 (or higher) for editing dialogs. With help of this tool a standalone dialog (wxs files from WiX sources like e.g. InstallDirDlg.wxs) can be opened, previewed and edited in Design view. Combined with Votive it offers good abilities for

Re: [WiX-users] Custom Action for InstallExecuteSequence

2011-08-22 Thread John Cooper
Look at firstSequence for the Execute attribute to the CustomAction element in the documentation. -- John Merryweather Cooper Jack Henry Associates, Inc. (Premier Tech, Inc.) Build Install Engineer - jXchange Office: 913-341-3434 x791011 jocoo...@jackhenry.com -Original Message-

Re: [WiX-users] Auto deletion of reg values written by MSI

2011-08-22 Thread Wilson, Phil
...and be aware that Permanent is a setting that gets propagated to the system. It's not just a project setting. I mention this because I've come across people who have a follow-up question that goes something like Now I've marked the component as not permanent anymore, why isn't it getting

[WiX-users] ServiceInstall question in Wix 2.0

2011-08-22 Thread Mark Modrall
Hi... Sorry to keep asking questions about Wix 2.0, but I haven't gotten clearance to upgrade the tools. I'm trying to get a windows service to install running under the NETWORK SERVICE account for some new dependencies. I tried adding Account=NT

Re: [WiX-users] ServiceInstall question in Wix 2.0

2011-08-22 Thread Michael Osmond
Mark Not 100% sure on this answer, but try BuiltIn\NetworkService or [ComputerName]\NetworkService Michael -Original Message- From: Mark Modrall [mailto:mmodr...@mzinga.com] Sent: Tuesday, 23 August 2011 8:00 AM To: General discussion for Windows Installer XML toolset. Subject: