Backup Exec Management Command Line Interface Help
Get-BELicenseInformation Cmdlet
Synopsis

Gets Backup Exec licenses.

Syntax
Get-BELicenseInformation [-BackupExecServer [<BEBackupExecServer>]] [[-Name] [<String[]>]] [<CommonParameters>]
Description

Gets Backup Exec licenses.

Without parameters, Get-BELicenseInformation gets all of the Backup Exec licenses. You can also specify a license by license name or license ID (Guid) or pass a Backup Exec license object through the pipeline to Get-BELicenseInformation.

Parameters

-BackupExecServer <BEBackupExecServer>

Specifies one or more Backup Exec server objects to filter the licenses. Enter a variable that contains the objects, or type a command or expression that gets the objects. See Get-BEBackupExecServer.


Required false
Position Named
Accepts pipeline input true (ByValue)
Accepts wildcard characters false


-Name <String[]>

Specifies one or more licenses by license name (wildcards accepted). To specify multiple names, use commas to separate the names.


Required false
Position 0
Accepts pipeline input false
Accepts wildcard characters true


<CommonParameters>

For more information about common parameters, type "Get-Help about_commonparameters".

Input Type
BackupExec.Management.CLI.BEBackupExecServer

You can pipe a Backup Exec server object to filter licenses returned by Get-BELicenseInformation.

Return Value
BackupExec.Management.CLI.BELicenseInformation

Get-BELicenseInformation returns objects that represent Backup Exec licenses.

Examples

Example 1

C:\PS> Get-BELicenseInformation

This command gets all of the license objects.


Example 2
C:\PS> Get-BELicenseInformation -Name "Agent for Windows"

This command gets the license object named "Agent for Windows".


Example 3
C:\PS> Get-BELicenseInformation -Name "*agent*"

This command gets all of the license objects that match the wildcard "*agent*"

Related Link

Get-BEBackupExecServer