Remove-VBRAzureApplianceTemplate
Short Description
Removes deployed helper appliance templates.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Remove-VBRAzureApplianceTemplate -Template <VBRAzureApplianceTemplate[]> [<CommonParameters>] |
Detailed Description
This cmdlet removes deployed helper appliance templates from the backup infrastructure and Microsoft Azure.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Template |
Specifies an array of helper appliance templates that you want to remove.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Example 1. Removing Helper Appliance Template
This example shows how to remove a helper appliance template.
|
$account = Get-VBRAzureAccount -Type ResourceManager -Name "RestoreToAzureRM@Veeam.com" $subscription = Get-VBRAzureSubscription -Account $account -Name "VeeamDirectRestore2Azure" $template = Get-VBRAzureApplianceTemplate -Subscription $subscription Remove-VBRAzureApplianceTemplate -Template $template |
Perform the following steps:
- Run the
Get-VBRAzureAccountReturns Microsoft Azure accounts added to Veeam Backup & Replication. cmdlet. Set theResourceManagervalue as theTypeparameter value. Specify theNameparameter value. Save it to the$accountvariable. - Run the
Get-VBRAzureSubscriptionReturns subscriptions associated with a Microsoft Azure account. cmdlet. Set the$accountvariable as theAccountparameter value. Specify theNameparameter value. Save it to the$subscriptionvariable. - Run the Get-VBRAzureApplianceTemplateReturns deployed helper appliance templates. cmdlet. Set the
$subscriptionvariable as theSubscriptionparameter value. Set the$locationvariable as theLocationparameter value. Save it to the$templatevariable. - Run the Remove-VBRAzureApplianceTemplateRemoves deployed helper appliance templates. cmdlet. Set the
$templatevariable as theTemplateparameter value.
Related Commands
Get-VBRAzureAccountReturns Microsoft Azure accounts added to Veeam Backup & Replication.Get-VBRAzureSubscriptionReturns subscriptions associated with a Microsoft Azure account.Get-VBRAzureApplianceTemplateReturns deployed helper appliance templates.