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.7.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 File Share Backup jobs information from $System." } process { try { $FSBkjobs = Get-VBRJob -WarningAction SilentlyContinue | Where-Object {$_.TypeToString -like 'File Backup'} if ($FSBkjobs.count -gt 0) { Section -Style Heading3 'File Share Backup Jobs' { Paragraph "The following section list file share backup jobs created in Veeam Backup & Replication." BlankLine $OutObj = @() foreach ($FSBkjob in $FSBkjobs) { try { Write-PscriboMessage "Discovered $($FSBkjob.Name) file share." $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 "File Share Backup Jobs $($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 = "File Share Backup Jobs - $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 "File Share Backup Jobs Section: $($_.Exception.Message)" } } end {} } |