Newbie question:
How can I get the repository of a specific restore point?
__Leo
-
- Veeam ProPartner
- Posts: 28
- Liked: 7 times
- Joined: Mar 16, 2011 8:36 am
- Full Name: Leonhard Kurz
- Contact:
-
- Product Manager
- Posts: 6551
- Liked: 765 times
- Joined: May 19, 2015 1:46 pm
- Contact:
Re: Repository of Restore Point
Hi,
Please give some details about your plan - what do you call 'specific restore point'? Is it specific by date, by sequence number, something else?
Here is general approach that might give you an idea.
1. With Get-VBRRestorePoint you can get a desired restore point to search for. Example:
Is that what you need?
Thank you.
Please give some details about your plan - what do you call 'specific restore point'? Is it specific by date, by sequence number, something else?
Here is general approach that might give you an idea.
1. With Get-VBRRestorePoint you can get a desired restore point to search for. Example:
2. Next, you need to find the repo the point resides at:This command looks for the latest restore point of a VM named "MSExchange02" in the backup named "MSExchange Backup". The backup is obtained with Get-VBRBackup and piped down. The restore points of the VM are filtered with Sort-Object method by the "CreationTime" property to get the most recent one.
Code: Select all
$RP = Get-VBRBackup -Name "MSExchange Backup" | Get-VBRRestorePoint -Name *MSExchange02* | Sort-Object $_.creationtime -Descending | Select -First 1
Code: Select all
$RP.GetRepository()
Info : Veeam.Backup.Model.CBackupRepositoryInfo
Id : c227d370-8c8a-472a-935e-7937642655e4
Name : REPO_NAME
HostId : 6745a759-2205-4cd2-b172-8ec8f7e60ef8
MountHostId : 6745a759-2205-4cd2-b172-8ec8f7e60ef8
Description : DESCRIPTION_HERE
Path : PATH_HERE
FriendlyPath : FRIENDLY_PATH_HERE
ShareCredsId : 00000000-0000-0000-0000-000000000000
Type : WinLocal
IsTemporary : False
TypeDisplay : Windows
IsRotatedDriveRepository : False
EndPointCryptoKeyId : 00000000-0000-0000-0000-000000000000
Options : Veeam.Backup.Core.CDomBackupRepositoryOptions
IsSanSnapshotOnly : False
IsDedupStorage : False
Thank you.
Who is online
Users browsing this forum: No registered users and 20 guests