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

Remove-VBOBackupItem

In this article

    Short Description

    Removes an object from a backup job.

    Syntax

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

    Detailed Description

    This cmdlet removes an object from a backup job.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Job

    Specifies the backup job. The cmdlet will remove an object from this backup job.

    True

    Named

    False

    False

    BackupItem

    Specifies an object. The cmdlet will remove this object from a backup job.

    False

    Named

    false

    False

    <CommonParameters>

    This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

    Example 1

    This example shows how to remove an organization user "UserAlpha" backup item from the "TestJob" backup job.

    1. Run Get-VBOOrganization to get an organization. Save the result to the $org variable.
    2. Run Get-VBOOrganizationUser to get an organization user. Save the result to the $user variable.
    3. Run New-VBOBackupItem to select the item in the backup job. Save the result to the $backupItemUser variable.
    4. Run Get-VBOJob to select the backup job for modification. Save the result to the $job variable.
    5. Run Remove-VBOBackupItem with the $job and $backupItemUser variables to remove the selected user from the specified backup job.

    $org = Get-VBOOrganization -Name "ABC Company"

    $user = Get-VBOOrganizationUser -Organization $org -Name "UserAlpha"

    $backupItemUser = New-VBOBackupItem -User $user -Mailbox:$True -ArchiveMailbox:$False -OneDrive:$False

    $job = Get-VBOJob -Name "TestJob"

    Remove-VBOBackupItem -Job $job -BackupItem $backupItemUser

    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.