Stop-VEADItemExport
Short Description
Stops the export process for an Active Directory object or container.
Applies to
Veeam Backup & Replication
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Stop-VEADItemExport [-Export] <VeadExport> [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet stops an active export process for an Active Directory object or container.
|
Note |
|
Export processes will not stop automatically if you close the PowerShell console. To stop an export process before it completes, you must run the Stop-VEADItemExport cmdlet. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Export |
Specifies the export process for an Active Directory object or container. The cmdlet will stop this export process. |
Accepts the VEADExport object. To get this object, run the Get-VEADItemExport cmdlet. |
True |
0 |
True (ByValue) |
|
Force |
Defines that the cmdlet will show no prompt before executing the command. |
SwitchParameter |
False |
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
None.
Example
Stopping Export Process for Active Directory Object or Container
This example shows how to stop the export process for an Active Directory object or a container.
|
$export = Get-VEADItemExport -TargetHosts "addc03" Stop-VEADItemExport -Export $export |
Perform the following steps:
- Run the Get-VEADItemExport cmdlet. Specify the TargetHosts parameter value. Save the result to the $export variable.
- Run the Stop-VEADItemExport cmdlet. Set the $export variable as the Export parameter value.
Related Commands