Start-VBOOrganizationSynchronization

Short Description

Starts to synchronize Microsoft organization objects with the organization cache database.

Start-VBOOrganizationSynchronization Note

Synchronization of objects with the organization cache database is only available for Microsoft organizations with modern app-only authentication.

Syntax

Start-VBOOrganizationSynchronization -Organization <IVBOOrganization> [-Full <SwitchParameter>]  [<CommonParameters>]

Detailed Description

This cmdlet starts to synchronize Microsoft organization objects with the organization cache database.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

Organization

Specifies a Microsoft organization. The cmdlet will start synchronization of objects in this Microsoft organization.

IVBOOrganization

Accepts the VBOOrganization object.

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

True

Named

True (ByValue)

False

Full

Defines that the cmdlet will start synchronization of all objects in this Microsoft organization.

SwitchParameter

False

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.

Examples

Start-VBOOrganizationSynchronizationExample 1. Synchronizing All Microsoft Organization Objects with Organization Cache Database

This example shows how to start synchronizing all Microsoft organization objects with the organization cache database.

$org = Get-VBOOrganization

Start-VBOOrganizationSynchronization -Organization $org -Full:$true

Perform the following steps:

  1. Run the Get-VBOOrganization cmdlet. Save the result to the $org variable.
  2. Run the Start-VBOOrganizationSynchronization cmdlet. Set the $org variable as the Organization parameter value. Set the :$true value for the Full parameter.

Related Commands

Get-VBOOrganization