Does the "Get-VBRFilesInRestorePoint" command support replication jobs?
The PowerShell reference guide says the following.
https://helpcenter.veeam.com/docs/backu ... tml?ver=95
----
Detailed Description
This cmdlet returns files in a selected restore point.
With this cmdlet, you can get files in restore points created by all types of jobs: backup jobs, backup copy jobs, replication jobs, vCD jobs and Endpoint backup jobs (for Endpoint backups, only volume level backups).
You can get the list of all files in a selected restore point or look for instances directly by name.
----
However, if I specify a restore point for the replication job, the following error occurs.
"fukumi01" is the VM that executed the replication job.
----
Code: Select all
PS C:\Users\Administrator> Get-VBRRestorePoint -Name "fukumi01" | Sort-Object -Descending {$_.creationtime} | Select -First 1 | Get-VBRFilesInRestorePoint
Get-VBRFilesInRestorePoint : Invoke failed. Agent: 'aa8594c4-7eeb-447b-a00c-4f32e72c13ef', Command: 'DataTransfer.Resto
reText', parameters: {(EStringArray) Links[]=[veeamfs:0:/summary.xml@E:\Backup\fukumi01,](EBoolean) Option.Remote=false
; }
発生場所 行:1 文字:102
+ ... ding {$_.creationtime} | Select -First 1 | Get-VBRFilesInRestorePoint
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Get-VBRFilesInRestorePoint], CAgentException
+ FullyQualifiedErrorId : Veeam.Backup.Common.CAgentException,Veeam.Backup.PowerShell.Cmdlets.GetVBRFilesInRestore
Point