In this Microsoft Azure blog post we are going to delete a Virtual Machine running using the Azure CLI command line utility.
Azure CLI
The Azure CLI command-line utility allows us to manage most of the Azure services programmatically without using the portal.
To get started, login to Azure and authenticate using the following command.
az login --use-device-code
Set your your Azure subscription if you have more than one.
az account set --subscription subscription-name
In the example below, I’m deleting a Virtual machine called mailtrainvm located inside a resource group called mailtran.
The command will not ask for confirmation and force the delete the virtual machine.
az vm delete --resource-group mailtrain --name mailtrainvm --yes --force-deletion yes
Processing…
Success! You're on the list.
Whoops! There was an error and we couldn't process your subscription. Please reload the page and try again.