Hello Remco de Rooij
Welcome to Microsoft Q&A Platform, thanks for posting your query here.
Based on the details, looks like an issue with the Azure Disk Encryption extension on your VM. "Extension status not available on the VM" indicates that the Azure Disk Encryption extension is not reporting its status back to Azure.
To troubleshoot this issue, follow below steps and see if that helps:
-Check if the Azure Disk Encryption extension is installed on the VM.
You can do this by running the following command in PowerShell:
Get-AzVMExtension -ResourceGroupName <resource-group-name> -VMName <vm-name>
.
This should list all the extensions installed on the VM. Make sure that the AzureDiskEncryption
extension is listed.
-Check if the Azure Disk Encryption extension is running on the VM.
You can do this by running the following command in PowerShell:
Get-AzVMExtension -ResourceGroupName <resource-group-name> -VMName <vm-name> -Name AzureDiskEncryption
.
This should show you the status of the extension. Make sure that the ProvisioningState
is Succeeded
and the Status
show that the extension is running.
-Check below logs to see if Azure Disk Encryption extension is able to communicate with the Azure Disk Encryption service**:**
C:\WindowsAzure\Logs\Plugins\Microsoft.Azure.Security.AzureDiskEncryption.WindowsAzureDiskEncryption\1.2.0.0\
. Look for any errors or warnings in the logs.
If you have checked all of the above and still cannot find the issue, you can try redeploying the Azure Disk Encryption extension on the VM.
Hope this helps.