Start-VEADItemExport
Short Description
Exports backed-up Active Directory objects and containers.
Applies to
Veeam Backup & Replication
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
This cmdlet provides parameter sets that allow you to:
- Export Active Directory objects.
|
Start-VEADItemExport -Item <VEADItem[]> [-TargetHost <String>] -Path <String> -WindowsTargetCredentials <PSCredential> [-Force] [<CommonParameters>] |
- Export Active Directory containers.
|
Start-VEADItemExport -Container <VEADContainer> [-TargetHost <String>] -Path <String> -WindowsTargetCredentials <PSCredential> [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet exports backed-up Active Directory objects and containers to a target Windows server. To specify the target Windows server, use the TargetHost parameter.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Item |
For export of Active Directory objects. Specifies an array of Active Directory objects. The cmdlet will export these objects. |
Accepts the VEADItem[] object. To get this object, run the Get-VEADItem cmdlet. |
True |
Named |
True (ByValue) |
|
Container |
For export of Active Directory containers. Specifies an Active Directory container. The cmdlet will export that container. |
Accepts the VEADContainer object. To get this object, run the Get-VEADContainer cmdlet. |
True |
Named |
True (ByValue) |
|
Path |
Specifies the export path on the target Windows server. The cmdlet will export Active Directory objects and containers to this location. |
String |
True |
Named |
False |
|
Force |
Defines that the cmdlet will overwrite existing objects and containers in the target path. If you do not provide this parameter, the cmdlet will not overwrite existing data in the target path. Note: The cmdlet will show no prompt before executing the command. |
SwitchParameter |
False |
Named |
False |
|
TargetHost |
Specifies the DNS name or IP address of the target Windows server to which the cmdlet will export the data. |
String |
False |
Named |
False |
|
WindowsTargetCredentials |
Specifies credentials to authenticate to the target Windows server. |
Accepts the PSCredential object. To get this object, run the Get-Credential cmdlet. |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Docs.
Output Object
The cmdlet returns the VEADExport object that contains settings of the export job for Active Directory objects or containers.
Examples
Example 1. Exporting Active Directory Objects
|
This example shows how to export backed-up Active Directory objects.
Perform the following steps:
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session (in this example, it is the fourth restore session in the array).
|
Example 2. Exporting Active Directory Container
|
This example shows how to export a backed-up Active Directory container.
Perform the following steps:
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session (in this example, it is the fourth restore session in the array).
|
Example 3. Exporting Active Directory Objects to Another Windows Server
|
This example shows how to export backed-up Active Directory objects to another Windows server.
Perform the following steps:
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session (in this example, it is the fourth restore session in the array).
|
Related Commands