This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBOLicensedUser

Short Description

Returns licensed Veeam Backup for Microsoft Office 365 users.

Syntax

Get-VBOLicensedUser [-Organization <VBOOrganization>] [-Name <string>]  [<CommonParameters>]

Detailed Description

This cmdlet returns details on licensed Veeam Backup for Microsoft Office 365 users.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Organization

Specifies an organization whose licensed users you want to query. The Get-VBOLicencedUser cmdlet will return a list of licensed users for the organization whose name matches the specified name.

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

False

Named

False

Name

Specifies a name used to query a licensed user. The Get-VBOLicensedUser cmdlet will return information on the licensed user whose name matches the specified name.

String

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

The cmdlet returns the VBOLicensedUser object that contains details on licensed Veeam Backup for Microsoft Office 365 users.

Examples

Getting Information on Veeam Backup for Microsoft Office 365 Licensed User

This example shows how to get information on the JSmith@domain.onmicrosoft.com licensed user from the Columbus organization:

$org = Get-VBOOrganization -Name "Columbus"

Get-VBOLicensedUser -Organization $org -Name "JSmith@domain.onmicrosoft.com"

Perform the following steps:

  1. Run the Get-VBOOrganization cmdlet. Specify the Name parameter value. Save the result to the $org variable.
  2. Run the Get-VBOLicensedUser cmdlet. Set the $org variable as the Organization parameter value. Specify the Name parameter value.

Related Commands

Get-VBOOrganization