Uninstall-VBRServerComponent
Short Description
Removes a backup infrastructure component from the backup infrastructure.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Uninstall-VBRServerComponent -Server <CHost> -ComponentType <VBRComponentType> [<CommonParameters>] |
Detailed Description
This cmdlet removes the following infrastructure components from the backup infrastructure:
- CatalystSdk
- DDBoostSdk
- GuestInteractionProxy
Note |
|
Consider the following:
|
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
ComponentType |
Specifies the component that you want to remove:
|
|
True |
Named |
False |
|
Server |
Specifies the host. The cmdlet will remove components from this host. |
|
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Removing Guest Interaction Proxy from Backup Infrastructure
This example shows how to remove the guest interaction proxy from the backup infrastructure.
|
$server = Get-VBRServer -Name hyperv09.tech.local Uninstall-VBRServerComponent -Server $server -ComponentType GuestInteractionProxy |
Perform the following steps:
- Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$servervariable. - Run the
Uninstall-VBRServerComponentcmdlet. Set the$servervariable as theServerparameter value. Set theGuestInteractionProxyproperty as theComponentTypeparameter value.
Related Commands
Get-VBRServerReturns hosts connected to the backup infrastructure.