--- title: "Get-VBRAzureVMSize" description: "Returns Microsoft Azure VM configuration options available for a subscription. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns VM configuration options available for a Micr" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrazurevmsize.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Restore to Microsoft Azure > Get-VBRAzureVMSize" dateModified: "2026-08-19" --- # Get-VBRAzureVMSize ## Short Description Returns Microsoft Azure VM configuration options available for a subscription. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRAzureVMSize -Subscription -Location [-Name ] [] ``` ## Detailed Description This cmdlet returns VM configuration options available for a Microsoft Azure subscription. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Location

Specifies the geographic location of the datacenter.

Accepts the VBRAzureLocation object. To get this object, run the Get-VBRAzureLocation cmdlet.

VBRAzureLocation

True

Named

True (ByPropertyName)

Name

Specifies the array of names. The cmdlet will return VM configuration options that match the specified names.

String[]

False

Named

False

Subscription

Specifies the subscription. The cmdlet will return VM configuration options associated with this subscription.

Accepts the VBRAzureSubscription object. To create this object, run the Get-VBRAzureSubscription cmdlet.

VBRAzureSubscription

True

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object [`VBRAzureVMSize`](vbrazurevmsize.md) ## Examples ::: example ### Example 1. Getting All VM Configuration Options Available for Subscription This example shows how to get all VM configuration options available for a subscription. ``` $account = Get-VBRAzureAccount -Name "RestoreToAzureRM@Veeam.com" $subscription = Get-VBRAzureSubscription -Account $account -Name "VeeamDirectRestore2Azure" $location = Get-VBRAzureLocation -Subscription $subscription -Name "australiaeast" Get-VBRAzureVMSize -Subscription $subscription -Location $location ``` Perform the following steps: 1. Run the [`Get-VBRAzureAccount`](get-vbrazureaccount.md) cmdlet. Specify the `Name` parameter value. Save it to the `$account` variable. 2. Run the [`Get-VBRAzureSubscription`](get-vbrazuresubscription.md) cmdlet. Set the `$account` variable as the `Account` parameter value. Specify the `Name` parameter value. Save it to the `$subscription` variable. 3. Run the [`Get-VBRAzureLocation`](get-vbrazurelocation.md) cmdlet. Set the `$subscription` variable as the `Subscription` parameter value. Specify the `Name` parameter value. Save it to the `$location` variable. 4. Run the `Get-VBRAzureVMSize` cmdlet. Set the `$subscription` variable as the `Subscription` parameter value. Set the `$location` variable as the `Location` parameter value. ::: ::: example ### Example 2. Getting VM Configuration Options by Name This example shows how to get a VM configuration by the VM configuration name. ``` $account = Get-VBRAzureAccount -Name "RestoreToAzureRM@Veeam.com" $subscription = Get-VBRAzureSubscription -Account $account -Name "VeeamDirectRestore2Azure" $location = Get-VBRAzureLocation -Subscription $subscription -Name "australiaeast" Get-VBRAzureVMSize -Subscription $subscription -Location $location -Name "Standard_G3" ``` Perform the following steps: 1. Run the [`Get-VBRAzureAccount`](get-vbrazureaccount.md) cmdlet. Specify the `Name` parameter value. Save it to the `$account` variable. 2. Run the [`Get-VBRAzureSubscription`](get-vbrazuresubscription.md) cmdlet. Set the `$account` variable as the `Account` parameter value. Specify the `Name` parameter value. Save it to the `$subscription` variable. 3. Run the [`Get-VBRAzureLocation`](get-vbrazurelocation.md) cmdlet. Set the `$subscription` variable as the `Subscription` parameter value. Specify the `Name` parameter value. Save it to the `$location` variable. 4. Run the `Get-VBRAzureVMSize` cmdlet. Set the `$subscription` variable as the `Subscription` parameter value. Set the `$location` variable as the `Location` parameter value. Specify the `Name` parameter value. ::: ## Related Commands - [`Get-VBRAzureSubscription`](get-vbrazuresubscription.md) - [`Get-VBRAzureLocation`](get-vbrazurelocation.md)