This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-VBOExcludedBackupItem

In this article

    Short Description

    Removes objects from a list of exclusions specified for a backup job.

    Syntax

    Remove-VBOExcludedBackupItem -Job <VBOJob> -BackupItem <VBOBackupItem[]>  [<CommonParameters>]

    Detailed Description

    This cmdlet removes objects from a list of exclusions that is specified for a backup job.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Job

    Specifies a backup job. The cmdlet will remove objects from a list of exclusions that is specified for this job.

    Accepts the VBOJob object. To get this object, run the Get-VBOJob cmdlet.

    True

    Named

    False

     

    BackupItem

    Specifies an array of objects that you want to remove from a list of exclusions.

    Accepts the VBOBackupItem[] object.

    To get this object, run the Get-VBoBackupItem cmdlet.

    True

    Named

    False

     

    <CommonParameters>

    This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    Example

    This example shows how to remove items from an excluded items list that is added to the Yearly Backup job.

    1. Run the Get-VBOJob cmdlet to specify a job from which you want to get items. Set Yearly Backup as the Name parameter value. Save the result to the $job variable.
    2. Run the Get-VBoBackupItem cmdlet. Set the $job variable as the Job parameter value.
    3. Run the Remove-VBOExcludedBackupItem cmdlet. Specify the following settings:
    • Set the $job variable as the Job parameter value.
    • Set the $item variable as the BackupItem parameter.

    $job = Get-VBOJob -Name "Yearly Backup"

    $item = Get-VBoBackupItem -Job $job

    Add-VBOExcludedBackupItem -Job $job -BackupItem $item

    Related Commands

    I want to report a typo

    There is a misspelling right here:

     

    I want to let the Veeam Documentation Team know about that.