I would like to get command, which could be executed on standalone hosts to get status and type of a specific backup job. Variable $jobname
stores the name of the job.
Get-BEJob -Name $jobname |
select JobType, Status |
ft -auto
I also tried to use this one, but don't know exactly how to filter out necessary data.
Get-BETapeDriveDevice |
Submit-BEInventoryJob |
select Name, JobType |
ft –auto
I would like to get only 2 words as output.