Help Center
Choose product document...
Veeam Backup for Microsoft Office 365 2.0 [Archived]
PowerShell Reference

Get-VBOJob

Short Description

Returns backup jobs.

Syntax

This cmdlet provides 3 parameter sets.

  • For getting all backup jobs configured in Veeam Backup for Microsoft Office 365:

Get-VBOJob  [<CommonParameters>]

  • For getting a backup job configured in Veeam Backup for Microsoft Office 365 by system ID:

Get-VBOJob -Id <Guid>  [<CommonParameters>]

  • For getting backup jobs configured in Veeam Backup for Microsoft Office 365 by name or associated Exchange organization:

Get-VBOJob [-Organization <VBOOrganization>] [-Name <String>]  [<CommonParameters>]

Detailed Description

This cmdlet returns backup jobs configured in Veeam Backup for Microsoft Office 365. You can get the list of all jobs or look for instances directly by name, ID or associated Exchange organization.

Run Get-VBOJobSession to get the information on the job session.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Organization

Specifies Exchange organization. The backup job backs up the mailboxes of this organization.

False

Named

True (ByValue)

False

Id

Specifies system ID of the backup job. The cmdlet will return the backup job with this ID.

True

Named

False

False

Name

Specifies the name of the backup job. The cmdlet will return the backup job with this name.

False

Named

False

True

<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 returns a backup job by ID.

PS C:\PS> Get-VBOJob -Id "dbdbfd55-aaf6-4add-a065-e791016777c7"

Example 2

This command returns a backup job by name.

PS C:\PS> Get-VBOJob -Name "Monthly Backup"

Example 3

This command returns backup jobs by Exchange organization.

You will need to perform the following steps:

  1. Run Get-VBOOrganization to get Exchange organization and save the result to the $org variable.
  2. Run Get-VBOJob with the $org variable.

PS C:\PS> $org = Get-VBOOrganization -Name "ABC"

PS C:\PS> Get-VBOJob -Organization $org

Example 4

This command returns backup jobs with names starting with "sales".

PS C:\PS> Get-VBOJob -Name Sales*

Example 5

This command returns a list of backup jobs with names containing "sales" within a specified Exchange organization.

You will need to perform the following steps:

  1. Run Get-VBOOrganization to get Exchange organization and save the result to the $org variable.
  2. Run Get-VBOJob with the $org variable.

PS C:\PS> $org = Get-VBOOrganization -Name "ABC"

PS C:\PS> Get-VBOJob -Organization $org -Name *Sales*

Related Commands

Get-VBOOrganization

Veeam Large Logo

User Guide

RESTful API Reference

PowerShell Reference