--- title: "Get-VSBApplicationGroup (obsolete)" description: "Returns application groups. This cmdlet is obsolete. Run the Get-VBRApplicationGroupReturns VMware and Hyper-V application groups. cmdlet instead." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vsbapplicationgroup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Get-VSBApplicationGroup (obsolete)" dateModified: "2026-08-19" --- # Get-VSBApplicationGroup ## Short Description Returns application groups. ::: note This cmdlet is obsolete. Run the [`Get-VBRApplicationGroup`](get-vbrapplicationgroup.md) cmdlet instead. ::: **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VSBApplicationGroup [-Name ] [] ``` ## Detailed Description This cmdlet returns existing application groups. You can get the list of all application groups, or search for instances directly by name. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the array of application group names. The cmdlet will return application groups with these names.

String[]

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Example 1. Getting All Application Groups This command looks for the list of all application groups. ``` Get-VSBApplicationGroup ``` ::: ::: example ### Example 2. Getting Specific Application Group This command looks for the `MailServer Appgroup` application group. ``` Get-VSBApplicationGroup -Name "MailServer Appgroup" ``` :::