Can't Find Needed Server/VM in Europe Zones

Ibrahim Turnsole 21 Reputation points
2022-06-03T08:34:55.463+00:00

Hello Dears;
We want to purchase an Azure server/VM in any of Europe zones, but I can not find the needed specs
I searching for F16 or any or its versions...
the needed specs in details are
CPU 16 Core
32 RAM
256 GB SSD
Windows server 2019 or above

any one can help me where to find such specs in Europe zones??

best regards

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
4,099 questions
Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
8,951 questions
{count} votes

Accepted answer
  1. Bjoern Peters 8,911 Reputation points
    2022-06-03T13:50:22.29+00:00

    I got this PowerShell a long time ago, it is still working in CloudShell...

    $myregion = "westeurope"
    Get-AzureRmVMSize -Location $myregion | Where-Object { $.NumberOfCores -gt 16 } | Where-Object {$.MemoryInMB -gt 32000} | Out-GridView

    If you have a list of regions, you might build an outer loop to step through that list...

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Bjoern Peters 8,911 Reputation points
    2022-06-03T09:04:03+00:00

    According to Microsofts Services per Region - Compute - Virtual Machine
    https://azure.microsoft.com/en-us/global-infrastructure/services/?products=virtual-machines&regions=europe-north,europe-west

    F-Series should be available in both European regions, maybe you have to request them manually via "Compute power request" from support.

    208182-screenshot-56.png

    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.