WSABuilds/README.md

98 lines
6.4 KiB
Markdown
Raw Normal View History

2021-12-12 02:20:37 +01:00
# Magisk on WSA (with Google Apps)
2021-10-26 12:19:47 +02:00
2021-10-27 15:06:38 +02:00
## Features
2021-10-27 16:07:29 +02:00
- Integrate Magisk and OpenGApps in a few clicks within minutes
- No Linux environment required for integration
- Keep each build up to date
2021-10-27 15:06:38 +02:00
- Support both ARM64 and x64
2021-12-18 16:59:40 +01:00
- Support all OpenGApps variants except for aroma (aroma does not support x86_64, please use super instead)
2021-10-30 14:48:34 +02:00
- Fix external storage access of DocumentUI
- Fix VPN dialog not showing (use our [VpnDialogs app](https://github.com/LSPosed/VpnDialogs))
2021-12-30 04:41:48 +01:00
- Unattended installation
- Automatically activates developers mode in Windows 11
2021-12-11 18:56:48 +01:00
- Update to new version while preserving data with one-click script
2021-12-11 21:27:26 +01:00
- Merged all language packs
2021-12-18 14:19:30 +01:00
- Support managing start menu icons (manually installing [WSAHelper](https://github.com/LSPosed/WSAHelper/releases/latest) to use this feature)
2021-10-27 15:06:38 +02:00
2021-12-12 02:20:37 +01:00
## Video Guide
https://user-images.githubusercontent.com/5022927/145696886-e13ebfc1-ff25-4410-893e-d3e517af70ea.mp4
## Text Guide
2021-10-26 11:16:38 +02:00
2022-03-13 20:57:39 +01:00
1. Star (if you like) and fork this repo (keep it PUBLIC, private repo is not supported)
2021-10-30 09:26:06 +02:00
1. Go to the **Action** tab in your forked repo
![Action Tab](https://docs.github.com/assets/images/help/repository/actions-tab.png)
2021-12-11 22:50:28 +01:00
1. In the left sidebar, click the **Build WSA** workflow.
2021-10-30 09:26:06 +02:00
![Workflow](https://docs.github.com/assets/images/actions-select-workflow.png)
1. Above the list of workflow runs, select **Run workflow**
![Run Workflow](https://docs.github.com/assets/images/actions-workflow-dispatch.png)
2022-04-20 18:39:53 +02:00
1. Select the version of Magisk and select the [OpenGApps variant](https://github.com/opengapps/opengapps/wiki#variants) (none is no OpenGApps) you like, select the root solution (none means no root), select WSA version and its architecture (mostly x64) and click **Run workflow**
2021-10-30 09:26:06 +02:00
![Run Workflow](https://docs.github.com/assets/images/actions-manually-run-workflow.png)
1. Wait for the action to complete and download the artifact **DO NOT download it via multithread downloaders like IDM or ADM**
2021-10-30 09:26:06 +02:00
![Download](https://docs.github.com/assets/images/help/repository/artifact-drop-down-updated.png)
2021-12-11 18:56:48 +01:00
1. Unzip the artifact
2021-12-11 22:50:28 +01:00
- The size shown in the webpage is uncompressed size and the zip you download will be compressed. So the size of the zip will be much less than the size shown in the webpage.
2021-11-02 02:26:01 +01:00
1. Right-click `Install.ps1` and select `Run with PowerShell`
2021-12-11 18:56:48 +01:00
- If you previously have a MagiskOnWSA installation, it will automatically uninstall the previous while **preserving all userdata** and install the new one, so don't worry about your data.
2021-12-18 14:19:30 +01:00
- If you have an official WSA installation, you should uninstall it first. (In case you want to preserve your data, you can backup `%LOCALAPPDATA%\Packages\MicrosoftCorporationII.WindowsSubsystemForAndroid_8wekyb3d8bbwe\LocalCache\userdata.vhdx` before uninstallation and restore it after installation.) (If you want to restore the icons to start menu, please install and use [WSAHelper](https://github.com/LSPosed/WSAHelper/releases/latest).)
2022-01-13 15:18:45 +01:00
- If the popup windows disappear **without asking administrative permission** and WSA is not installed successfully, you should manually run `Install.ps1` as administrator:
1. Press `Win+x` and select `Windows Terminal (Admin)`
2. Input `cd "{X:\path\to\your\extracted\folder}"` and press `enter`, and remember to replace `{X:\path\to\your\extracted\folder}` including the `{}`, for example `cd "D:\wsa"`
3. Input `PowerShell.exe -ExecutionPolicy Bypass -File .\Install.ps1` and press `enter`
4. The script will run and WSA will be installed
5. If this workaround does not work, your PC is not supported for WSA
2021-12-11 22:50:28 +01:00
1. Magisk/Play store will be launched. Enjoy by installing LSPosed-zygisk with zygisk enabled or Riru and LSPosed-riru
2021-10-31 12:24:33 +01:00
2021-12-14 17:32:05 +01:00
## FAQ
- Can I delete the unzipped folder?
No.
- Why the size of the zip does not match the one shown?
The zip you downloaded is compressed and Github is showing the uncompressed size.
- How can I update WSA to new version?
Rerun the Github action, download the new artifact, replace the content of your previous installation and rerun `Install.ps1`. Don't worry, your data will be preserved.
- How can I get the logcat from WSA?
`%LOCALAPPDATA%\Packages\MicrosoftCorporationII.WindowsSubsystemForAndroid_8wekyb3d8bbwe\LocalState\diagnostics\logcat`
- How can I update Magisk to new version?
Do the same as updating WSA
- VPN is not working?
Tell Microsoft to fix it. We cannot fix it easily.
- How to pass safetynet?
Like all the other emulators, no way.
- Virtualization is not enabled?
2021-12-30 04:41:48 +01:00
`Install.ps1` helps you enable it if not enabled. After rebooting, rerun `Install.ps1` to install WSA. If it's still not working, you have to enable virtualization in BIOS. That's a long story so ask Google for help.
2021-12-14 17:32:05 +01:00
- How to remount system as read-write?
No way in WSA since it's mounted as read-only by Hyper-V. You can modify system by making a Magisk module. Or directly modify system.img. Ask Google for help.
- I cannot `adb connect localhost:58526`
2021-12-30 04:41:48 +01:00
Make sure developer mode is enabled. If the issue persists, check the IP address of WSA in the setting page and try `adb connect ip:5555`.
2021-12-14 17:32:05 +01:00
- Magisk online module list is empty?
Magisk actively remove online module repository. You can install module locally or by `adb push module.zip /data/local/tmp` and `adb shell su -c magisk --install-module /data/local/tmp/module.zip`.
- Can I use Magisk 23.0 stable or lower version?
2022-02-13 19:09:01 +01:00
No. Magisk has bugs preventing itself running on WSA. Magisk 24+ has fixed them. So you must use Magisk 24 or higher version.
2021-12-14 17:32:05 +01:00
- How can I get rid of Magisk?
2022-02-13 19:09:01 +01:00
Choose `none` as root solution.
2021-12-16 12:52:22 +01:00
- Github Action script is updated, how can I synchronize it?
1. In your fork repository, click `fetch upstream`
![fetch](https://docs.github.com/assets/cb-33284/images/help/repository/fetch-upstream-drop-down.png)
1. Then and click `fetch and merge`
![merge](https://docs.github.com/assets/cb-128489/images/help/repository/fetch-and-merge-button.png)
2021-12-14 17:32:05 +01:00
2021-10-27 15:11:39 +02:00
## Credits
- [Magisk](https://github.com/topjohnwu/Magisk): The most famous root solution on Android
- [The Open GApps Project](https://opengapps.org): One of the most famous Google Apps packages solution
- [WSA-Kernel-SU](https://github.com/LSPosed/WSA-Kernel-SU) and [kernel-assisted-superuser](https://git.zx2c4.com/kernel-assisted-superuser/): The kernel `su` for debugging Magisk Integration
- [WSAGAScript](https://github.com/ADeltaX/WSAGAScript): The first GApps integration script for WSA