[wix-users] Error during upgrade with Managed BA

Scott Brickler Scott.Brickler at solutionsx.com
Tue Jun 14 09:01:17 PDT 2016


I am having a problem with upgradereplace action on our installer. We have a custom rest service that we call that we retrieve the latest version and then use SetUpdate to set the URL for download.

string finalurl = String.Format(updateFeedUrl,MyAppBootApp.Model.IsPreReleaseVersion.ToString().ToLowerInvariant(), MyAppBootApp.Model.ProductVersion);
                HttpWebRequest request = MyAppBootApp.Model.CreateWebRequest(finalurl);
                HttpWebResponse response = (HttpWebResponse)request.GetResponse();

                if (response.StatusCode == HttpStatusCode.OK)
                {
                    Stream rebut = response.GetResponseStream();
                    StreamReader readStream = new StreamReader(rebut, Encoding.UTF8); // Pipes the stream to a higher level stream reader with the required encoding format.
                    string info = readStream.ReadToEnd();
                    UpdateInfo update = JsonConvert.DeserializeObject<UpdateInfo>(info);

                    response.Close();
                    readStream.Close();


                    if (update == null || (update.Version == MyAppBootApp.Model.ProductVersion))
                    {
                        MyAppBootApp.Model.Engine.SetUpdate(null, null, 0, UpdateHashType.None, null);
                        this.UpdateState = UpdateState.Current;
                    }
                    else
                    {
                        MyAppBootApp.Model.Engine.SetUpdate(null,update.Url, 0, UpdateHashType.None, null);

                        this.UpdateState = UpdateState.Available;
                        MyAppBootApp.Model.UpdateData = update;
                    }

                    succeeded = true;
                }


The updatereplace method works correctly and downloads the new installer and launches it and shuts down. However, the new installer fails to install with a failed to acquire container error. Here is the log output. It seems like the package cache for the downloaded bootstrapper (new version) is being removed and the newly launched installer can’t find it. However, if I just run the new version of the bootstrapper without trying to upgrade from previous version it works just fine.


