Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Windows 11 / Windows Subsystem for Android: Running Android Apps on Windows 11

March 21, 2022 AndroidWindows 11

Windows Subsystem for Android: Running Android Apps on Windows 11

In Windows 11, you can use the Windows Subsystem for Android (WSA) to install and run Android apps. Windows Subsystem for Android works in the same way as WSL (Windows Subsystem for Linux). An Android kernel is installed as a lightweight virtual machine and doesn’t require the Hyper-V role. Currently, the Windows Subsystem for Android is available to Windows Insiders only. However, you can install Windows Subsystem for Android on all Windows 11 builds.

Contents:
  • How to Install Windows Subsystem for Android (WSA) on Windows 11?
  • How to Install Android Apps on Windows 11?

How to Install Windows Subsystem for Android (WSA) on Windows 11?

To install an Android virtual machine on Windows 11, your computer must support Intel VT (Intel Virtualization Technology) or AMD-V. Make sure that it is enabled in BIOS/UEFI settings.

You can check virtualization supported in Windows using PowerShell:

Get-ComputerInfo -property "HyperV*"

HyperVRequirementDataExecutionPreventionAvailable : True
HyperVRequirementSecondLevelAddressTranslation : True
HyperVRequirementVirtualizationFirmwareEnabled : True
HyperVRequirementVMMonitorModeExtensions : True

check windows 11 for virtualization support

In our example, virtualizations are supported and enabled.

It is also recommended to have at least 8GB RAM on your computer so that the Android subsystem and apps work correctly.

Install the Windows VirtualMachinePlatform feature (restart required):

Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform

Enable-WindowsOptionalFeature VirtualMachinePlatform

Now you need to download the Windows Subsystem for Android installation file in MSIXBUNDLE format from the Microsoft Store. Previously, we showed how to download an installation APPX file for any app from Microsoft Store.

  1. Open https://store.rg-adguard.net/ (the service allows to get direct links to application installation files in the Microsoft Store);
  2. Copy and paste the following URL to the search box: https://www.microsoft.com/store/productId/9P3395VX91NR and select Slow;get Windows Subsystem for Android microsoft store download link
  3. Find MicrosoftCorporationII.WindowsSubsystemForAndroid_1.8.32828.0_neutral_~_8wekyb3d8bbwe.msixbundle in the list and download the file (1.2GB);
  4. Open Windows Terminal and run the command below to install the msixbundle file: Add-AppxPackage -Path "C:\Users\woshub\Downloads\MicrosoftCorporationII.WindowsSubsystemForAndroid_1.8.32828.0_neutral___8wekyb3d8bbwe.Msixbundle" install Windows Subsystem for Android msixbundle using powershell
  5. Then Windows Subsystem for Android Settings will appear in your Windows 11 Start menu.

Run Windows Subsystem for Android

How to Install Android Apps on Windows 11?

Now you can install Android apps. At the moment, installing Android apps is only available from US IP addresses for Windows 11 Insiders in the Beta channel and only via the Amazon AppStore (it is installed together with WSA). There are many restrictions though…

starting Windows Subsystem for Android on Windows 11

But you can install any Android app from the APK file in debug mode.

To download an APK file from Google Play, copy its URL. In this example, I want to download FBReader (an fb2/epub reader for Android I got used to).

google play copy app url

Go to http://apps.evozi.com/apk-downloader/, paste the URL of a Google Play app and click Generate Download Link. Download the APK file.

download android apk file using the link generator

Download the Android SDK Platform for Windows (https://developer.android.com/studio/releases/platform-tools) and extract to C:\tools\platform-tools.

Enable the Developer Mode in Windows Subsystem for Android settings. Click Refresh in the IP address box and wait till your Android instance gets an IP address. Copy it (sometimes it is shown together with the port, like 127.0.0.1:56314).

Windows Subsystem for Android enable debug mode

Open the PowerShell console and navigate to the directory with the Android SDK:

cd C:\tools\platform-tools

Connect to your Android virtual machine using the IP address you have copied:

./adb.exe connect 172.17.66.80

connected to 172.17.66.80:5555

adb.exe connect android VM

Make sure you’re only connected to one Android device:

adb devices

To install the Android app from the APK file, run the command:

./adb install "C:\Users\woshub\Downloads\org.geometerplus.zlibrary.ui.android_3003500_apps.evozi.com.apk"

install android apk wile using adb

Then the Android app icon appears in the list of installed programs in the Windows Start menu. Run it.

run android app on windows

In my case, FBreader sees only its emulated Android file system. To copy a file (book) to the books directory in Android, you have to use ADK :

./adb push "C:\Users\woshub\Downloads\Mark-Twain-adv-Huckleberry Finn.epub"/storage/emulated/0/books

copy file to android on windows

The epub file is now available in Android apps.

To copy a file from Android to Windows, the adb pull command is used:

adb pull "/storage/emulated/0/books/file.fb2 C:\Users\woshub\Downloads

1 comment
1
Facebook Twitter Google + Pinterest
previous post
How to Install Windows 11 on a Hyper-V Virtual Machine
next post
Tracking and Analyzing Remote Desktop Connection Logs in Windows

Related Reading

How to Connect VPN Before Windows Logon

November 14, 2023

Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

November 7, 2023

Installing Language Pack in Windows 10/11 with PowerShell

September 15, 2023

How to View and Change BIOS (UEFI) Settings...

September 13, 2023

How to Create UEFI Bootable USB Drive to...

September 11, 2023

1 comment

Bhisham March 22, 2022 - 5:21 am

You can also use WSA-Packman to deploy APK apps .

Reply

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • How to Connect VPN Before Windows Logon

    November 14, 2023
  • Removing Azure Arc Setup Feature on Windows Server 2022

    November 9, 2023
  • Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

    November 7, 2023
  • Send Emails with Microsoft Graph API and PowerShell

    November 6, 2023
  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
    Footer Logo

    @2014 - 2023 - Windows OS Hub. All about operating systems for sysadmins


    Back To Top