Get-VEODUser
Short Description
Returns OneDrive users.
Applies to
Veeam Backup for Microsoft 365
Product Edition: Community, Rental License, Subscription License
Syntax
Get-VEODUser [-Session <VBOOneDriveItemRestoreSession>] [-Name <String[]>] [-Organization <VBOOneDriveOrganization[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns OneDrive organization users.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Session | Specifies an active Microsoft OneDrive restore session. This cmdlet will return organizations from the specified restore session. | Accepts the VBOOneDriveItemRestoreSession object. To get this object, run the Get-VEODRestoreSession cmdlet. | True | 0 | True (ByValue) |
Name | Specifies an array of user names. The cmdlet will return users with these names. | String[] | False | 1 | False |
Organization | Specifies an array of Microsoft OneDrive organizations. The cmdlet will return OneDrive users from these organizations. | Accepts the VBOOneDriveOrganization[] object. To get this object, run the Get-VEODOrganization cmdlet. | False | 2 | True (ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Example
Getting OneDrive Organization User
This example shows how to get the userAlpha OneDrive user from the ABC OneDrive organization added to Veeam Backup for Microsoft 365.
$session = Get-VEODRestoreSession $org = Get-VEODOrganization -Session $session -Name "ABC*" Get-VEODUser -Organization $org -Name "userAlpha" |
Perform the following steps:
- Run the Get-VEODRestoreSession cmdlet. Save the result to the $session variable.
- Run the Get-VEODOrganization cmdlet. Set the $session variable as the Session parameter value. Specify the Name parameter value. Use the * wildcard character to substitute the timestamp. Save the result to the $org variable.
- Run the Get-VEODUser cmdlet. Set the $org variable as the Organization parameter value. Specify the Name parameter value.
Related Commands