cancel
Showing results for 
Search instead for 
Did you mean: 

Export tape(s) after backup

uweiss
Level 3

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

 

1 ACCEPTED SOLUTION

Accepted Solutions

uweiss
Level 3

Eject only "ejects" the tape (media) from the drive, which is done anyway when using a tape library.

But, there is also a "TapeStorageExportMedia" option which i haven't saw yet. Will try it with todays backup.

Thanks
Urs

View solution in original post

4 REPLIES 4

Jaydeep_S
Level 6
Employee Accredited Certified

I am asuming you are using BemCLI for this. Have you tried "TapeStorageEjectMediaAfterComplete" in the script?

You can find the exact syntax in the document below. I think it takes a bolean value

http://www.symantec.com/docs/DOC5438

uweiss
Level 3

Eject only "ejects" the tape (media) from the drive, which is done anyway when using a tape library.

But, there is also a "TapeStorageExportMedia" option which i haven't saw yet. Will try it with todays backup.

Thanks
Urs

Jaydeep_S
Level 6
Employee Accredited Certified

Oh, I probably missed out from your original post. Yes there are a couple of options for export

'TapeStorageExportMedia' and 'TapeStorageExportMediaToVault'

Feel free to try and let me know if you have any issues.

uweiss
Level 3

Just a quick feedback:

"-TapeStorageExportMedia" worked just fine.

Thanks
Urs