Get-VEODDocumentVersion
Short Description
Returns other versions of a OneDrive document.
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 other versions of a document stored in a OneDrive repository.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Document | Specifies OneDrive document. This cmdlet will return other 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 VBOOneDriveDocument[] array that contains other versions of the specified One Drive 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