[WiX-users] Problems with Major Upgrade

2007-06-07 Thread Carter Sanders
What I'd really like is a pointer to a working example of a Major Upgrade. The fine tutorial at http://www.tramontana.co.hu/wix/ has a lot of info about patches and minor upgrades, but no explicit working examples of major upgrades. I've been trying for quite some time to get this working. What

Re: [WiX-users] Conditionally installing components based onuser'slocale

2007-06-07 Thread Wilson, Phil
I think you need code like the second example on this page: http://msdn2.microsoft.com/en-us/library/87k6sx8t(vs.71).aspx Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Palmer Sent: Thursday, June 07, 2007 4:55 PM Cc: wix-u

[WiX-users] how to do this in wix?

2007-06-07 Thread Paramesh S
Hi, During MSI install, I want to set values of some property based on other input property value. Something like if ("[SERVERENV]" = "TEST") http://url-test.com /> else http://url-prod.com /> Endif Can someone tell me how to do this? Can we do t

Re: [WiX-users] Conditionally installing components based on user'slocale

2007-06-07 Thread Scott Palmer
I realize that the language ID can identify a language down to the dialect of a specific region, but I still don't think the language ID is the appropriate property to check to determine location information. A user my have set the language to American English but still be located in Japan. Surel

Re: [WiX-users] Adding files to components

2007-06-07 Thread Aaron Shurts
Take a look at heat. http://installing.blogspot.com/2006/04/heatexe-making-setup-easier.html Regards, //aj On 6/7/07, Afshin Sepehri <[EMAIL PROTECTED]> wrote: Hi, I have a question about how to add files to a component. Is that possible to add all the files in a directory to a component a

[WiX-users] Adding files to components

2007-06-07 Thread Afshin Sepehri
Hi, I have a question about how to add files to a component. Is that possible to add all the files in a directory to a component and just exclude a few. Writing code for all the files one by one seems to be hard. Thanks, Afshin ---

[WiX-users] IISReset

2007-06-07 Thread Krishna Kishore
i created website using WIX, websites are created sucessfully, but once we do IISReSet, Websites are deleting fromt the IIS, Do any one faced the problem i am using - This SF.ne

Re: [WiX-users] Define constants not working with candle in 3.0.2921.0?

2007-06-07 Thread Kevin Fischer
That worked. I re-read the documentation and I now see this mentioned, but it's not especially clear. Is there a formal process for updating the documentation? Thanks, Kevin Date: Thu, 7 Jun 2007 15:09:06 -0400From: [EMAIL PROTECTED]: [EMAIL PROTECTED]; [EMAIL PROTECTED]: Re: [WiX-users]

Re: [WiX-users] Define constants not working with candle in 3.0.2921.0?

2007-06-07 Thread Brian Simoneau
Your ifdef should look like -Brian Simoneau -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Fischer Sent: Thursday, June 07, 2007 2:44 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Define const

[WiX-users] Define constants not working with candle in 3.0.2921.0?

2007-06-07 Thread Kevin Fischer
I have some code like this: The command line for candle looks like: candle.exe -dDebug -out obj\Debug\Base.wixobj -ext ..\..\..\..\v1_tools\wix\bin\WixUtilExtension.dll Base.wxs But, I'm seeing $(var.Flavor2) evaluate to "Release". I would've expected it to be Debug based on the -dD

Re: [WiX-users] How to override RegistrySearch property?

2007-06-07 Thread Dale Quigg
Rob and Dacian, Thanks so much for your help. > 2) How do I sequence the CA so it executes before my UI is displayed? Rob: I'd sequence it straight after AppSearch. Dacian: Put it under InstallUISequence Yes. Perfect. NOT MY_REAL_VALUE I also kept it in InstallExecut

Re: [WiX-users] How to override RegistrySearch property?

2007-06-07 Thread fiordean dacian
1) Is my CA correct? Yes 2) How do I sequence the CA so it executes before my UI is displayed? Put it under InstallUISequence 3) How do I condition the CA to only execute if MY_REAL_VALUE is empty? NOT MY_REAL_VALUE Good luck, Dacian - Original Message From: Dale Quigg <

