Get-VEODDocumentVersion
Short Description
Returns versions of OneDrive documents.
Applies to
Veeam Backup for Microsoft 365
Product Edition: Community, Rental License, Subscription License
Syntax
Get-VEODDocumentVersion [-Document <VBOOneDriveDocument>] [<CommonParameters>] |
Detailed Description
This cmdlet returns versions of documents that are stored in the OneDrive repository.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Document | Specifies OneDrive document. This cmdlet will return versions of this document. | Accepts the VBOOneDriveDocument object. To get this object, run the Get-VEODDocument cmdlet. | True | 0 | True (ByValue) |
<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 VEODDocumentVersion object that contains a version of the specified OneDrive document.
Example
Getting Versions of OneDrive Document
This example shows how to get versions of the document.txt document.
$session = Get-VEODRestoreSession $user = Get-VEODUser -Session $session -Name "userAlpha" $document = Get-VEODDocument -User $user -Name "document.txt" Get-VEODDocumentVersion -Document $document |
Perform the following steps:
- Run the Get-VEODRestoreSession cmdlet. Save the result to the $session variable.
- Run the Get-VEODUser cmdlet. Set the $session variable as the Session parameter value. Specify the Name parameter value. Save the result to the $user variable.
- Run the Get-VEODDocument cmdlet. Specify the $user variable as the User parameter value. Specify the Name parameter value. Save the result to the $document variable.
- Run the Get-VEODDocumentVersion cmdlet. Set the $document variable as the Document parameter value.
Related Commands