Re: [WiX-users] How to debug upgrade problem

2009-11-17 Thread Sebastian Brand (Instyler Software)
Doesn't the msi verbose log say anything? Best regards, Sebastian Brand Deployment consultant E-Mail: sebast...@instyler.com Instyler Setup - Creating WiX-based MSI installations, elegantly. http://www.instyler.com On 17.11.2009, at 22:55, Tom Crozier wrote: > I created an installer that cont

Re: [WiX-users] How to create main and sub installer?

2009-11-17 Thread Sebastian Brand (Instyler Software)
When you cannot merge these two installers into one, it's recommended to use a bootstrapper to check and run necessary installations. I'm not sure if WiX' burn can handle this already.. Best regards, Sebastian Brand Deployment consultant E-Mail: sebast...@instyler.com Instyler Setup - Creating

Re: [WiX-users] Launch Condition on Unistall or Remove

2009-11-17 Thread Sebastian Brand (Instyler Software)
Add to the conditions your are check a "NOT Installed" to check them only if the application isn't installed yet Best regards, Sebastian Brand Deployment consultant E-Mail: sebast...@instyler.com Instyler Setup - Creating WiX-based MSI installations, elegantly. http://www.instyler.com On 18.11

Re: [WiX-users] GetMsiProperty with UAC enabled!

2009-11-17 Thread Sachin Dubey
Thanks John and Pally for your responses on this. Greatly appreciated! My custom actions is running in InstallUISequence for checking the prerequisite software. The execute attribute is 'immediate' as the action need to be executed before the next dialog box appears. Thanks Sachin! > Dat

[WiX-users] Launch Condition on Unistall or Remove

2009-11-17 Thread spsingam
hi, how do i make sure that the Launch Condition only executes only on Installed ??? for now, my installer executes the Launch Condition on uninstall. Anyone here with suggestions ? -- View this message in context: http://n2.nabble.com/Launch-Condition-on-Unistall-or-Remove-tp4023317p402331

Re: [WiX-users] How to force to launch application in silent install mode?

2009-11-17 Thread Sascha Beaumont
In quite mode, the InstallUISequence is never executed, so the checkbox doesn't even really "exist" (only the property related to the checkbox) The documentation shows how to tie in execution to when the user clicks the "Finish" button - this button never exists and is never pushed in a silent ins

Re: [WiX-users] Feature Tree - Disable all Features

2009-11-17 Thread salever.lee
Hi, Q1, Set the Feature's attribute "Level" to 0, then it will be disabled. Q2, Feature have some action states and install states, and you can use this to force users to choose only one of them. Prepending some special characters to the names will give them extra meaning: % env

[WiX-users] How to create main and sub installer?

2009-11-17 Thread Akihiro.Shibuta
Hi, All, A: main installer B: sub installer 1. A is installed. 2. When A is installed, B is copied onto a local disk together. 3. B install if necessary. 4. When A is uninstalled, B is automatically uninstalled. Is it possible though I wants to make two installers of such a composition with

Re: [WiX-users] How to force to launch application in silent install mode?

2009-11-17 Thread little.forest
In our code, we have this: So the checkbox is checked by default. I thought that means "launch the application by default". But the application was not launched in quite(silent) mode: msiexec /i myapp.msi /qr I then tried to set property in command line, it didn't work either: msiexec /i mya

Re: [WiX-users] Private Assemblies?

2009-11-17 Thread JKLists
> Would you mind to share that? Don't want to mock you (if it was your fault), > but it might be helpful for the archives and the next one that searches for > similar terms.. > Oh, no, I don't mind. As I said before, I never thought WiX was broken, and I fully admit my ignorance since I'm n

[WiX-users] How to force to launch application in silent install mode?

