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

Get-VEODDocument

Short Description

Returns OneDrive documents.

Applies to

Veeam Backup for Microsoft 365

Product Edition: Community, Rental, Subscription

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get documents of the specific user.

Get-VEODDocument [-User] <VBOOneDriveUser> [-Name <string[]>] [-Recurse]  [<CommonParameters>]

  • Get all child documents of the specific document.

Get-VEODDocument [-ParentDocument] <VBOOneDriveDocument> [-Name <string[]>] [-Recurse]  [<CommonParameters>]

Detailed Description

This cmdlet returns documents that are stored in the OneDrive repository.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

User

Specifies a OneDrive user. This cmdlet will return documents of the specified OneDrive user.

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

True

0

True (ByValue)

ParentDocument

Specifies a parent document. The cmdlet will return the child documents of this parent document.

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

True

0

True (ByValue)

Name

Specifies a name of the document. The cmdlet will return the document with this name.

String[]

False

Named

False

Recurse

Defines that the cmdlet will return documents from all subfolders of the specified folder.

SwitchParameter

False

Named

False

<CommonParameters>

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

Output Object

The cmdlet returns the VBOOneDriveDocument object that returns documents that are stored in the OneDrive repository.

Examples

Get-VEODDocumentExample 1. Getting Specified User Documents

Get-VEODDocumentExample 2. Getting Specific Child Documents

Related Commands