Re: [WiX-users] COM+ in V3

2007-06-07 Thread Rob Mensching
Ahh, that'd be a bug (er, bugs). I always look in the binaries.zip (old habit from before we had WiX3.msi) so I found what you were looking for. Please do open the bug on SourceForge so we are sure to get it fixed. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Graham Harwood

Re: [WiX-users] How to override RegistrySearch property?

2007-06-07 Thread Rob Hamflett
Dale Quigg wrote: > Three questions; > > 1) Is my CA correct? I think you want > > 2) How do I sequence the CA so it executes before my UI is displayed? I'd sequence it straight after AppSearch. > > 3) How do I condition the CA to only execute if MY_REAL_VALUE is empty? Try a condition of NOT M

[WiX-users] How to override RegistrySearch property?

2007-06-07 Thread Dale Quigg
Hi, I have a custom dialog that includes an edit box that is pre-populated with the value of a property [MY_REAL_VALUE]. Another property, MY_FOUND_VALUE, is set via RegistrySearch. If the user did not supply MY_REAL_VALUE in the command line, I want to set MY_REAL_VALUE = MY_FOUND_VALU

[WiX-users] update issue

2007-06-07 Thread Palit
Hi everybody, I think this is my last question about WIX. I'm looking at the update behaviours. Following the tutorial : http://www.tramontana.co.hu/wix/lesson4.php I Launch old\SampleUpgrade.msi, and after new\SampleUpgrade.msi with the following options : REINSTALL=ALL REINSTALLMODE=vomus

Re: [WiX-users] Chinese Installer

2007-06-07 Thread Bob Arnson
Rohit Lodha wrote: > Can I get en-US loc file so that I can copy and translate to Chinese? I > hope my Chinese vendor might be willing to share it with wix. > That'd be great. The en-us .wxl file is embedded in WixUIExtension.dll. You can get the loose file from the WiX sources .zip file in

[WiX-users] Acrobat as a condition

2007-06-07 Thread DE�K JAHN, G�bor
On Wed, 6 Jun 2007 19:48:20 +0100, Mike Dimmick wrote: Mike, > Not a fan of Adobe Reader at all. Very slow to load even after the > 'optimisation' application is launched at system startup (which > basically just preloads all the DLLs), and still pretty buggy. Off-topic here, but the 'optimisati

Re: [WiX-users] Chinese Installer

2007-06-07 Thread Rohit Lodha
Bob Arnson wrote: > Rohit Lodha wrote: >> The current votive gives me error when I write locale as zh. > > Which error? > The loc strings do not exists. >> How can I support chinese UI in wix 3.0? > > There currently isn't a Chinese localization file, so you'll have to > localize the appropriate s

Re: [WiX-users] Sanity Check: Shortcuts and HKCU for a per machine install. Should it be HKMU?

2007-06-07 Thread Anthony Wieser
That's where I got the original idiom from, but it feels wrong for an all users install. Yes, doing it this way gives no errors, but it doesn't make sense (to me at least). Any chance one of you guys inside Microsoft could get a comment out of the Windows Installer team, or can you suggest how I c

Re: [WiX-users] Sanity Check: Shortcuts and HKCU for a per machine install. Should it be HKMU?

2007-06-07 Thread Rob Hamflett
D'oh! Including the link might have helped. Here it is. http://robmensching.com/blog/archive/2007/04/27/How-to-create-an-uninstall-shortcut-and-pass-all-the.aspx Rob Rob Hamflett wrote: > Rob has a blog post on how to create a shortcut that passes validation. > Personally I stopped paying >

Re: [WiX-users] Sanity Check: Shortcuts and HKCU for a per machine install. Should it be HKMU?

2007-06-07 Thread Rob Hamflett
Rob has a blog post on how to create a shortcut that passes validation. Personally I stopped paying attention to those warnings long ago. Rob Tony Hoyle wrote: > Anthony Wieser wrote: >> Looking into this further, HKLM doesn't work, however reading the ICE43 >> documenation, it says: > > Yes

Re: [WiX-users] COM+ / RegAsm

