Unsolved
2 Posts
0
990
December 28th, 2021 07:00
Get a list of files from the "SAVESET" that were backed up
I'm trying to get the mminfo/nsrinfo syntax to get a list of files from the Networker "SAVESET" that were backed up the night before or last 24 hrs. I've tried some example I saw online with no success. Can someone post some examples of the syntax? Thanks.
Mitch
No Events found!
bingo.1
2.4K Posts
0
December 29th, 2021 02:00
For this purpose, you need the client and the backup time (nsavetime in this case).
Simply run a media db query like: mminfo -q "ssid=your ssid" -r "client,nsavetime"
Then use these values to query the file index db for that client like:
nsrinfo client_name -t nsavetime_value | more or
nsrinfo client_name -t nsavetime_value > file
maronson625
2 Posts
0
December 29th, 2021 03:00
Thanks for the info.