Re: [WiX-users] WiX 3 Shortcut Points to the Wrong File

2008-09-15 Thread Tan, Tom (Shanghai)
I made the mistake, the bad one was not downloaded from the homepage but MSDN, I just checked it and noticed it. The good one is the one installed with the latest weekly build. The bad one is this http://download.microsoft.com/download/5/5/f/55fb7862-1ba0-427f-821b-50e 0ba3dec1f/Wix.chm -O

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 Subject

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) to

[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 ema

[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: 1 1 1 LicenseAccepted = "1" 1 1

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

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

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
Each of the following three forms for using the MSIPATCHREMOVE property referred to at http://msdn.microsoft.com/en-us/library/aa370348(VS.85).aspx looks like they should do the trick but currently I'm getting a "Uninstallation of the patch package is not supported." result. I previously was a

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

2008-09-15 Thread Francis Kam
The reason why you can't easily find how to install without leaving anything else on the system other than the files is that you're trying to use MSI in a scenario it's not designed for. Here's documention on HTA: http://msdn.microsoft.com/en-us/library/ms536496(VS.85).aspx -Francis On Mon, Se

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? Let

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] Wix Add Dialog to prompt for username and pwd

2008-09-15 Thread Richard
In article <[EMAIL PROTECTED]>, "Yu, Brian" <[EMAIL PROTECTED]> writes: > Apologies. I got mixed up. I was trying to change the logo and look of > the msi > And I thought I might as well get user to enter some randown user > Then use wix to grant the necessary permissions. Its better to gen

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

2008-09-15 Thread Szentpali Janos
You could use HTA technology (something like XUL, but coming from Microsoft) to create a custom installer application that has nothing to do with MSI. All you need to know is a little HTML, a little CSS, alittle DOM and a little VBScript or JScript. Very flexible and customisable ;). Though I shou

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

2008-09-15 Thread Eitan Behar
Is there a reason why you don't want the registry entries? If this is a MUST, you can always launch a simple application automatically after the install that cleans the registry from any traces of your setup. But, really, don't see a reason for that. -Original Message- From: [EMAIL PROTEC

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

2008-09-15 Thread BOB1981
HI Francis, I do am using MSI Features, like User interface, option to choose features to install. Actually requirement is to have Feature tree of the MSI as well in order to choose between Features to install or not but only to install at default location which i explained earlier Or do you hav

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

2008-09-15 Thread Francis Kam
While I'm sure you *could* technically do so, as Brian says, it doesn't seem like MSI is really a fit for what you want to do. Why create an MSI when you don't want to use MSI features? -Francis On Mon, Sep 15, 2008 at 11:17 AM, BOB1981 <[EMAIL PROTECTED]>wrote: > > Hi Brian, > > Cant we creat

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 XM

[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 fir

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 Registr

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] 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 y

Re: [WiX-users] Windows Installer 4.5

2008-09-15 Thread Thomas Svare
Perfect. Thank you. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Nannenga Sent: Monday, September 15, 2008 1:35 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Windows Installer 4.5 Reference: http://robmensching.com/blog/archive/

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 lo

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] 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: NOT Installed If you want the property to be available

[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 E

[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 t

Re: [WiX-users] WIX Upgrade code

2008-09-15 Thread Yu, Brian
I am doing minor upgrade and my expectation is as follows: If u installed 1.1.0, then say u upgraded to 1.1.1, then 1.1.2. If you try apply 1.1.1 again, it should fail the upgrade. Is this the right concept? Or do we expect the patch to work regardless of the numbers (which strangely is fine beca

[WiX-users] Windows Installer 4.5

2008-09-15 Thread Thomas Svare
Profitable, Home Business Ideas Money Making Online Internet Great Work from Home Opportunity. Earn up to $5000per month Earn money on the computer with internet from home without investment More details; http://xrl.us/bkygk --~--~-~--~~~---~--~~ You received this

Re: [WiX-users] Missing DTF Sample Applications

2008-09-15 Thread Buddell, James
The samples are in the WIX source download, but not in the compiled one. Cheers, James -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of DEÁK JAHN, Gábor Sent: 14 September 2008 15:03 To: General discussion for Windows Installer XML toolset. Subject: [Wi

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

2008-09-15 Thread Eitan Behar
Your message dated Tue, 02 Sep 2008 11:29:47 -0500 with message-id <[EMAIL PROTECTED]> and subject line selinux-policy-refpolicy-* packages obsolete, and removed has caused the Debian Bug report #405767, regarding selinux-policy-refpolicy-targeted: resolvconf policy would be nice to be marked as d

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

2008-09-15 Thread Chandra Vuppala
thanks Eitan, it worked for me. Can u give me sample or approach for passing values from UI. Thanks & Regards, Chandrashekar vuppala From: [EMAIL PROTECTED] on behalf of Eitan Behar Sent: Tue 9/09/2008 11:13 AM To: General discussion for Windows Installer XML