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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

InstancePublish

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

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

VEPSQLInstancePublish

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 Publishing Process for PostgreSQL Instance This example shows how to restart a failed publishing process for a PostgreSQL instance. ``` $publish = Get-VEPSQLInstancePublish -InstanceName "rhel02:5433" Restart-VEPSQLInstancePublish -InstancePublish $publish ``` Perform the following steps: 1. Run the [`Get-VEPSQLInstancePublish`](get-vepsqlinstancepublish.md) cmdlet. Specify the `InstanceName` parameter value and save the result to the `$publish` variable. 2. Run the `Restart-VEPSQLInstancePublish` cmdlet. Set the `$publish` variable as the `InstancePublish` parameter value. ::: ## Related Commands [`Get-VEPSQLInstancePublish`](get-vepsqlinstancepublish.md)