Hi,
Can you try to run this Powershell command to get the size ?
Get-AzImage | Where-Object {$.Name -like '<your-image-name>'} | Select-Object Name, @{Name="SizeGB"; Expression={$.StorageProfile.OsDisk.DiskSizeGB}}
Regards,
Karthik Srinivas
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello experts!
I have captured image from a Virtual Machine, and I want to know the size of the Image. I am not able to find anything related to the image size in the Azure portal. How can I check the size? Please let me know from where I can check the size of the captured image from a Virtual machine?
Screenshot 2023-06-14 093602.png
Thanks!
Nidhi
Hi,
Can you try to run this Powershell command to get the size ?
Get-AzImage | Where-Object {$.Name -like '<your-image-name>'} | Select-Object Name, @{Name="SizeGB"; Expression={$.StorageProfile.OsDisk.DiskSizeGB}}
Regards,
Karthik Srinivas