移除資源和資源群組

已完成

刪除資源群組時請謹慎。 刪除資源群組時,會刪除其中包含的所有資源。 該資源群組可能包含其他資源群組中的資源相依的資源。

Screenshot showing the Delete resource group button (highlighted) in the portal.

使用 PowerShell 刪除資源群組

若要移除資源群組,請使用 Remove-AzResourceGroup。 在此範例中,我們會從訂用帳戶中移除 ContosoRG01 資源群組。 此 Cmdlet 會提示您確認,並且不會傳回任何輸出。

Remove-AzResourceGroup -Name "ContosoRG01"

移除資源

您也可以刪除資源群組內的個別資源。 例如,在這裡,我們會刪除虛擬網路。 不要刪除,您可以改為移動資源至另一個資源群組。

Screenshot from the portal of the route table page, with the Delete button highlighted to show you can delete an individual resource within a resource group.