Re: [WiX-users] Burn: Planning: package customization

2012-07-23 Thread Kannan24
Hi, Any update on this? Now am getting below error when uninstalling. [1604:0F5C][2012-07-23T02:31:45]: Apply begin [1B74:12E4][2012-07-23T02:31:55]: Creating a system restore point. [1B74:12E4][2012-07-23T02:32:03]: Created a system restore point. [1B74:12E4][2012-07-23T02:32:03]: /Error 0x8007

Re: [WiX-users] Burn: Planning: package customization

2012-07-10 Thread Kannan24
Hi, Please find the log file details, while uninstalling the setup. ___ [0F50:177C][2012-07-10T07:05:40]: Burn v3.6.2928.0, Windows v6.1 (Build 7600: Service Pack 0), path: C:\ProgramData\Package Cache\{7215c

Re: [WiX-users] Burn: Planning: package customization

2012-07-09 Thread Kannan24
Hi, Thanks for your quick replay. >From your update, i have passed the uninstall action as command line. Now i get the plan action is Uninstall, but unable to uninstall the setup. I used the following code. SyncBA.Model.Engine.Detect(); SyncBA.hwnd = IntPtr.Zero;

Re: [WiX-users] Burn: Planning: package customization

2012-07-08 Thread Rob Mensching
Pass "-uninstall" on the command-line. On Sun, Jul 8, 2012 at 11:19 PM, Kannan24 wrote: > Hi, > > you have mentioned in the response > > "The Command structure always shows you what was provided via the > command-line. It will not change until you pass a new command-line to the > engine." > > Am

Re: [WiX-users] Burn: Planning: package customization

2012-07-08 Thread Kannan24
Hi, you have mentioned in the response "The Command structure always shows you what was provided via the command-line. It will not change until you pass a new command-line to the engine." Am using the Windows form application, so how to change the command-line for action as "Uninstall"? Pleas

Re: [WiX-users] Burn: Planning: package customization

2012-07-05 Thread Rob Mensching
Change the requested return from OnBeginPlanPackage() (or whatever its name is). On Thu, Jul 5, 2012 at 6:16 AM, Kannan24 wrote: > Hi, > > Thanks for your reply. > > Now i have packed the two msi with bundle. In my BA application, there was > an option to install one of the msi file. If that opt

Re: [WiX-users] Burn: Planning: package customization

2012-07-05 Thread Kannan24
Hi, Thanks for your reply. Now i have packed the two msi with bundle. In my BA application, there was an option to install one of the msi file. If that option has unchecked, then no need to install the msi. Could you please help to achieve this process. Thanks, Kannan -- View this message in co

Re: [WiX-users] Burn: Planning: package customization

2012-07-05 Thread Rob Mensching
The Command structure always shows you what was provided via the command-line. It will not change until you pass a new command-line to the engine. On Thu, Jul 5, 2012 at 12:30 AM, Kannan24 wrote: > Hi, > > could you please update the uninstall issue? > > Unable to change the Plan action to unins

Re: [WiX-users] Burn: Planning: package customization

2012-07-05 Thread Kannan24
Hi, could you please update the uninstall issue? Unable to change the Plan action to uninstall, it always shows LauchAction.Install. Please refer the last update screen shot "Immediate Window", it shows Action as Install even changes LauchAction.Uninstall. Please help me, it very urgent now. Tha

Re: [WiX-users] Burn: Planning: package customization

2012-06-27 Thread Kannan24
Hi, Could you please give the more details about the rollback, ie which property or method to call the rollback? I tried to uninstall the installed setup. When i debug the source, the LauchAction does not make uninstall action. I used the below code to uninstall the setup. SyncBA.Model.Engine.D

Re: [WiX-users] Burn: Planning: package customization

2012-06-26 Thread Bruce Cran
On 27/06/2012 04:40, Kannan24 wrote: > For rollback, I need to cancel from BA in UI form. Could you please how to > cancel the msi setup from BA? You can call PromptCancel to display a message box asking the user if they'd like to cancel, and then from your callbacks call CheckCanceled and if it

Re: [WiX-users] Burn: Planning: package customization

2012-06-26 Thread Kannan24
Hi, For rollback, I need to cancel from BA in UI form. Could you please how to cancel the msi setup from BA? Best Regards, Kannan -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-Planning-package-customization-tp6040489p7579120.html Sent from t

Re: [WiX-users] Burn: Planning: package customization

2012-06-26 Thread Rob Mensching
1. I'm pretty sure that error code mans that the Bundle was not found in the cached when it tried to remove it. Of course, already absent from the cache is not a fatal error so everything continues. 2. If you cancel or there is an error, the chain will attempt to rollback. On Mon, Jun 25, 2012 at

Re: [WiX-users] Burn: Planning: package customization

2012-06-25 Thread Kannan24
Hi, Thanks for your update. 1. Am tried to uninstall the setup using this.Engine.Plan(LaunchAction.Uninstall), but the unable to remove. I checked with the log, its shows unable to remove cached bundle. This is the issue with my last update also. *[20C0:23D4][2012-06-25T07:54:26]: Unable to remo

Re: [WiX-users] Burn: Planning: package customization

2012-06-25 Thread Rob Mensching
The message says "Continuing..." which means it was not a fatal error. On Mon, Jun 25, 2012 at 5:12 AM, Kannan24 wrote: > Hi, > > I have included the features list in BA using condition check process. > The following things are unable to get the solution. > > 1. Uninstall the installed setup, I

Re: [WiX-users] Burn: Planning: package customization

2012-06-25 Thread Kannan24
Hi, I have included the features list in BA using condition check process. The following things are unable to get the solution. 1. Uninstall the installed setup, I have installed the setup and tried to uninstall using CustomLauch.Uinninstall code, but it unable to start the uninstillation. Pleas

Re: [WiX-users] Burn: Planning: package customization

2012-06-20 Thread Kannan24
Hi, Past two days am working for this, am unable to find the solution. Could you please update the response for last my updates queries? Its very urgent. Thanks, Kannan -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-Planning-package-customiz

Re: [WiX-users] Burn: Planning: package customization

2012-06-18 Thread Kannan24
Hi, Thanks for your update, your response is helped for me. I have three more questions. 1. I followed the below code to uninstall the installed msi file. Managed code: SyncBA.Model.Engine.Detect(); SyncBA.hwnd = IntPtr.Zero; SyncBA.Model.Engine.Plan(LaunchAction.Unins

Re: [WiX-users] Burn: Planning: package customization

2012-06-15 Thread jhennessey
Kannan24 wrote > > Hi, > > 1. I followed the update to set the msiproperty values in managed code, > but i cannot achieve to set the property value. > > I have used the below code. > > Bundle.wxs: > > > >SourceFile="C:\Users\Kannanns\Documents\Visual Studio > 2010\Projects\Test

Re: [WiX-users] Burn: Planning: package customization

2012-06-15 Thread Kannan24
Hi, 1. I followed the update to set the msiproperty values in managed code, but i cannot achieve to set the property value. I have used the below code. Bundle.wxs: BA Managed code: SyncBA.Model.Engine.Plan(LaunchAction.Install); SyncBA.Model.Engine.A

Re: [WiX-users] Burn: Planning: package customization

2011-05-09 Thread John Robbins
---Original Message- >From: Vadym Verba [mailto:vve...@sdl.com] >Sent: Monday, February 21, 2011 1:38 AM >To: wix-users@lists.sourceforge.net >Subject: Re: [WiX-users] Burn: Planning: package customization > >Actually Bob Arnson was right. >I have the following code works: &

Re: [WiX-users] Burn: Planning: package customization

2011-04-19 Thread Stanfield, Albert R
m] Sent: Monday, February 21, 2011 1:38 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Burn: Planning: package customization Actually Bob Arnson was right. I have the following code works: 1) In Bundle.wxs: 2) In BA managed code: MyBootstrapperApplication.Bootstrap

