1

I am trying to install Windows Subsystem for Android with Amazon Appstore.

I am getting below warning

Your storage device isn't supported for this product.

I have installed windows 11 on my SSD drive.

enter image description here enter image description here

Device Specification:

  • Processor AMD Ryzen 5 2500U with Radeon Vega Mobile Gfx 2.00 GHz
  • Installed RAM 8.00 GB (6.90 GB usable)
  • Device ID device-id
  • Product ID product-id
  • System type 64-bit operating system, x64-based processor
  • Pen and touch No pen or touch input is available for this display

Windows Specification

  • Edition Windows 11 Home Insider Preview Single Language
  • Version Dev
  • Installed on ‎12/‎4/‎2021
  • OS build 22509.1011
  • Experience Windows Feature Experience Pack 1000.22509.1011.0

Drive Storage Space Details

Hyper-v is enabled Virtualization is Enabled

Ramhound
  • 44,080
sujeet
  • 151

2 Answers2

1

Judging by your Task Manager screenshot (that your SSD is listed as an HDD), the cause of the problem is probably either your SSD's firmware or the (software) SAT layer provided by your SATA/AHCI driver is not reporting / translating the corresponding information (that the drive is non-rotating) properly. (With a second thought, it could also be that in your UEFI settings, your SATA controller is not configured to operate in AHCI mode...)

Check whether you are using the Microsoft AHCI driver (Standard SATA AHCI Controller) or a driver from AMD in Device Manager (under IDE ATA/ATAPI Controllers). If it's the latter case, you might want to consider uninstalling it. (I do NOT guarantee that it will not break booting.)

You may also use programs (needs to be run with Administrator Windows Terminal / Command Prompt) in sg3_utils (click this to download the last working version) to confirm that your drive's firmware is doing its job fine and the SAT layer is indeed bad.

Firmware (Word 217 / 0xd9 being 0x0001 states that the drive is non-rotating):

PS C:\Users\tom\Downloads\sg3_utils-1.46mgw64> .\sg_sat_identify.exe PD0
Response for IDENTIFY DEVICE ATA command:
...
 d8     0000 0001 0000 0000 0000 0000 10ff 0000     .. .. .. .. .. .. .. ..
...

SAT layer:

PS C:\Users\tom\Downloads\sg3_utils-1.46mgw64> .\sg_vpd -p bdc PD0
Block device characteristics VPD page (SBC):
  Non-rotating medium (e.g. solid state)
...

What you might see when the produced VPD is not "good enough":

PS C:\Users\tom\Downloads\sg3_utils-1.46mgw64> .\sg_vpd -p bdc PD1
Block device characteristics VPD page (SBC):
  Medium rotation rate is not reported
...

(There's also a chance that it does not produce this particular VPD page at all.)

For your reference: enter image description here

Tom Yan
  • 10,996
0

The message "Your storage device isn’t supported for this product" is misleading. It is likely that the prerequisites for Windows Subsystem for Android have not been satisfied.

Here is the list of the prerequisites:

  • Your VM/computer needs to meet the minimum hardware requirements for Windows 11
  • Virtualization support must be enabled
  • Your device should be subscribed to the Beta channel
  • The Windows 11 build must be at least 22000.xxx
  • The Microsoft Store version must be at least 22110.1402.6.0
  • Computer region must be set to U.S
  • Have a U.S.-based Amazon Appstore account.

For more information, see the article
How to Run Android Apps on Windows 11 Right Now (Without Emulator).

Note: These prerequisites will surely change in the future.

harrymc
  • 498,455