From bf2de1dcf4f44e33f72a06480aa851055de1eab8 Mon Sep 17 00:00:00 2001 From: Stephen O'Connor Date: Sun, 11 Sep 2022 20:19:32 -0700 Subject: [PATCH] Add Get-AppxPackage command to FAQ.md (#276) --- docs/FAQ.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 556eedf..852d884 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -5,6 +5,21 @@ This issue occurs due to loopback restrictions on Windows 10 UWP apps. To lift t ```ps CheckNetIsolation LoopbackExempt -a -n="Microsoft.MinecraftUWP_8wekyb3d8bbwe" ``` + +If you are running a preview or beta release, you can run the following command to unlock that version: + +```ps +CheckNetIsolation LoopbackExempt -a -n="Microsoft.MinecraftWindowsBeta" +``` + +If that still doesn't work, you can inspect what Minecraft versions are available on your system with: + +```ps +Get-AppxPackage -AllUsers | Where Name -Match ".*Minecraft.*" | Select Name,InstallLocation,PackageFullName +``` + +Use the PackageFullName field in place of the `Microsoft.MinecraftUWP_8wekyb3d8bbwe` for the command above. + ## Kicked during login -Some servers can kick you if you don't set `authTitle` as explained in the README. \ No newline at end of file +Some servers can kick you if you don't set `authTitle` as explained in the README.