is it possible to get a windows 10 version 1908 image in azure

nimi 91 Reputation points
2022-07-29T07:08:58.533+00:00

is it possible to get a windows 10 version 1908 image in azure?
I could not find it.
Please help.

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
9,035 questions
0 comments No comments
{count} vote

Accepted answer
  1. kobulloc-MSFT 26,811 Reputation points Microsoft Employee Moderator
    2022-07-30T19:27:33.607+00:00

    Hello, @nimi !

    Can I get Windows 10 version 1908 on a VM in Azure?
    You can get Windows 10 version 1903 (also known as 19H1) and 1909 (also known as 19H2) as VM images in Azure. Windows 10 version 1908 is not available in the marketplace. You could try updating 1903/19H1 (the Windows forums will be your best resource for attempting that) or you could use another source/custom image.

    How do I get a VM with a specific Windows 10 version in Azure?
    You can look up a list of all Windows 10 VM images by searching the marketplace when deploying a VM in the portal or by using az vm image list with a search for the offer Windows-10:

    List all Windows 10 SKUs:
    az vm image list --all -f "Windows-10" -p "MicrosoftWindowsDesktop" -o table

    List all Windows 10 SKUs for WestUS:
    az vm image list --all -f "Windows-10" -p "MicrosoftWindowsDesktop" -l "westus" -o table

    Windows 10 versions are typically divided up into 2 releases a year (19H1, 19H2, 20H1, 20H2, 21H1, 21H2, etc.) with different version numbers and builds corresponding to each. You can learn more from these resources:

    List of Windows 10 images in the marketplace via the portal:

    226377-image.png

    List of Windows 10 images using az vm image list :

    226461-image.png

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. msrini-MSFT 9,291 Reputation points Microsoft Employee
    2022-07-30T04:48:26.98+00:00

    Hi,

    You can use your Powershell to figure out if Win 10 1908 is available in the region you are looking for:

    $locName="loc"
    Get-AzVMImagePublisher -Location $locName | Select PublisherName

    $pubName="MicrosoftWindowsDesktop"
    Get-AzVMImageOffer -Location $locName -PublisherName $pubName | Select Offer

    If you are not able to find one, then you can download it from other sources and upload it as VHD to Azure and deploy a VM from there.

    Regards,
    Karthik Srinivas

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.