--- title: "Get-VESQLPluginBackup" description: "Returns backups created with Veeam Plug-in for Microsoft SQL Server. Veeam Backup & Replication Product Edition: Enterprise Plus, Veeam Universal License This cmdlet returns an array of backups created with Veeam Plug-in for Microsoft SQL Server." canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-vesqlpluginbackup.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft SQL Server > Get-VESQLPluginBackup" dateModified: "2026-08-20" --- # Get-VESQLPluginBackup ## Short Description Returns backups created with Veeam Plug-in for Microsoft SQL Server. **Veeam Backup & Replication** **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VESQLPluginBackup [-Name ] [] ``` ## Detailed Description This cmdlet returns an array of backups created with Veeam Plug-in for Microsoft SQL Server. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies an array of backup names. The cmdlet will return SQL plug-in backups with these names.

This parameter accepts wildcard characters.

String[]

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 Learn. ## Output Object The cmdlet returns the [`IVESQLPluginBackup`](vesqlpluginbackup.md)`[]` object that contains an array of backups created with Veeam Plug-in for Microsoft SQL Server. ## Examples ::: dropdown ### Example 1. Getting All Plug-in Backups This command returns all backups created with Veeam Plug-in for Microsoft SQL Server. ``` Get-VESQLPluginBackup ``` ::: ::: dropdown ### Example 2. Getting Specific SQL Plug-in Backups This command returns SQL plug-in backups with specific names. Use the wildcard * character to get all backups whose names begin with "SQL Backup". ``` Get-VESQLPluginBackup -Name "SQL Backup*" ``` :::