vRanger application installed, and you need to gather environmental details for a report. The parameters you are trying to harvest are for the scheduled jobs in the configuration. The only workaround you can see is to copy/paste the job details, but will be time consuming.
The get-jobtemplate cmdlet provides the information, however some information is truncated in the initial display
Ø Get-jobtemplate –type backup
***To get more specific information (in this case – finding out the backup flags for a particular active job)***
Ø Get-jobtemplate –type backup | where {$_.Jobname –eq “<name of backup job>” -and $_.IsCurrent -eq 'True' -and $_.IsEnabled -eq 'True'} | foreach-object {echo $_.Jobname $_.Flags}