Forum Discussion
Ryan_4848
Feb 23, 2024Copper Contributor
Obtaining SQL VM Edition from azure
I'm in the process of gathering information about our SQL VMs on Azure, and I'm specifically looking for the location of the editions. However, I seem to be having trouble finding them. Any insights ...
Feb 27, 2024
Connect-AzAccount -Subscription subscriptionid
Get-AzSqlVM -Name ServerName -ResourceGroupName ResourceGroupName | format-list sqlimage*
This will give you :
SqlImageOffer : SQL2022-WS2022
SqlImageSku : Standard
Get-AzSqlVM -Name ServerName -ResourceGroupName ResourceGroupName | format-list sqlimage*
This will give you :
SqlImageOffer : SQL2022-WS2022
SqlImageSku : Standard