Move-VBOEntityData
Short Description
Moves organization data from a JET-based backup repository to another JET-based backup repository or object storage repository.
Syntax
This cmdlet provides parameter sets that allow you to:
- Move of an organization user data.
Move-VBOEntityData -From <VBORepository> -To <VBORepository> -User <VBOUserData> [-Mailbox] [-ArchiveMailbox] [-OneDrive] [-Sites] [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>] |
- Move of an organization group data.
Move-VBOEntityData -From <VBORepository> -To <VBORepository> -Group <VBOGroupData> [-Mailbox] [-ArchiveMailbox] [-OneDrive] [-Sites] [-GroupMailbox] [-GroupSite] [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>] |
- Move of an organization site data.
Move-VBOEntityData -From <VBORepository> -To <VBORepository> -Site <VBOSiteData> [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>] |
- Move of an organization team data.
Move-VBOEntityData -From <VBORepository> -To <VBORepository> -Team <VBOTeamData> [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet moves the organization data between repositories and supports the following scenarios:
- Data move from one JET-based backup repository to another JET-based backup repository.
- Data move from a JET-based backup repository to object storage repository.
Important |
Consider the following:
|
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
From | Specifies a source JET-based backup repository. The cmdlet will move data from this backup repository. | Accepts the VBORepository object. To get this object, run the Get-VBORepository cmdlet. | True | Named | False |
To | Specifies a target JET-based backup repository or object storage repository for backed-up data. The cmdlet will move data to this backup repository. You can specify one of the following types of repositories:
| Accepts the VBORepository object. To get this object, run the Get-VBORepository cmdlet. | True | Named | False |
User | Specifies the organization user data that the cmdlet will move. | VBOUserData | True | Named | True (ByValue) |
Mailbox | Defines that the cmdlet will move the entity mailbox data. Default: False | SwitchParameter | False | Named | False |
ArchiveMailbox | Defines that the cmdlet will move the entity archive mailbox data. Default: False | SwitchParameter | False | Named | False |
OneDrive | Defines that the cmdlet will move the entity OneDrive data. Default: False | SwitchParameter | False | Named | False |
Sites | Defines that the cmdlet will move the entity sites data. Default: False | SwitchParameter | False | Named | False |
RunAsync | Defines that the command returns immediately without waiting for the task to complete. Default: False | SwitchParameter | False | Named | False |
WhatIf | Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action. Default: False | SwitchParameter | False | Named | False |
Confirm | Defines that the cmdlet will display a prompt that asks if the user is sure that he wants to continue. Default: True | SwitchParameter | False | Named | False |
Group | Specifies the organization group data that the cmdlet will move. | VBOGroupData | True | Named | True (ByValue) |
GroupMailbox | Defines that the cmdlet will move the organization group mailbox data. Default: False | SwitchParameter | False | Named | False |
GroupSite | Defines that the cmdlet will move the organization group site data. Default: False | SwitchParameter | False | Named | False |
Site | Specifies the organization site data that the cmdlet will move. | VBOSiteData | True | Named | True (ByValue) |
Team | Specifies the organization team data that the cmdlet will move. | VBOTeamData | True | Named | True (ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Examples
Example 1. Moving User Data
This example shows how to move data of a user with the name Chuck Brown from one JET-based backup repository to another.
Perform the following steps:
|
Example 2. Moving Group Data
This example shows how to move data of an organization group with the name Support from one JET-based backup repository to another.
Perform the following steps:
|
Example 3. Moving Site Data
This example shows how to move data of an organization site with the name Support from one JET-based backup repository to another.
Perform the following steps:
|
Example 4. Moving User Data to Object Storage Repository
This example shows how to move the Chuck Brown user data from a JET-based backup repository to object storage repository.
Perform the following steps:
|
Related Commands