--- title: "Start-VBRArchiveTierSync" description: "Starts the archiving job. Product Edition: Enterprise Plus, Veeam Universal License This cmdlet starts the archiving job that moves data from the capacity tier to the archive tier." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/start-vbrarchivetiersync.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Scale-Out Backup Repositories > Archive Tier > Start-VBRArchiveTierSync" dateModified: "2026-08-19" --- # Start-VBRArchiveTierSync ## Short Description Starts the archiving job. **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax ``` Start-VBRArchiveTierSync -Repository [-RunAsync] [] ``` ## Detailed Description This cmdlet starts the archiving job that moves data from the capacity tier to the archive tier. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Repository

Specifies a scale-out backup repository. The cmdlet will return the performance extents added to this repository.

Accepts the VBRScaleOutBackupRepository object. To create this object, run the Get-VBRBackupRepository cmdlet.

VBRScaleOutBackupRepository

True

Named

True (ByPropertyName, ByValue)

RunAsync

Defines that the command returns immediately without waiting for the task to complete.

SwitchParameter

False

Named

False

`` 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 `VBRArchiveTierSync` object that contains details on the archiving job. ## Examples ::: example ### Starting Archiving Job This example shows how to start an archiving job. ``` $repository = Get-VBRBackupRepository -ScaleOut Start-VBRArchiveTierSync -Repository $repository ``` Perform the following steps: 1. Run the [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) cmdlet. Provide the `ScaleOut` parameter. Save the result to the `$repository` variable. 2. Run the `Start-VBRArchiveTierSync` cmdlet. Set the `$repository` variable as the `Repository` parameter value. ::: ## Related Commands [`Get-VBRBackupRepository`](get-vbrbackuprepository.md)