Disabling Azure Disk Encryption matters for the security of your Azure resources. This article will discuss the quick approaches to do this task.
Note: Before executing this command, ensure your VM is running.
Table of Contents
Disable Azure Disk Encryption
Let us dive deep into the two approaches individually.
Approach-1: Using PowerShell
You can use the Azure PowerShell command below for this purpose.
Disable-AzVMDiskEncryption -ResourceGroupName "newresgroup" -VMName "AzureLessonsVM" -VolumeType "all"After executing the above PowerShell command, I got the expected output, as shown in the screenshot below.
Click on the Yes button on the below pop up.


I logged in to the Azure Portal and navigated to the Azure VM. The screenshot below shows that the Azure disk encryption had been disabled.

Before executing the PowerShell script, Azure disk encryption was enabled, as shown in the screenshot below.

Check out Azure how to check if disk is managed or unmanaged
Approach-2: Using Azure CLI
You can execute the below Azure CLI command to disable the Azure Disk Encryption.
az vm encryption disable --name "AzureLessonsVM" --resource-group "newresgroup" --volume-type "all"After executing the above Azure CLI command, I got the expected output as below, and the ADE had been disabled successfully.

Then, I verified in the Azure Portal and saw that the ADE had been disabled successfully.

You may also like following the articles below.

I am Rajkishore, and I am a Microsoft Certified IT Consultant. I have over 14 years of experience in Microsoft Azure and AWS, with good experience in Azure Functions, Storage, Virtual Machines, Logic Apps, PowerShell Commands, CLI Commands, Machine Learning, AI, Azure Cognitive Services, DevOps, etc. Not only that, I do have good real-time experience in designing and developing cloud-native data integrations on Azure or AWS, etc. I hope you will learn from these practical Azure tutorials. Read more.
