--- title: "Start-VBRStorageCopyJob" description: "This cmdlet starts storage backup copy jobs for HPE StoreOnce and Dell Data Domain repositories." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/start-vbrstoragecopyjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Copy > Storage Backup Copy Jobs > Start-VBRStorageCopyJob" dateModified: "2026-08-19" --- # Start-VBRStorageCopyJob ## Short Description Starts storage backup copy jobs. **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Start-VBRStorageCopyJob [-Job] [] ``` ## Detailed Description This cmdlet starts storage backup copy jobs for HPE StoreOnce and Dell Data Domain repositories. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of storage backup copy jobs. The cmdlet will start these jobs.

Accepts the VBRStorageCopyJob[] object. To get this object, run the Get-VBRStorageCopyJob cmdlet.

VBRStorageCopyJob[]

True

0

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRStorageCopyJob` object that contains settings of storage backup copy jobs. ## Examples ::: example ### Starting Backup Copy Job for HPE StoreOnce Repository This example shows how to start the `StoreOnce Copy Job` backup copy job for an HPE StoreOnce repository. ``` $job = Get-VBRStorageCopyJob -Name "StoreOnce Copy Job" Start-VBRStorageCopyJob -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRStorageCopyJob`](get-vbrstoragecopyjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Start-VBRStorageCopyJob` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRStorageCopyJob`](get-vbrstoragecopyjob.md)