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

Enable-VBREPJob

In this article

    Short Description

    Enables a disabled Endpoint job.

    Syntax

    Enable-VBREPJob -Job <VBREPJob[]>  [<CommonParameters>]

    Related Commands

    None

    Return Type

    VBREPJob[]

    Detailed Description

    This cmdlet enables a Veeam Endpoint backup job that was previously disabled.

    When you disable a job, you put it on hold until you enable it with this cmdlet. You can disable a job by running Disable-VBRJob.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Job

    Specifies the name of the Endpoint backup job you want to enable.

    You can assign multiple names to this object.

    True

    Named

    True (by Value
    FromPipeline,
    ValueFromPipeline
    ByPropertyName)

    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 1

    This command enables an Endpoint job represented by the '$MediaserverEP' variable. The job is obtained with Get-VBREPJob and assigned to the variable beforehand.

    PS C:\PS> $MediaserverEP = Get-VBREPJob -Name 'Backup Job Mediaserver'

    PS C:\PS> Enable-VBREPJob -Job $MediaserverEP

    Example 2

    This command enables an Endpoint job named 'Backup Job Mediaserver'. The job is obtained with Get-VBREPJob and piped down.

    Get-VBREPJob -Name 'Backup Job Mediaserver' | Enable-VBREPJob