From e1f24f877ac658682818ef484a581823375fe76d Mon Sep 17 00:00:00 2001
From: MCDeltaT <68516357+MustardChef@users.noreply.github.com>
Date: Wed, 22 Mar 2023 17:44:27 +0000
Subject: [PATCH 1/4] Add detail to the fix for error 0x80073CF6
---
Fixes/Fix Error 0x80073CF6.md | 43 +++++++++++++++++++++++++++++++----
1 file changed, 38 insertions(+), 5 deletions(-)
diff --git a/Fixes/Fix Error 0x80073CF6.md b/Fixes/Fix Error 0x80073CF6.md
index 1897270..b41fdc3 100644
--- a/Fixes/Fix Error 0x80073CF6.md
+++ b/Fixes/Fix Error 0x80073CF6.md
@@ -20,13 +20,13 @@ In E:\WSA\Install.ps1:102 Character:1
---
-## Solution 1: Previous installation is blocking installation
+## Prequisite Steps:
**1. Ensure the partition/drive you are installing from is NTFS**
**2. Redownload WSA Build .zip (sometime the files can be corrupted during download and extraction)**
-**3. Delete all folders containing "WindowsSubsystemForAndroid" in the following directories/paths:**
+**3. If you have installed WSA prior, make sure that it has been uninstalled and delete all folders containing "WindowsSubsystemForAndroid" from the following directories/paths and the subdirectories within:**
@@ -42,11 +42,32 @@ In E:\WSA\Install.ps1:102 Character:1
-**Hope this works for you!**
+If the issue has been fixed, then there is no need to follow through the rest of the guide.
+However, if you have the same issue, it is vital that you obtain the logs and try to decipher what is causing the error
+
+To obtain the logs (admin privilege required):
+
+1. Open a PowerShell window and change working directory to your Windows Subsystem For Androidâ„¢ directory.
+
+2. Run the command below in PowerShell. This should fail with an ActivityID, which is a UUID required for the next step.
+ ```Powershell
+ Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion -Register .\AppxManifest.xml
+ ```
+3. Run the command below in PowerShell. This should print the log of the failed operation.
+
+ ```Powershell
+ Get-AppPackageLog -ActivityID
+ ```
+
+
+
+
---
-## Solution 2: Firewall is blocking installation
+### There are various causes that lead to error 0x80073CF6 Find the fix that matches the error presented in the logs obtained from the instructions above
+
+---
### **Windows Firewall**
**1. Ensure that Windows Firewall is on and is working with "Recommended Settings" being enabled**
@@ -65,7 +86,19 @@ In E:\WSA\Install.ps1:102 Character:1
-**Hope this works for you!**
+---
+
+```powershell
+Installing MagiskOnWSA...
+Add AppxPackage: Deployment failed due to HRESULT: 0x80073CF6, unable to register the package.
+AppxManifest.xml (24,27): Error 0x80073B06: Unable to install or update package MicrosoftCorporateII.WindowsSubsystemForAndroid_ 8wekyb 3d8bbwe because the initial screen image for the current application context cannot be recognized. The application context may include specific language, DPI, contrast, or other special conditions. If you cannot recognize a context specific splash screen image, add a splash screen image to use as the default setting. Note: For additional information, look for [ActivityId] 94c065bb-5a2a-0004-129b-c1942a5ad901 in the event log, or use the command line Get AppPackageLo g - ActivityID 94c065bb-5a2a-0004-129b-c1942a5ad901 in the location D: WSA WSA Install.ps1:106 Character: 1
++ Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion ...
++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
++ CategoryInfo : WriteError: (D:\WSA\WSA\AppxManifest.xml:String) [Add-AppxPackage], IOException
++ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
+```
+
+**Hope these fixes work for you!**
---
### Have futher question or need help?
From 29a79154f49e3747611f12e7339dfb1cde1cf29f Mon Sep 17 00:00:00 2001
From: MCDeltaT <68516357+MustardChef@users.noreply.github.com>
Date: Thu, 23 Mar 2023 21:31:40 +0000
Subject: [PATCH 2/4] Complete fix guide for 0x80073CF6.md
---
Fixes/Fix Error 0x80073CF6.md | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/Fixes/Fix Error 0x80073CF6.md b/Fixes/Fix Error 0x80073CF6.md
index b41fdc3..7df3c4d 100644
--- a/Fixes/Fix Error 0x80073CF6.md
+++ b/Fixes/Fix Error 0x80073CF6.md
@@ -68,6 +68,10 @@ To obtain the logs (admin privilege required):
### There are various causes that lead to error 0x80073CF6 Find the fix that matches the error presented in the logs obtained from the instructions above
---
+## Issue 1: 0x800706D9 "There are no more endpoints avaliable from endpoint mapper"
+
+
+
### **Windows Firewall**
**1. Ensure that Windows Firewall is on and is working with "Recommended Settings" being enabled**
@@ -84,9 +88,11 @@ To obtain the logs (admin privilege required):
**3. Restart your PC**
+
---
+## Issue 2: 0x80073B06 "Initial screen image for the current application context cannot be recognized"
```powershell
Installing MagiskOnWSA...
@@ -97,11 +103,20 @@ AppxManifest.xml (24,27): Error 0x80073B06: Unable to install or update package
+ CategoryInfo : WriteError: (D:\WSA\WSA\AppxManifest.xml:String) [Add-AppxPackage], IOException
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
```
+### Solution:
+
+**1.** If you encounter this problem when installing from a build built using [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal) or [WSA-Script](https://github.com/YT-Advanced/WSA-Script), try deleting the previously built builds and rebuild. Make sure to delete and reclone the git repo if you are building using MagiskOnWSALocal.
+
+***Or***
+
+**2.** If you encounter this problem when installing using prebuilt builds from [Releases](https://github.com/LSPosed/MagiskOnWSALocal) from this repo, try redownloading the latest build. If the issue persists, report to the [Discord](https://discord.gg/2thee7zzHZ) and I will be happy to assist you
+
-**Hope these fixes work for you!**
---
-### Have futher question or need help?
+**Hope these fixes work for you!**
+
+## Have futher question or need help?
Join the Discord if you have any other questions or need help!
From 2946eddf77062647a2153db147f727c477af5b43 Mon Sep 17 00:00:00 2001
From: MCDeltaT <68516357+MustardChef@users.noreply.github.com>
Date: Thu, 23 Mar 2023 21:34:54 +0000
Subject: [PATCH 3/4] Update Fix Error 0x80073D10.md
---
Fixes/Fix Error 0x80073D10.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Fixes/Fix Error 0x80073D10.md b/Fixes/Fix Error 0x80073D10.md
index e85ca0d..49f6460 100644
--- a/Fixes/Fix Error 0x80073D10.md
+++ b/Fixes/Fix Error 0x80073D10.md
@@ -13,7 +13,7 @@
**1. To ensure that you download the correct package for your CPU archtecture, go to the [Downloads Section](https://github.com/MustardChef/WSABuilds#downloads) in the Readme.md**
-**2. Click on the badge/button matching your Operating System (OS) and CPU Archetecture**
+**2. Click on the badge/button matching your Operating System (OS) and CPU Archetecture, which should lead you to the corresponding release**
**3. Download the package and then install it, by following the [Installation guide](https://github.com/MustardChef/WSABuilds#--installation) in README.md**
From 8e0214d7a98c0d7666220bd878936c78efb299a2 Mon Sep 17 00:00:00 2001
From: MCDeltaT <68516357+MustardChef@users.noreply.github.com>
Date: Thu, 23 Mar 2023 21:36:07 +0000
Subject: [PATCH 4/4] Update and improve MoveToExtDrive.md
---
Guides/MoveToExtDrive.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Guides/MoveToExtDrive.md b/Guides/MoveToExtDrive.md
index 0ab1da0..4fd8fe8 100644
--- a/Guides/MoveToExtDrive.md
+++ b/Guides/MoveToExtDrive.md
@@ -39,7 +39,7 @@
- ### Step 2: Install WSA from the desired partition
- **1.)** Download the latest WSA Build according to Windows Version and CPU Archtecture from [Downloads](https://github.com/MustardChef/WSABuilds#downloads)
- **2.)** Extract to the desired partition or drive
- - Using the same process as detailed in [Installation](https://github.com/MustardChef/WSABuilds/edit/master/README.md#--installation)
+ - Using the same process as detailed in [Installation](https://github.com/MustardChef/WSABuilds/master/README.md#--installation)
- **3.)** Open the extracted folder and run ``Run.bat``