--- title: "Restart-VEPSQLInstanceRestore" description: "Restarts a failed restore process for a backed-up PostgreSQL instance. Product: Veeam Backup & Replication Product Edition: Enterprise, Enterprise Plus, Veeam Universal License This cmdlet restarts a failed restore process for a backed-up Postgre" canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/restart-vepsqlinstancerestore.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for PostgreSQL > Restart-VEPSQLInstanceRestore" dateModified: "2026-08-18" --- # Restart-VEPSQLInstanceRestore ## Short Description Restarts a failed restore process for a backed-up PostgreSQL instance. **Product**: Veeam Backup & Replication **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Restart-VEPSQLInstanceRestore [-InstanceRestore] [] ``` ## Detailed Description This cmdlet restarts a failed restore process for a backed-up PostgreSQL instance. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

InstanceRestore

Specifies the PostgreSQL instance restore process. The cmdlet will restart this restore process.

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

VEPSQLInstanceRestore

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 ### Restarting Failed Restore Process for PostgreSQL Instance This example shows how to restart a failed restore process for the `rhel01:5433` instance. ``` $restore = Get-VEPSQLInstanceRestore -InstanceName "rhel01:5433" Restart-VEPSQLInstanceRestore -InstanceRestore $restore ``` Perform the following steps: 1. Run the [`Get-VEPSQLInstanceRestore`](get-vepsqlinstancerestore.md) cmdlet. Specify the `InstanceName` parameter value. Save the result to the `$restore` variable. 2. Run the `Restart-VEPSQLInstanceRestore` cmdlet. Set the `$restore` variable as the `InstanceRestore` parameter value. ::: ## Related Commands [`Get-VEPSQLInstanceRestore`](get-vepsqlinstancerestore.md)