I need a solution
Hello
I'm creating a one-time backup every day through a powershell script, which works pritty nice.
Now, at the end of the backup job i would like to export the used tape(s) to the Mail-Slot (have three of them which is more than enough). I haven't found a good and easy way to find out which tape(s)/slot(s) where used during backup.
The only place i found the slot/tape directly was the job log:
Get-BEJob -Name "Name of last backup" | Get-BEJobHistory -FromLastJobRun | Get-BEJobLog
But, this is raw text. Don't want to start manually parse out the information needed.
So, do i somehow can get out which slot(s) have been used in a given backup job? The tape(s) used would also be good. It's easy to get the slot if i have the name of the tape.
The only solution i found so far is to search for the tapes LastModifiedDate using the StartTime and EndTime of the job. Not very nice...
Thank you very much
Urs