Re: [WiX-users] Burn: Planning: package customization

2011-02-21 Thread Vadym Verba
/I some.msi DB_NAME="new_db_name" The tip is: Value in MsiProperty values EXPRESSION that can contains references to Burn variables (like db_name in my example) From: "Dan Vasilov" Subject: Re: [WiX-users] Burn: Planning: package customization To: &q

Re: [WiX-users] Burn: Planning: package customization

2011-02-20 Thread Dan Vasilov
-users] Burn: Planning: package customization Hello. I want to write Bootstrapper Application that gathers information about DataBase, COM+ user etc. so I need to pass this data to appropriate package (.msi) when it actually executes. I could find child node nested into which allows pass data and

Re: [WiX-users] Burn: Planning: package customization

2011-02-18 Thread Bob Arnson
See my recent reply to John Robbins: Use MsiProperty children with Value values that refer to Burn variables. Your UX can call IBootstrapperEngine::SetVariable* and Burn will evaluate the MsiProperty/@Value when it builds the command line for install/etc. On 18-Feb-11 11:06, Vadym Verba wrote

[WiX-users] Burn: Planning: package customization

2011-02-18 Thread Vadym Verba
Hello. I want to write Bootstrapper Application that gathers information about DataBase, COM+ user etc. so I need to pass this data to appropriate package (.msi) when it actually executes. I could find child node nested into which allows pass data and it couldn't be changed, but I didn't find an