Re: [WiX-users] Reading the registry entries - Facing an interesting problem

2008-09-15 Thread Mukesh Agrawal
Thanks Rob for your reply. I did it using custom actions. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching Sent: Friday, September 12, 2008 2:47 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Reading the

[WiX-users] some final points for clarification on the whole v1.0 to v1.1 msp patch upgrade [ or a v1.0 to v1.1 msi upgrade ] process

2008-09-15 Thread Robert O'Brien
1. when I run a v1.0 to v1.1 msp patch upgrade [ or a v1.0 to v1.1 msi upgrade ] am I expected to include the additional public property settings that were needed/used when I ran the original v1.0 deployment, e.g. INSTALLDIR, DATABASESHOSTNAME, DATABASESDOMAINLOGINGROUPNAME, etc.? 2. is

[WiX-users] Very Simple WIX Msi Installer

2008-09-15 Thread BOB1981
Hi All, I am a new user to Wix, i know it must be real easy but dont know how to do it. Requirement of MSI package i have is like this. 1. Wix needs to package few files at perticulater location eg: c:\temp and make a Msi package of the files. 2. Msi package created needs to install files at

Re: [WiX-users] How to pass property value to msi

2008-09-15 Thread John Nannenga
There's the MsiSetProperty API Ref: http://msdn.microsoft.com/en-us/library/aa370391(VS.85).aspx Or, if you're doing this from a native windows installer UI sequence, through WiX, you'd make use of the Publish element. Example: Publish Property='PropertyName'

Re: [WiX-users] Windows Installer 4.5

2008-09-15 Thread John Nannenga
Reference: http://robmensching.com/blog/archive/2007/09/03/Windows-Installer-4.5-and-the-WiX-toolset.aspx -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Svare Sent: Monday, September 15, 2008 7:53 AM To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Very Simple WIX Msi Installer

2008-09-15 Thread BOB1981
Hi Brian, Cant we create custom action which can run before installing anything. using simple copy command for the backup process of existing files. (i guess this way back up of existing files can be taken) But, my major concern is to how can make msi which wont do any changes at all in

[WiX-users] SqlDatabase with multiple data files?

2008-09-15 Thread Jay Thaler
SQL allows you to create databases that span multiple data files. The primary file has an MDF extension, and the secondary and subsequent files have an NDF extension. I tried defining multiple SqlFileSpec elements under my SqlDatabsae, but it seems that the second SqlFileSpec overwrites the

Re: [WiX-users] Very Simple WIX Msi Installer

2008-09-15 Thread Brian Rogers
I would recommond against using a Windows Installer for such a task. There is no default handling inside the Windows Installer engine which creates backups. There is a way to make the MSI hidden so it does not show up in Add/Remove Programs. With the requirements you are listing above I would say

Re: [WiX-users] WIX Upgrade code

2008-09-15 Thread John Nannenga
FindRelatedProducts, Ref: http://msdn.microsoft.com/en-us/library/aa368600(VS.85).aspx only runs the first time the product is installed. Hence, I do not believe it is relevant for a small update or a minor upgrade. You can verify this in your scenario by capturing a verbose log file /l*v

Re: [WiX-users] some final points for clarification on the whole v1.0 to v1.1 msp patch upgrade [ or a v1.0 to v1.1 msi upgrade ] process

2008-09-15 Thread Robert O'Brien
Got answers to these. Would be interested if anyone already has a command line utility wrapping MsiRemovePatches api that allows cmd.exe scripted removal of patches. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert O'Brien Sent: Monday, September

Re: [WiX-users] some final points for clarification on the whole v1.0 to v1.1 msp patch upgrade [ or a v1.0 to v1.1 msi upgrade ] process

2008-09-15 Thread John Nannenga
Found the MSIPATCHREMOVE property... Ref: http://msdn.microsoft.com/en-us/library/aa370348(VS.85).aspx -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert O'Brien Sent: Monday, September 15, 2008 1:03 PM To: 'General discussion for Windows Installer

Re: [WiX-users] Very Simple WIX Msi Installer

2008-09-15 Thread BOB1981
Wht kind of application, how can i do that , please elaborate a little I found Component has a attribute called Permanent=yes which will make components to be permanent even if they are getting uninstalled and will leave all the files intact. but in this case still i cant figure out how to

Re: [WiX-users] Very Simple WIX Msi Installer

2008-09-15 Thread BOB1981
Hi János, It is going to make me start from scratch again and redo everything actually, I am actually almost ready to finish my work regarding this...Dont know if i can follow this but Seems like a good option , where can i find the material regaring this? any links you know which could help?

[WiX-users] how to explicitly deny power user read/write permission to a folder with PermissionEx element? eom

2008-09-15 Thread Leo ...
- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK win great prizes Grand prize is a trip for two to an Open Source event anywhere in the

[WiX-users] Bitmaps and License file on custom UI's?

2008-09-15 Thread Kelly Leahy
I have overridden the default UI by doing the following in my WXS: Fragment UI Id=MGALFAUI TextStyle Id=WixUI_Font_Normal FaceName=Tahoma Size=8 / TextStyle Id=WixUI_Font_Bigger FaceName=Tahoma Size=12 / TextStyle Id=WixUI_Font_Title FaceName=Tahoma Size=9

[WiX-users] How can i select a file through bowse dialog

2008-09-15 Thread Sandeep Gautam (HCL Technologies Ltd)
Hi, I want to select a particular(txt or XML) file in between of my installation.I am able to reach upto particular folder but can not select any file in that folder. Please help me out. Regards Sandeep - This SF.Net

Re: [WiX-users] some final points for clarification on the wholev1.0 to v1.1 msp patch upgrade [ or a v1.0 to v1.1 msi upgrade ]process

2008-09-15 Thread Tony Juricic
Some patches are un-installable: http://msdn.microsoft.com/en-us/library/aa372102(VS.85).aspx I'm offering to pay and ship few cases of beer and hamburger patties so that you guys at Microsoft can meet somewhere at campus, relax, hammer this out and explain all of it (I mean patching business)

Re: [WiX-users] SqlDatabase with multiple data files?

2008-09-15 Thread Rob Mensching
1. The overwrite issue was a bug fixed in the most recent build. 2. No, multiple files are not supported today. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jay Thaler Sent: Monday, September 15, 2008 11:29 To: wix-users@lists.sourceforge.net