Running Android apps on a Windows desktop can fill gaps where a service only ships a mobile client, and it keeps companion tools available without switching devices.
Windows 11 delivered Android app support through Windows Subsystem for Android (WSA), which runs an AOSP-based Android environment inside a lightweight virtual machine and integrates app windows and notifications into the Windows shell. App installation was handled through the Amazon Appstore integration, with sideloading available for .apk packages using the ADB debugging interface.
Hardware virtualization must be enabled in firmware, and Windows features such as Virtual Machine Platform must be turned on for WSA to start reliably. Microsoft ended support for WSA on March 5, 2025, and the Amazon Appstore entry was removed from the Microsoft Store, so only systems that already have WSA installed can keep running it. Sideloading bypasses store vetting, so treat third-party .apk files as untrusted until verified.
Important: Starting March 5, 2025, Windows Subsystem for Android and the Amazon Appstore are not available in the Microsoft Store, and no updates or fixes are provided.
Steps to install Android apps on Windows 11 using WSA:
- Confirm Windows Subsystem for Android is installed from Settings → Apps → Installed apps.
New installations are not available from the Microsoft Store after March 5, 2025.
- Verify Virtualization is Enabled in Task Manager → Performance → CPU.

- Enable CPU virtualization in UEFI/BIOS firmware when Virtualization shows Disabled.
Common labels include Intel Virtualization Technology, VT-x, AMD-V, or SVM Mode.
- Open Turn Windows features on or off.

- Enable Virtual Machine Platform.

- Enable Windows Hypervisor Platform.
Some virtualization software may switch to a Hyper-V compatibility mode when this feature is enabled.
- Apply the feature changes by clicking OK.

- Restart Windows 11.

- Launch Windows Subsystem for Android from the Start menu.

- Enable Developer mode in Windows Subsystem for Android settings.
Developer mode exposes an ADB debugging endpoint; disable it after sideloading.
- Open Files in Windows Subsystem for Android settings.
This starts the Android environment so the IP address and Port become available.
- Copy the IP address and Port shown under Developer mode.

- Connect adb from Android SDK Platform Tools to the WSA instance.
PS> adb connect 172.30.240.1:58526 connected to 172.30.240.1:58526
Run adb.exe from the platform-tools directory when the command is not found.
- Verify the connection using adb devices.
PS> adb devices List of devices attached 172.30.240.1:58526 device
- Install an .apk package using adb install.
PS> adb install .\app-release.apk Performing Streamed Install Success
Only sideload .apk files from trusted sources.
- Launch the installed app from the Start menu.

- Disable Developer mode when sideloading is complete.

Mohd Shakir Zakaria is a cloud architect with deep roots in software development and open-source advocacy. Certified in AWS, Red Hat, VMware, ITIL, and Linux, he specializes in designing and managing robust cloud and on-premises infrastructures.
