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

Stop-VBORepositorySynchronizeSession

Short Description

Stops synchronization sessions of object storage repositories cache.

Syntax

Stop-VBORepositorySynchronizeSession -Session <VBORepositorySynchronizeSession>  [<CommonParameters>]

Detailed Description

This cmdlet stops sessions that are running to synchronize cache located on object storage repositories.

Stop-VBORepositorySynchronizeSession Note

If you stop synchronization of cache located on object storage repositories and then start it again, the synchronization process will start from the moment, where it has been stopped.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

Session

Specifies a synchronization session. The cmdlet will stop this session.

Accepts the VBORepositorySynchronizeSession object.

To get this object, run the Get-VBORepositorySynchronizeSession cmdlet.

True

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

The cmdlet returns the VBORepositorySynchronizeSession object that contains details on the synchronization status of the object storage repository.

Examples

Stop-VBORepositorySynchronizeSessionExample 1. Stopping All Synchronization Sessions

Stop-VBORepositorySynchronizeSessionExample 2. Stopping Specific Synchronization Session

This example shows how to stop a session that is running to synchronize cache located on the Azure object storage repository.

$azurestorage = Get-VBORepository -Name "Azure"

$session = Get-VBORepositorySynchronizeSession -Repository $azurestorage

Stop-VBORepositorySynchronizeSession -Session $session

Perform the following steps:

  1. Run the Get-VBORepository cmdlet. Specify the Name parameter value. Save the result to the $azurestorage variable.
  2. Run the Get-VBORepositorySynchronizeSession cmdlet. Set the $azurestorage variable as the Repository parameter value.

The cmdlet output will contain the following details on synchronization status of object storage repository: RepositoryId, RepositoryName and Status.

  1. Run the Stop-VBORepositorySynchronizeSession cmdlet. Set the $session variable as the Session parameter value.

Related Commands