Movatterモバイル変換


[0]ホーム

URL:


Skip to main content

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft EdgeMore info about Internet Explorer and Microsoft Edge
Table of contentsExit editor mode

Delete labs or lab VMs in Azure DevTest Labs

Feedback

In this article

This article shows you how to delete a virtual machine (VM) from a lab or delete a lab in Azure DevTest Labs.

Delete a VM from a lab

When you create a VM in a lab, DevTest Labs automatically creates resources for the VM, like a disk, network interface, and public IP address, in a separate resource group. Deleting the VM deletes most of the resources created at VM creation, including the VM, network interface, and disk. However, deleting the VM doesn't delete:

  • Any resources you manually created in the VM's resource group.
  • The VM's key vault in the lab's resource group.
  • Any availability set, load balancer, or public IP address in the VM's resource group. These resources are shared by multiple VMs in a resource group.

Caution

Deleting VMs and labs is permanent, and cannot be undone.

To delete a VM from a lab:

  1. On the lab'sOverview page in the Azure portal, find the VM you want to delete in the list underMy virtual machines.

  2. Either:

    • SelectMore options (...) next to the VM listing, and selectDelete from the context menu.Screenshot of Delete selected on the V M's context menu on the lab Overview page.

    or

    • Select the VM name in the list, and then on the VM'sOverview page, selectDelete from the top menu.Screenshot of the Delete button on the V M Overview page.
  3. On theAre you sure you want to delete it? page, selectDelete.
    The deletion of the VM, it's network interface, and it's associated OS disks is permanent, and cannot be undone.

    Screenshot of the V M deletion confirmation page.

  4. To check deletion status, select theNotifications icon on the Azure menu bar.

Automate the process of deleting all the VMs in a lab

As a lab owner, you can delete VMs from your lab in the Azure portal. You also can delete all the VMs in your lab by using a PowerShell script. In the following example, under thevalues to change comment, modify the parameter values. You can retrieve thesubscriptionId,labResourceGroup, andlabName values from the lab pane in the Azure portal.

   # Delete all the VMs in a lab.             # Values to change:   $subscriptionId = "<Enter Azure subscription ID here>"   $labResourceGroup = "<Enter lab's resource group here>"   $labName = "<Enter lab name here>"             # Sign in to your Azure account.   Connect-AzAccount             # Select the Azure subscription that has the lab. This step is optional   # if you have only one subscription.   Select-AzSubscription -SubscriptionId $subscriptionId             # Get the lab that has the VMs that you want to delete.   $lab = Get-AzResource -ResourceId ('subscriptions/' + $subscriptionId + '/resourceGroups/' + $labResourceGroup + '/providers/Microsoft.DevTestLab/labs/' + $labName)             # Get the VMs from that lab.   $labVMs = Get-AzResource | Where-Object {      $_.ResourceType -eq 'microsoft.devtestlab/labs/virtualmachines' -and      $_.Name -like "$($lab.Name)/*"}             # Delete the VMs.   foreach($labVM in $labVMs)      {         Remove-AzResource -ResourceId $labVM.ResourceId -Force      }

Delete a lab

When you delete a lab from a resource group, DevTest Labs automatically deletes:

  • All VMs in the lab.
  • All resource groups associated with those VMs.
  • All resources that DevTest Labs automatically created during lab creation.

DevTest Labs doesn't delete the lab's resource group itself, and doesn't delete any resources you manually created in the lab's resource group.

Note

If you want to manually delete the lab's resource group, you must delete the lab first. You can't delete a resource group that has a lab in it.

To delete a lab:

  1. On the lab'sOverview page in the Azure portal, selectDelete from the top toolbar.

    Screenshot of the Delete button on the lab Overview page.

  2. On theAre you sure you want to delete it? page, underType the lab name, type the lab name, and then selectDelete.
    The deletion of the lab and all its resources is permanent, and cannot be undone.

    Screenshot of the lab deletion confirmation page.

  3. To check deletion status, select theNotifications icon on the Azure menu bar.

    Screenshot of the Notifications icon on the Azure menu bar.

Next steps


Feedback

Was this page helpful?

YesNoNo

Need help with this topic?

Want to try using Ask Learn to clarify or guide you through this topic?

Suggest a fix?

  • Last updated on

In this article

Was this page helpful?

YesNo
NoNeed help with this topic?

Want to try using Ask Learn to clarify or guide you through this topic?

Suggest a fix?