--- title: "Stop-VEADItemRestore" description: "Stops the restore 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 restore process for " canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/stop-veaditemrestore.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft Active Directory > Stop-VEADItemRestore" dateModified: "2026-08-18" --- # Stop-VEADItemRestore ## Short Description Stops the restore process for an Active Directory object or container. **Product**: Veeam Backup & Replication **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VEADItemRestore [-Restore] [-Force] [] ``` ## Detailed Description This cmdlet stops an active restore process for an Active Directory object or container. ::: note Restore processes will not stop automatically if you close the PowerShell console. To stop a restore process before it completes, you must run the `Stop-VEADItemRestore` cmdlet. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Force

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

SwitchParameter

False

Named

False

Restore

Specifies the restore process for an Active Directory object or container. The cmdlet will stop this restore process.

Accepts the VEADRestore object. To get this object, run the Get-VEADItemRestore cmdlet.

VeadRestore

True

0

True (ByValue)

`` 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 Restore Process for Active Directory Object or Container This example shows how to stop the restore process for an Active Directory object or a container. ``` $restore = Get-VEADItemRestore -Server "addc03" Stop-VEADItemRestore -Restore $restore ``` Perform the following steps: 1. Run the [`Get-VEADItemRestore`](get-veaditemrestore.md) cmdlet. Specify the `Server` parameter value and save the result to the `$restore` variable. 2. Run the `Stop-VEADItemRestore` cmdlet. Set the `$restore` variable as the `Restore` parameter value. ::: ## Related Commands - [`Start-VEADItemRestore`](start-veaditemrestore.md) - [`Get-VEADItemRestore`](get-veaditemrestore.md)