Src/Private/Get-AbrVbrBackupjob.ps1
function Get-AbrVbrBackupjob { <# .SYNOPSIS Used by As Built Report to returns backup jobs created in Veeam Backup & Replication. .DESCRIPTION Documents the configuration of Veeam VBR in Word/HTML/Text formats using PScribo. .NOTES Version: 0.3.1 Author: Jonathan Colon Twitter: @jcolonfzenpr Github: rebelinux Credits: Iain Brighton (@iainbrighton) - PScribo module .LINK https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR #> [CmdletBinding()] param ( ) begin { Write-PscriboMessage "Discovering Veeam VBR Backup jobs information from $System." } process { try { if ((Get-VBRJob -WarningAction Ignore).count -gt 0) { Section -Style Heading3 'Backup Jobs' { Paragraph "The following section list backup jobs created in Veeam Backup & Replication." BlankLine $OutObj = @() if ((Get-VBRServerSession).Server) { $Bkjobs = Get-VBRJob -WarningAction Ignore foreach ($Bkjob in $Bkjobs) { try { if ($Bkjob.GetTargetRepository().Name) { $Target = $Bkjob.GetTargetRepository().Name } else {$Target = "-"} } catch { Write-PscriboMessage -IsWarning $_.Exception.Message } try { Write-PscriboMessage "Discovered $($Bkjob.Name) location." $inObj = [ordered] @{ 'Name' = $Bkjob.Name 'Type' = $Bkjob.TypeToString 'Latest Status' = $Bkjob.info.LatestStatus 'Target Repository' = $Target } $OutObj += [pscustomobject]$inobj } catch { Write-PscriboMessage -IsWarning $_.Exception.Message } } $TableParams = @{ Name = "Backup Jobs - $(((Get-VBRServerSession).Server).ToString().ToUpper().Split(".")[0])" List = $false ColumnWidths = 30, 25, 15, 30 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Table @TableParams } } } } catch { Write-PscriboMessage -IsWarning $_.Exception.Message } } end {} } |