--- title: "Stop-VEADItemExport" description: "Stops the export process for an Active Directory object or container. Product: Veeam Backup & Replication Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet stops an active export process for an" canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/stop-veaditemexport.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft Active Directory > Stop-VEADItemExport" dateModified: "2026-08-18" --- # Stop-VEADItemExport ## Short Description Stops the export process for an Active Directory object or container. **Product**: Veeam Backup & Replication **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VEADItemExport [-Export] [-Force] [] ``` ## 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.

VeadExport

True

0

True (ByValue)

Force

Defines that the cmdlet will show no prompt before executing the command.

SwitchParameter

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Docs. ## Examples ::: 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: 1. Run the [`Get-VEADItemExport`](get-veaditemexport.md) cmdlet. Specify the `TargetHosts` parameter value. Save the result to the `$export` variable. 2. Run the `Stop-VEADItemExport` cmdlet. Set the `$export` variable as the `Export` parameter value. ::: ## Related Commands - [`Start-VEADItemExport`](start-veaditemexport.md) - [`Get-VEADItemExport`](get-veaditemexport.md)