Update : updated script to support Azure Az powershell module. Here is a powershell script to generate a report of Azure Managed VM disks in a subscription. It generates a csv file which includes Disk Size, SKU, and associated VM details. All these information can be helpful when you are auditing your Azure environment and…
Tag: Managed Disk
Delete unattached Managed disks in Azure using Powershell
Update : updated script to support Azure Az powershell module. While deleting Azure Virtual Machines, we sometimes don’t delete managed disks attached to the VM. This could be intentional as we may want to attach it to another VM or could be just because we forgot, or did not set the option to delete managed…
Create Azure disk snapshot using Powershell
Update : updated script to support Azure Az powershell module. Today , I am going to share a script to take Snapshot of Azure Managed disks. Taking a snapshot of business critical systems before working on any system change which can potentially cause business impact is crucial. If something goes wrong, you can quickly restore…
Convert Azure Premium disk to Standard disk using Powershell
Update : updated script to support Azure Az powershell module. Azure Managed disk is Microsoft disk storage solution. With managed disks, all you have to do is provision the disk, and Azure takes care of the rest. Microsoft provides different Managed disk types for different performance category/IOPS. Refer here for more information. It is very…