-
- Influencer
- Posts: 10
- Liked: never
- Joined: Nov 15, 2012 9:46 pm
- Contact:
When is _M, _W or _Y added to vbk filename?
Can anyone tell me when _M, _W or _Y is added to the filename of GFS backups? I created a job with a weekly GFS backup configured, but the filename of the vbk file does not have _W at the end. When I look at the properties of the job, it does show a W under the retention column. It was my understanding that these jobs should have _W appended to the end of the filename.
Thanks
Thanks
-
- Product Manager
- Posts: 9848
- Liked: 2607 times
- Joined: May 13, 2017 4:51 pm
- Full Name: Fabian K.
- Location: Switzerland
- Contact:
Re: When is _M, _W or _Y added to vbk filename?
This was true before Veeam V11.
With Veeam V11, the backups will only have a GFS Flag inside the database.
With Veeam V11, the backups will only have a GFS Flag inside the database.
Product Management Analyst @ Veeam Software
-
- Influencer
- Posts: 10
- Liked: never
- Joined: Nov 15, 2012 9:46 pm
- Contact:
Re: When is _M, _W or _Y added to vbk filename?
That's unfortunate, because I was going to archive backup files based on those labels. Now I know I need to find another solution.
Thank you!
Thank you!
-
- Product Manager
- Posts: 9848
- Liked: 2607 times
- Joined: May 13, 2017 4:51 pm
- Full Name: Fabian K.
- Location: Switzerland
- Contact:
Re: When is _M, _W or _Y added to vbk filename?
Can you tell us more about your plan? Are you using tape or rotated disk to archive your backups?
Archiving backups could be done with integrated veeam jobs. Or you could script something do find out which backup is a monthly vbk. I am sure, there will be a powershell command from veeam to find the monthly restore points.
Archiving backups could be done with integrated veeam jobs. Or you could script something do find out which backup is a monthly vbk. I am sure, there will be a powershell command from veeam to find the monthly restore points.
Product Management Analyst @ Veeam Software
-
- Chief Product Officer
- Posts: 31814
- Liked: 7302 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: When is _M, _W or _Y added to vbk filename?
I just wanted to add that this "feature loss" is primarily from the introduction of immutable backups feature, which obviously prevents us from adding these flags to file names once the file has been created - as this means renaming a file, which is simply impossible. Because of that, we had to move these flags into the database.
-
- Lurker
- Posts: 2
- Liked: never
- Joined: Nov 22, 2021 7:42 am
- Contact:
Re: When is _M, _W or _Y added to vbk filename?
Hi Gostev,
thanks for the clear explanation.
We had a script running here that copied all _W _M _Y files to an external USB disk. This script will no longer work. I was wondering if I can make an export of all flagged (M W Y) files via powershell? If so can you help me on my way.
Thanks in advance,
kind regards
thanks for the clear explanation.
We had a script running here that copied all _W _M _Y files to an external USB disk. This script will no longer work. I was wondering if I can make an export of all flagged (M W Y) files via powershell? If so can you help me on my way.
Thanks in advance,
kind regards
-
- Chief Product Officer
- Posts: 31814
- Liked: 7302 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: When is _M, _W or _Y added to vbk filename?
Try asking for help on the PowerShell subforum... people there actually know this stuff and what's possible, unlike me
-
- Veteran
- Posts: 643
- Liked: 312 times
- Joined: Aug 04, 2019 2:57 pm
- Full Name: Harvey
- Contact:
Re: When is _M, _W or _Y added to vbk filename?
Ah, this is a pretty easy one.
Fetch your backup with Get-VBRBackup, and CBackup objects have the GetAllChildrenStorages() method, and you can check the GFSPeriod property there and get the file path also:
Much better for reporting/taking action. So just get all file paths where the GfsPeriod -ne "None" and you'll have your list to copy.
Fetch your backup with Get-VBRBackup, and CBackup objects have the GetAllChildrenStorages() method, and you can check the GFSPeriod property there and get the file path also:
Code: Select all
PS C:\Users\Administrator> $storages = $backup.GetAllChildrenStorages()
PS C:\Users\Administrator> $storages | select FilePath, GFSPeriod
FilePath GfsPeriod
-------- ---------
E:\backup-copy-testing\TestVM-vrdm.vm-23625D2021-11-22T000000_E58D.vib None
E:\backup-copy-testing\TestVM-vrdm.vm-23625D2021-11-16T000000_9E5E.vib None
E:\backup-copy-testing\TestVM-vrdm.vm-23625D2021-11-19T184033_3188.vbk Weekly
E:\backup-copy-testing\TestVM-vrdm.vm-23625D2021-11-05T184024_D411.vbk Monthly, Yearly
E:\backup-copy-testing\TestVM-vrdm.vm-23625D2021-11-17T000000_8D7B.vib None
E:\backup-copy-testing\TestVM-vrdm.vm-23625D2021-11-18T000000_BF6D.vib None
E:\backup-copy-testing\TestVM-vrdm.vm-23625D2021-11-23T000000_8296.vib None
E:\backup-copy-testing\TestVM-vrdm.vm-23625D2021-11-12T184046_07E8.vbk None
E:\backup-copy-testing\TestVM2.vm-106664D2021-11-05T184024_EE78.vbk Monthly, Yearly
E:\backup-copy-testing\TestVM2.vm-106664D2021-11-22T000000_47C7.vib None
E:\backup-copy-testing\TestVM2.vm-106664D2021-11-12T184047_0234.vbk None
E:\backup-copy-testing\TestVM2.vm-106664D2021-11-19T184033_28E8.vbk Weekly
E:\backup-copy-testing\TestVM2.vm-106664D2021-11-18T000000_9773.vib None
E:\backup-copy-testing\TestVM2.vm-106664D2021-11-17T000000_AAEE.vib None
E:\backup-copy-testing\TestVM2.vm-106664D2021-11-23T000000_D3DD.vib None
E:\backup-copy-testing\TestVM2.vm-106664D2021-11-16T000000_9E5E.vib None
Who is online
Users browsing this forum: Semrush [Bot] and 32 guests