[11C0:05FC][2016-06-14T11:26:38]i001: Burn v3.10.2.2516, Windows v6.1 (Build 7601: Service Pack 1), path: C:\Users\SBRICK~1\AppData\Local\Temp\{8EA3FD0F-036E-45D2-BCEC-3D150924317A}\.cr\MyAppv4.0.0.exe
[11C0:05FC][2016-06-14T11:26:38]i003: This bundle is being run by a related bundle as type 'Update'.
[11C0:05FC][2016-06-14T11:26:38]i009: Command Line: '"-burn.clean.room=C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\MyAppv4.0.0.exe" -burn.related.update'
[11C0:05FC][2016-06-14T11:26:38]i000: Setting string variable 'WixBundleOriginalSource' to value 'C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\MyAppv4.0.0.exe'
[11C0:05FC][2016-06-14T11:26:38]i000: Setting string variable 'WixBundleOriginalSourceFolder' to value 'C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\'
[11C0:05FC][2016-06-14T11:26:38]i000: Setting string variable 'WixBundleLog' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638.log'
[11C0:05FC][2016-06-14T11:26:38]i000: Setting string variable 'WixBundleName' to value 'MyApp'
[11C0:05FC][2016-06-14T11:26:38]i000: Setting string variable 'WixBundleManufacturer' to value 'MyCompany LLC'
[11C0:05FC][2016-06-14T11:26:39]i000: Loading managed bootstrapper application.
[11C0:05FC][2016-06-14T11:26:39]i000: Creating BA thread to run asynchronously.
[11C0:06F0][2016-06-14T11:26:39]i000: Running the MyApp BA.
[11C0:06F0][2016-06-14T11:26:39]i000: Setting string variable 'INSTALLFOLDER' to value 'C:\Program Files (x86)\MyCompany LLC\MyApp'
[11C0:06F0][2016-06-14T11:26:39]i000: Creating RootViewModel
[11C0:06F0][2016-06-14T11:26:39]i000: Initializing event handlers for Burn
[11C0:06F0][2016-06-14T11:26:39]i000: Creating a UI.
[11C0:06F0][2016-06-14T11:26:39]i000: Setting event handlers
[11C0:06F0][2016-06-14T11:26:39]i000: InitializeComponent
[11C0:06F0][2016-06-14T11:26:39]i000: Showing the UI.
[11C0:06F0][2016-06-14T11:26:39]i000: RootViewModel Loaded Begin
[11C0:06F0][2016-06-14T11:26:39]i000: Navigating to InitializingView
[11C0:05FC][2016-06-14T11:26:39]i100: Detect begin, 18 packages
[11C0:05FC][2016-06-14T11:26:39]i000: Setting version variable 'MFC110_Version_x64' to value '11.0.60610.1'
[11C0:05FC][2016-06-14T11:26:39]i000: Setting string variable 'NETFRAMEWORK40' to value '1'
[11C0:05FC][2016-06-14T11:26:39]i052: Condition 'NETFRAMEWORK40' evaluates to true.
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: NetFx40Web, state: Present, cached: Complete
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: vc110, state: Absent, cached: Complete
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: VersionInstall, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Dependencies, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Framework, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.UI.Host.Standalone, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: SolidWorks.DocMgrAPI, state: Present, cached: Complete
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.CAD.SolidWorks, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: Inventor.VaultMSWSE, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.CAD.Inventor, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.CAD.Spreadsheet, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: Creo.AdvCADPreqs, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.CAD.Creo, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.CAD.DWG, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.CAD.EPDMXML, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.ERP.Syteline, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.ERP.Syspro, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i101: Detected package: MyApp.Addins.ERP.Syspro6, state: Absent, cached: None
[11C0:05FC][2016-06-14T11:26:39]i052: Condition 'NETFRAMEWORK35_SP_LEVEL < 1' evaluates to false.
[11C0:05FC][2016-06-14T11:26:39]i199: Detect complete, result: 0x0
[11C0:05FC][2016-06-14T11:26:48]i200: Plan begin, 18 packages, action: Install
[11C0:05FC][2016-06-14T11:26:48]w321: Skipping dependency registration on package with no dependency providers: NetFx40Web
[11C0:05FC][2016-06-14T11:26:48]i052: Condition '(NOT MFC110_Version_x64 >= v11.0.60610.1) OR NOT MFC110_Version_x64' evaluates to false.
[11C0:05FC][2016-06-14T11:26:48]w321: Skipping dependency registration on package with no dependency providers: vc110
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleLog_vc110' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_000_vc110.log'
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleRollbackLog_VersionInstall' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_001_VersionInstall_rollback.log'
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleLog_VersionInstall' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_001_VersionInstall.log'
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleRollbackLog_MyApp.Dependencies' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_002_MyApp.Dependencies_rollback.log'
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleLog_MyApp.Dependencies' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_002_MyApp.Dependencies.log'
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleRollbackLog_MyApp.Framework' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_003_MyApp.Framework_rollback.log'
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleLog_MyApp.Framework' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_003_MyApp.Framework.log'
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleRollbackLog_MyApp.UI.Host.Standalone' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_004_MyApp.UI.Host.Standalone_rollback.log'
[11C0:05FC][2016-06-14T11:26:48]i000: Setting string variable 'WixBundleLog_MyApp.UI.Host.Standalone' to value 'C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_004_MyApp.UI.Host.Standalone.log'
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: NetFx40Web, state: Present, default requested: Present, ba requested: Present, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: vc110, state: Absent, default requested: Absent, ba requested: Present, execute: Install, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: VersionInstall, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: Uninstall, cache: Yes, uncache: No, dependency: Register
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Dependencies, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: Uninstall, cache: Yes, uncache: No, dependency: Register
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Framework, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: Uninstall, cache: Yes, uncache: No, dependency: Register
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.UI.Host.Standalone, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: Uninstall, cache: Yes, uncache: No, dependency: Register
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: SolidWorks.DocMgrAPI, state: Present, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.CAD.SolidWorks, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: Inventor.VaultMSWSE, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.CAD.Inventor, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.CAD.Spreadsheet, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: Creo.AdvCADPreqs, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.CAD.Creo, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.CAD.DWG, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.CAD.EPDMXML, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.ERP.Syteline, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.ERP.Syspro, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i201: Planned package: MyApp.Addins.ERP.Syspro6, state: Absent, default requested: Present, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[11C0:05FC][2016-06-14T11:26:48]i299: Plan complete, result: 0x0
[11C0:05FC][2016-06-14T11:26:48]i300: Apply begin
[11C0:05FC][2016-06-14T11:26:48]i010: Launching elevated engine process.
[11C0:05FC][2016-06-14T11:26:51]i011: Launched elevated engine process.
[11C0:05FC][2016-06-14T11:26:51]i012: Connected to elevated engine.
[0BD0:0A00][2016-06-14T11:26:51]i358: Pausing automatic updates.
[0BD0:0A00][2016-06-14T11:26:51]i359: Paused automatic updates.
[0BD0:0A00][2016-06-14T11:26:51]i360: Creating a system restore point.
[0BD0:0A00][2016-06-14T11:26:55]i361: Created a system restore point.
[0BD0:0A00][2016-06-14T11:26:55]i370: Session begin, registration key: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{c172f493-8525-4b36-97b8-ed698a2f586f}, options: 0x7, disable resume: No
[0BD0:0A00][2016-06-14T11:26:56]i000: Caching bundle from: 'C:\Users\SBRICK~1\AppData\Local\Temp\{B60DBA11-D605-4EAF-A12C-0AE7531CE198}\.be\MyAppv3.10.520-Beta.exe' to: 'C:\ProgramData\Package Cache\{c172f493-8525-4b36-97b8-ed698a2f586f}\MyAppv3.10.520-Beta.exe'
[0BD0:0A00][2016-06-14T11:26:56]i320: Registering bundle dependency provider: {c172f493-8525-4b36-97b8-ed698a2f586f}, version: 3.10.520.0
[0BD0:0A00][2016-06-14T11:26:56]i371: Updating session, registration key: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{c172f493-8525-4b36-97b8-ed698a2f586f}, resume: Active, restart initiated: No, disable resume: No
[0BD0:12B0][2016-06-14T11:26:56]i304: Verified existing payload: vc110 at path: C:\ProgramData\Package Cache\1A5D93DDDBC431AB27B1DA711CD3370891542797\vcredist_x64_2012.exe.
[11C0:12AC][2016-06-14T11:26:56]w341: Prompt for source of container: WixAttachedContainer, path: C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\MyAppv4.0.0.exe
[11C0:12AC][2016-06-14T11:26:56]i000: Resolving Source for . Url:  Local: C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\MyAppv4.0.0.exe Result: Ok
[11C0:12AC][2016-06-14T11:26:56]i000: Copying local installer to local source
[11C0:12AC][2016-06-14T11:26:56]i000: C:\Users\SBRICK~1\AppData\Local\Temp\{8EA3FD0F-036E-45D2-BCEC-3D150924317A}\.cr\MyAppv4.0.0.exe
[11C0:12AC][2016-06-14T11:26:56]e054: Failed to resolve source for file: C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\MyAppv4.0.0.exe, error: 0x80070002.
[11C0:12AC][2016-06-14T11:26:56]e000: Error 0x80070002: Failed while prompting for source (original path 'C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\MyAppv4.0.0.exe').
[11C0:12AC][2016-06-14T11:26:56]e311: Failed to acquire container: WixAttachedContainer to working path: C:\Users\SBRICK~1\AppData\Local\Temp\{B60DBA11-D605-4EAF-A12C-0AE7531CE198}\C41AD52D866E31373B326287DA67E3331EB342A9, error: 0x80070002.
[11C0:05FC][2016-06-14T11:26:56]e000: Error 0x80070002: Failed while caching, aborting execution.
[0BD0:0A00][2016-06-14T11:26:56]i372: Session end, registration key: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{c172f493-8525-4b36-97b8-ed698a2f586f}, resume: None, restart: None, disable resume: No
[0BD0:0A00][2016-06-14T11:26:56]i330: Removed bundle dependency provider: {c172f493-8525-4b36-97b8-ed698a2f586f}
[0BD0:0A00][2016-06-14T11:26:56]i352: Removing cached bundle: {c172f493-8525-4b36-97b8-ed698a2f586f}, from path: C:\ProgramData\Package Cache\{c172f493-8525-4b36-97b8-ed698a2f586f}\
[0BD0:0A00][2016-06-14T11:26:56]i371: Updating session, registration key: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{c172f493-8525-4b36-97b8-ed698a2f586f}, resume: None, restart initiated: No, disable resume: No
[11C0:05FC][2016-06-14T11:26:56]i399: Apply complete, result: 0x80070002, restart: None, ba requested restart:  No
[11C0:05FC][2016-06-14T11:27:01]i500: Shutting down, exit code: 0x80070002
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: INSTALLFOLDER = C:\Program Files (x86)\MyCompany LLC\MyApp
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: MFC110_Version_x64 = 11.0.60610.1
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: NETFRAMEWORK40 = 1
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: SystemFolder = C:\Windows\system32\
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleAction = 5
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleElevated = 1
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleLog = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleLog_MyApp.Dependencies = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_002_MyApp.Dependencies.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleLog_MyApp.Framework = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_003_MyApp.Framework.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleLog_MyApp.UI.Host.Standalone = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_004_MyApp.UI.Host.Standalone.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleLog_vc110 = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_000_vc110.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleLog_VersionInstall = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_001_VersionInstall.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleManufacturer = MyCompany LLC
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleName = MyApp
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleOriginalSource = C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\MyAppv4.0.0.exe
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleOriginalSourceFolder = C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleProviderKey = {c172f493-8525-4b36-97b8-ed698a2f586f}
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleRollbackLog_MyApp.Dependencies = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_002_MyApp.Dependencies_rollback.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleRollbackLog_MyApp.Framework = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_003_MyApp.Framework_rollback.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleRollbackLog_MyApp.UI.Host.Standalone = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_004_MyApp.UI.Host.Standalone_rollback.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleRollbackLog_VersionInstall = C:\Users\SBRICK~1\AppData\Local\Temp\MyApp_20160614112638_001_VersionInstall_rollback.log
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleSourceProcessFolder = C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleSourceProcessPath = C:\Users\sbrickler\AppData\Local\Package Cache\{8ad70891-cec5-4731-a2a2-5ea46147ad8f}\MyAppv4.0.0.exe
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleTag =
[11C0:05FC][2016-06-14T11:27:01]i410: Variable: WixBundleVersion = 3.10.520.0
[11C0:05FC][2016-06-14T11:27:01]i007: Exit code: 0x80070002, restarting: No



More information about the wix-users mailing list