2007-06-07 Thread Fredrik Grohn
Did you provide the typelib file in the MSI? The CA won't create it for you if you don't. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of LINFIELD , Andrew, GBM Sent: Monday, June 04, 2007 5:34 PM To: 'wix-users@lists.sourceforge.net' Subject: [WiX-users] COM+ / RegAsm I've got

Re: [WiX-users] Sanity Check: Shortcuts and HKCU for a per machine install. Should it be HKMU?

2007-06-07 Thread Tony Hoyle
Anthony Wieser wrote: > Looking into this further, HKLM doesn't work, however reading the ICE43 > documenation, it says: Yes, ICE43 is wrong in this respect. It should read ALLUSERS and check (using HKMU is an interesting workaround though). > That almost works, but then you get an ICE57 error

[WiX-users] LinkMSI task is failing still a Partial MSI is getting created

2007-06-07 Thread vishvas
HI all, I am facing a strange problem.I am using LinkMsi (light) task to link .wixobj file to create a .msi file. below is our Wix.LinkMsi task: But eventhough LinkMsi taks is failing, .msi file is getting generated which is a wrong MSI. How can i prevent LinkMsi task from generating .msi file

[WiX-users] More PI}}LS IN$$IDE

2007-06-07 Thread Wix-users
{BODY}- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/___

Re: [WiX-users] Sanity Check: Shortcuts and HKCU for a per machine install. Should it be HKMU?

2007-06-07 Thread Anthony Wieser
Looking into this further, HKLM doesn't work, however reading the ICE43 documenation, it says: The Attributes column is set to use the registry, but the referenced registry entry is not under HKCU. To fix this error, either switch to a different registry entry as the KeyPath for this component,

[WiX-users] Sanity Check: Shortcuts and HKCU for a per machine install

2007-06-07 Thread Anthony Wieser
Many of the examples I've seen show an idiom that has a component containing a registry key and a shortcut. Supposedly, the reason is that this supports user roaming profiles somehow, which I don't quite understand. However, on Vista, the HKCU this will be installed into is the local system ac

Re: [WiX-users] Is it possible to detect if a software is currentlyrunning ?

2007-06-07 Thread Palit
ok Thanks - Original Message - From: fiordean dacian To: Palit ; WiX-users@lists.sourceforge.net Sent: Thursday, June 07, 2007 10:25 AM Subject: Re: [WiX-users] Is it possible to detect if a software is currentlyrunning ? Hopefully Windows Installer does this for any run

Re: [WiX-users] Is it possible to detect if a software is currentlyrunning ?

2007-06-07 Thread fiordean dacian
Hopefully Windows Installer does this for any running application you're trying to uninstall. The problem is you don't have a mecanism in WiX, other than a custom action, which might help in detecting whether the browser is open. Dacian - Original Message From: Palit <[EMAIL PROTEC

Re: [WiX-users] COM+ in V3

2007-06-07 Thread Graham Harwood
Thanks for the confirmation Mike. I had the code correct but couldn't find the extension DLL. There appears to be difference between the MSI (which has an WixOfficeExtension.dll not in the binaries zip) and the binaries.zip, which has the WiXComPlusExtension.dll missing from the msi. All sorted n

Re: [WiX-users] How to use a localized string for an error text of ancustom action

2007-06-07 Thread Rennie Petersen
Is this WiX 2 or 3? With WiX 2 I would assume you should write Rennie > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Cristian Baiu > Sent: 7. juni 2007 09:57 > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] How to use a local

[WiX-users] How to use a localized string for an error text of an custom action

2007-06-07 Thread Cristian Baiu
Hello, I need to use in my project an custom action which displays an error message and aborts installation in some specific conditions. In order to achieve this I wrote the following line: If I place this custom action in the InstallExecuteSequence and everything works as I was expecting. When

Re: [WiX-users] Hiding Browse button in CustomizeDlg

2007-06-07 Thread Rennie Petersen
> Without including my own complete source for this dialog... It's not such a big deal. I've written a step-by-step beginners guide to how to do it, which you might find useful. http://www.merlinia.com/mdt/WiXTutorial.msl > The problem is that the Browse button on CustomizeDlg is disabled but