Src/Private/Get-AbrVbrFileShareBackupjob.ps1
function Get-AbrVbrFileShareBackupjob { <# .SYNOPSIS Used by As Built Report to returns file share jobs created in Veeam Backup & Replication. .DESCRIPTION Documents the configuration of Veeam VBR in Word/HTML/Text formats using PScribo. .NOTES Version: 0.8.7 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 File Share Backup jobs information from $System." } process { try { if ($FSBkjobs = Get-VBRJob -WarningAction SilentlyContinue | Where-Object { $_.TypeToString -like 'File Backup' -or $_.TypeToString -like 'Object Storage Backup' }) { if ($VbrVersion -lt 12.1) { $BSName = 'File Share Backup Jobs' } else { $BSName = 'Unstructured Data Backup Jobs' } Section -Style Heading3 $BSName { Paragraph "The following section list $($BSName.ToLower()) created in Veeam Backup & Replication." BlankLine $OutObj = @() foreach ($FSBkjob in $FSBkjobs) { try { Write-PScriboMessage "Discovered $($FSBkjob.Name) $($BSName.ToLower())." $inObj = [ordered] @{ 'Name' = $FSBkjob.Name 'Type' = $FSBkjob.TypeToString 'Status' = Switch ($FSBkjob.IsScheduleEnabled) { 'False' { 'Disabled' } 'True' { 'Enabled' } } 'Latest Result' = $FSBkjob.info.LatestStatus 'Last Run' = Switch ($FSBkjob.FindLastSession()) { $Null { 'Unknown' } default { $FSBkjob.FindLastSession().EndTimeUTC } } } $OutObj += [pscustomobject]$inobj } catch { Write-PScriboMessage -IsWarning "$($BSName.ToLower()) $($FSBkjob.Name) Section: $($_.Exception.Message)" } } if ($HealthCheck.Jobs.Status) { $OutObj | Where-Object { $_.'Latest Result' -eq 'Failed' } | Set-Style -Style Critical -Property 'Latest Result' $OutObj | Where-Object { $_.'Latest Result' -eq 'Warning' } | Set-Style -Style Warning -Property 'Latest Result' $OutObj | Where-Object { $_.'Status' -eq 'Disabled' } | Set-Style -Style Warning -Property 'Status' $OutObj | Where-Object { $_.'Scheduled?' -eq 'No' } | Set-Style -Style Warning -Property 'Scheduled?' } $TableParams = @{ Name = "$BSName - $VeeamBackupServer" List = $false ColumnWidths = 25, 20, 15, 15, 25 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Sort-Object -Property 'Name' | Table @TableParams } } } catch { Write-PScriboMessage -IsWarning "$($BSName.ToLower()) Section: $($_.Exception.Message)" } } end {} } |