Amit
Amit

Reputation: 153

Failed to delete the virtual machine extension in Azure ARM VM

I am getting a error message while removing the extension from a Linux VM in Azure Resource Manager Mode .

Failed to delete the virtual machine extension 'CustomScriptForLinux'. Error: VM has reported a failure when processing extension 'VMAccessForLinux'. Error message: "Enable failed.".

Upvotes: 2

Views: 4543

Answers (1)

NirushiJ
NirushiJ

Reputation: 41

Removing some VM Extensions is not supported; others have properties that can be set that change VM behavior radically. You can remove the extension by using Azure PowerShell cmdlets or by using the Service Management REST API operations.

Remove-AzureVMExtension – Use the cmdlet to remove classic VM extension

Remove-AzureRmVMExtension – Use the cmdlet to remove ARM VM extension

For more details on removing the extension check the link Add, Update, or Disable Extensions.

Upvotes: 1

Related Questions