Get-VBRJob
Short Description
Returns existing jobs.
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Get-VBRJob [-Name <String[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns jobs stored in Veeam Backup & Replication database.
With this cmdlet, you can get the following jobs:
- Backup jobs
- Replication jobs
- File copy jobs
- VM Copy jobs
- Object storage backup jobs
You can get the list of all jobs or look for instances directly by name.
Run the Get-VBRBackupSessionReturns jobs sessions. or Get-VBRTaskSessionReturns tasks performed during job sessions. cmdlets to get the information on job session or session tasks.
Run the Get-VBRTapeJobReturns tape jobs. cmdlet to get tape jobs.
Run the Get-VBRBackupCopyJobReturns backup copy jobs. cmdlet to get backup copy jobs.
Run the Get-VBRSureBackupJobReturns SureBackup jobs. cmdlet to get SureBackup jobs.
Run the Get-VBREPJobReturns backup jobs run by Veeam Agent operating in the standalone mode. cmdlet to get backup jobs run by Veeam Agents operating in the standalone mode.
Important |
|
The |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Name |
Specifies the array of job names. The cmdlet will return jobs with these names. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the CBackupJob object that contains backup jobs.
Examples
Getting List of Jobs by Name
This command gets the list of backup jobs whose names start with File.
|
Get-VBRJob -Name "File*" |