Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-14 Thread Bob Arnson
On 12-Jun-12 00:39, Kannan24 wrote: > How to disable the respective MSI feature from windows form? Handle OnPlanMsiFeature. > I mean the "Class library" is like WixBA.dll. I need to set the MSI property > values from WixBA.dll. IBootstrapperEngine::SetVariableString. -- sig://boB http://joyofset

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-13 Thread Kannan24
Hi, Could you please help me to set the msi property values from BA.dll during installation. When i used to uninstall the setup by SyncBA.hwnd = IntPtr.Zero; SyncBA.Model.Engine.Plan(LaunchAction.Uninstall); SyncBA.Model.Engine.Apply(SyncBA.hwnd); but unable to uninstall the msi file. Tha

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-11 Thread Kannan24
Hi, Thanks for you update. Now am able to view the MSI feature in BootstrapperApplicationData.XML file. How to disable the respective MSI feature from windows form? I mean the "Class library" is like WixBA.dll. I need to set the MSI property values from WixBA.dll. Could you please advise me.

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-11 Thread Bob Arnson
On 11-Jun-12 01:07, Kannan24 wrote: > I found the BootstrapperApplicationData.xml file in extracted location, but > i cann't see the msi features list. Feature information is stored only when MsiPackage/@EnableFeatureSelection="yes". > 2. How to set the msi property values from class library? Wha

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-11 Thread Kannan24
Hi, Thanks for your update. I found the BootstrapperApplicationData.xml file in extracted location, but i cann't see the msi features list. 1. Please find the BootstrapperApplicationData.xml file content below, http://schemas.microsoft.com/wix/2010/BootstrapperApplicationData";> but

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-08 Thread jhennessey
Kannan24 wrote > > Could you please help me the following queries. > > 1. How to display the feature (or how to get the feature) list in windows > form from installing msi file? > 2. How to set the msi property values from class library? > 1. You can get the feature information by parsing th

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-07 Thread Kannan24
Hi, Could you please help me the following queries. 1. How to display the feature (or how to get the feature) list in windows form from installing msi file? 2. How to set the msi property values from class library? Thanks, Kannan -- View this message in context: http://windows-installer-xml-

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-04 Thread Kannan24
Hi, Sorry my English. The burn samples helps in my burn process. Now i have two question. There are, 1. How to display the feature (or how to get the feature) list in windows form from installing msi file? 2. How to set the msi property values from class library? Please help me for those

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-04 Thread Kannan24
Hi, The burn samples helps to archive my process. Now i have two question from my requirements. There are, 1. How to display the feature list in windows form from installing msi file? 2. How to set the msi property values from class library? Please help me for those questions. Thanks, Kannan

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-01 Thread Rob Mensching
1. Your MsiPackage DisplayInternalUI attribute is probably set to "yes". 2. Check out the WixBA at src\Setup\WixBA. It is a full implementation of a managed BA. On Fri, Jun 1, 2012 at 12:31 AM, Kannan24 wrote: > Hi, > > With the update, i have used the Apply method like below. > > > this.Engin

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-06-01 Thread Kannan24
Hi, With the update, i have used the Apply method like below. this.Engine.CloseSplashScreen(); var pl = new PlanMsiFeatureEventArgs("Wixdata", "Install", FeatureState.Source); Engine.Detect(); this.hwnd = IntPtr.Zero; Engine.Plan(LaunchAction.Install); Engine.Apply(this.hwnd

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-05-31 Thread Kannan24
Hi, Thanks for your update. Am called from class library like below. this.Engine.CloseSplashScreen(); var pl = new PlanMsiFeatureEventArgs("Wixdata", "Install", FeatureState.Source); Engine.Detect(); Engine.Plan(LaunchAction.Install); where can i use the apply method and w

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-05-31 Thread Rob Mensching
Plan() just creates a plan in Burn. It sounds like you are missing the call to Apply(). On Thu, May 31, 2012 at 9:20 PM, Kannan24 wrote: > Hi, > > I have used "Engine.Plan(LaunchAction.Install);" code to execute the msi > from bundle.wxs. Am unable to find the msi file installation in my system.

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-05-31 Thread Kannan24
Hi, I have used "Engine.Plan(LaunchAction.Install);" code to execute the msi from bundle.wxs. Am unable to find the msi file installation in my system. I checked with this log file, it displays the state as absent from the line "/*Planned package: Netfx4Full, state: Absent, default requested: Pres

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-05-31 Thread Rob Mensching
I could be missing it but I see no errors in that log file. On Thu, May 31, 2012 at 5:57 AM, Kannan24 wrote: > Hi, > > I got the below error from log file. I have installed Wix v3.6 RC, the > package state shows absent. Am unable to execute the msi file from class > library which has bundle. > >

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-05-31 Thread Kannan24
Hi, I got the below error from log file. I have installed Wix v3.6 RC, the package state shows absent. Am unable to execute the msi file from class library which has bundle. Please help to execute the msi file from class library. [1130:112C][2012-05-31T08:44:38]: Burn v3.6.2928.0, Windows v6.1

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-05-31 Thread Kannan24
Hi, I got the below error from log file. I have installed Wix v3.6 RC, the package state shows absent. Am unable to execute the msi file from class library which has bundle. Please help to execute the msi file from class library. [1130:112C][2012-05-31T08:44:38]: Burn v3.6.2928.0, Windows v6.1

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-05-31 Thread Kannan24
Hi, I got the below error from log file. I have installed Wix v3.6 RC, the package state shows absent. Am unable to execute the msi file from class library which has bundle. Please help to execute the msi file from class library. [1130:112C][2012-05-31T08:44:38]: Burn v3.6.2928.0, Windows v6.1

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-01-30 Thread jhennessey
I created SF Bug 3481704 for the issue (log files attached to bug). -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WiX-3-6-Upgrade-Leaves-Files-in-Cache-v3-6-2520-0-to-v3-6-2527-0-tp7237051p7237232.html Sent from the wix-users mailing list archive a

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-01-30 Thread Rob Mensching
No, that'd be a bug. It'd be great if you coudl attach your log files to a bug. On Mon, Jan 30, 2012 at 8:18 AM, jhennessey wrote: > And here is the log from the uninstall of v3.6.2520.0 > -- > [0DD4:0DD8][2012-01-30T10:56:55]: Burn v3.6.2520.0, pat

Re: [WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-01-30 Thread jhennessey
And here is the log from the uninstall of v3.6.2520.0 -- [0DD4:0DD8][2012-01-30T10:56:55]: Burn v3.6.2520.0, path: C:\ProgramData\Package Cache\{c18586f8-ce3c-4cb7-b003-162f6b341878}\WiX36.exe, cmdline: '-uninstall -quiet -burn.related.upgrade -burn.e

[WiX-users] WiX 3.6 Upgrade Leaves Files in Cache (v3.6.2520.0 to v3.6.2527.0)

2012-01-30 Thread jhennessey
I just upgraded from v3.6.2520.0 to v3.6.2527.0 and noticed that the cached files from the old version are still in the cache (along with the new files). I am wondering if this is the expected behavior or not. Here are the contents of the log file: --- [6374:6378][