2009-11-17 Thread little.forest
I'd like to know how to force to launch the application in silent install mode. I thought this would work: msiexec /i myapp.msi WIXUI_EXITDIALOGOPTIONALCHECKBOX="1" /qr But after installation, the application wasn't launched. By the way, we use the 'standard' way from Wix.chm("How To: Run the I

[WiX-users] How to debug upgrade problem

2009-11-17 Thread Tom Crozier
I created an installer that contains 2 Upgrade sections for 2 different products that are installed however when I run the installer it only locates one of them. How do I go about debugging this to find out why the 2nd is not detected by FindRelatedProducts? I did a small test app and this seeme

Re: [WiX-users] Private Assemblies?

2009-11-17 Thread Benjamin Podszun
On Tue, Nov 17, 2009 at 10:10 PM, JKLists wrote: > >> ... decompile the old one with dark.exe to see what's different. >> > > Thanks for the suggestion, Bob. This allowed me to pinpoint where in my > WiX code the problem lie. Would you mind to share that? Don't want to mock you (if it was your fa

Re: [WiX-users] Private Assemblies?

2009-11-17 Thread JKLists
> ... decompile the old one with dark.exe to see what's different. > Thanks for the suggestion, Bob. This allowed me to pinpoint where in my WiX code the problem lie. -- Let Crystal Reports handle the reporting - Fr

Re: [WiX-users] Private Assemblies?

2009-11-17 Thread JKLists
Christopher, I appreciate your enthusiasm and advice. > .NET is supposed to be XCopy deployment You are correct about this. If I take a clean machine (with .NET installed) and then 1. Install the IS original, 2. Install my WiX-produced version, 3. Copy both directories to a new clean

Re: [WiX-users] Private Assemblies?

2009-11-17 Thread Wilson, Phil
My suspicion is that you're right, and I think that's the area where each assembly is recorded together with info for MsiProvideAssembly(), and it won't be there if it's not the keypath. Phil Wilson -Original Message- From: Andreas Mertens [mailto:andre...@nvisionideas.com] Sent: Tues

Re: [WiX-users] Private Assemblies?

2009-11-17 Thread Christopher Painter
I for one have never understood or really dug into why it would even matter. .NET is supposed to be XCopy deployment so if I deploy a .NET assembly privately, why would or should MSI even care that it happens to be a CLR assembly? That said, I always select "Properties Only" in InstallShield

[WiX-users] Feature Tree - Disable all Features

2009-11-17 Thread Henry Sheldon
Hi, I'm relatively new to WiX and am using WixUI_FeatureTree for the first time. I have two small installations that I'm trying to combine into one script. One for the Client and one for the Server. I'm trying to make both Features in the FeatureTree to default to "Entire Feature will be Disabled"

Re: [WiX-users] GetMsiProperty with UAC enabled!

2009-11-17 Thread Pally Sandher
John that doesn't necessarily generate a UAC prompt. It will simply check if the user has the permissions necessary to generate a UAC prompt before the MSI installs. Sachin is your custom action running during the InstallUISequence or InstallExecuteSequence? What is the Execute attribute of the Cu

Re: [WiX-users] Private Assemblies?

2009-11-17 Thread JKLists
> Just a guess, but in seeing that the registry entry is in the Installer > area, I am wondering if in the IS install if these private assembly files > are marked as the KeyPath, which is why they are being recorded here? > I couldn't say. The WiX version has them marked as keypath also.I'll d

Re: [WiX-users] GetMsiProperty with UAC enabled!

2009-11-17 Thread John H. Bergman (XPedient Technologies)
Add this, maybe it will help in your case... Privileged I believe you get the UAC prompt... -Original Message- From: Sachin Dubey [mailto:sachin.du...@live.com] Sent: Tuesday, November 17, 2009 1:35 AM To: wix-users@lists.sourceforge.net; v-sad...@microsoft.com Subject:

Re: [WiX-users] Help with building patch

2009-11-17 Thread Pally Sandher
You are running the MS procedure for building a patch. All WiX is being used for in this instance is to create the PCP file. Sigh. Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate wit

Re: [WiX-users] Help with building patch

2009-11-17 Thread Schmitz, John
Never mind. Looking at the PCP file in Orca, I can see that there is no listing of the upgraded files there, as I would expect from any other MSI database. So I suspect that you're right, Bob. I should be able to run the MS procedure for building a patch, and get the same problem. Thanks, John

Re: [WiX-users] Help with building patch

2009-11-17 Thread Schmitz, John
Pally, Thanks for pointing this out. I don't believe that this has anything whatsoever to do with the behavior that I'm seeing. My problem is that there are way, way too many files in the patch, not that anything is being changed from "installed" to "advertised". I'm not getting far enough to a

Re: [WiX-users] Private Assemblies?

2009-11-17 Thread Andreas Mertens
Just a guess, but in seeing that the registry entry is in the Installer area, I am wondering if in the IS install if these private assembly files are marked as the KeyPath, which is why they are being recorded here? As far as the crashing is concerned, have you confirmed if your private assembly f

Re: [WiX-users] Methods for creating minor upgrades

2009-11-17 Thread Peter Shirtcliffe
1. The pages in this section of the MSDN discuss different update types supported by Windows Installer and therefore by Wix too. http://msdn.microsoft.com/en-us/library/aa370579(VS.85).aspx 2. This should help http://support.microsoft.com/kb/824684 3. Roughly speaking, there is a difference b

Re: [WiX-users] While installation, Restrict the error message without 'Ignore' button and stop then rollback the installation

2009-11-17 Thread Selvakumar B
Hi Kalev, I already set that element Vital="Yes", Still I get the message with ignore, ok and cancel buttons. If I click ignore installer ignore the filter without register. What I want is when error occurs I need to restrict buttons like "ok" only button. Is it possible? Thanks Selva -O

[WiX-users] Methods for creating minor upgrades

2009-11-17 Thread luciana istoc
Hi,   Could you help me, please, with the next issues related to minor upgrades:   1. What are the possibilities/recommendations for creating a minor upgrade with Wix (or in general with the installer)? Until now I know that a Service Pack is a possibility (is this correct?).   2. What are the d

[WiX-users] to get last upgrade information

2009-11-17 Thread BSR PHANI
hi all, i've a product and i'm delivering the minor upgrades(patches), i've a requirement like i need last upgrade(patch) information to use that info in the current upgrade(patch). can any one help me on how to get the last upgrade(patch) information like product version? please help me. Thanks,

Re: [WiX-users] Help with building patch

2009-11-17 Thread Pally Sandher
My moneys on it being this -> http://msmvps.com/blogs/installsite/archive/2009/09/12/microsoft-s-recen t-security-updates-for-visual-studio-break-windows-installer-updates.asp x See also -> http://www.msigeek.com/microsofts-recent-security-updates-for-visual-stu dio-break-windows-installer-updates/

Re: [WiX-users] New Entry in Add/Remove Program when upgrade

2009-11-17 Thread Jiang, Chunyan (GE Healthcare)
Hi Blair, I found an article from MSDN, which is talking about multiple instance. I think my requirement is similiar like multiple instance, although the software version could be different. The link is here http://msdn.microsoft.com/en-us/library/aa369528(VS.85).aspx It says: The easiest way

Re: [WiX-users] how to prevent uninstalling MSI using msiexec with Guid

2009-11-17 Thread Rob Hamflett
Why are you preventing people from uninstalling your product? You're never going to be able to upgrade your installation or repair it. Rob Lian Jiang wrote: > This one worked for me: > > REINSTALL or Not > Installed > > Thanks > Lian > > -Original Message- > From: Lian Jiang [mailt