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

Gets Backup Exec logon accounts.

Syntax
Get-BELogonAccount [[-Name] [<String[]>]] [<CommonParameters>]

Get-BELogonAccount [-Id] [<Guid[]>] [<CommonParameters>]

Get-BELogonAccount -InputObject [<BELogonAccount[]>] [<CommonParameters>]
Description

Gets Backup Exec logon accounts.

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

Parameters

-Name <String[]>

Specifies one or more logon accounts by logon account 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


-Id <Guid[]>

Specifies one or more logon accounts by logon account ID (Guid). To specify multiple IDs, use commas to separate the IDs.


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


-InputObject <BELogonAccount[]>

Specifies one or more logon account objects. Enter a variable that contains the objects, or type a command or expression that gets the objects.


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


<CommonParameters>

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

Input Types
System.Guid

You can pipe a System.Guid that contains the ID of a Backup Exec logon account object to Get-BELogonAccount.



BackupExec.Management.CLI.BELogonAccount

You can pipe a Backup Exec logon account object to Get-BELogonAccount.

Return Value
BackupExec.Management.CLI.BELogonAccount

Get-BELogonAccount returns objects that represent Backup Exec logon accounts.

Examples

Example 1

C:\PS> Get-BELogonAccount

This command gets all of the logon accounts.


Example 2
C:\PS> Get-BELogonAccount -Name "System Logon Account"

This command gets the logon account named "System Logon Account".


Example 3
C:\PS> Get-BELogonAccount -Name "*system*"

This command gets all of the logon accounts that match the wildcard "*system*".