Src/Private/Get-AbrVbrEnterpriseManagerInfo.ps1
function Get-AbrVbrEnterpriseManagerInfo { <# .SYNOPSIS Used by As Built Report to retrieve Veeam VBR Enterprise Manager Information .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 Enterprise Manager information from $System." } process { try { if ($BackupServers = Get-VBRServer -Type Local) { Section -Style Heading3 'Enterprise Manager Information' { Paragraph "The following table details information about Veeam Enterprise Manager configuration status" BlankLine $OutObj = @() foreach ($BackupServer in $BackupServers) { Write-PScriboMessage "Collecting Enterprise Manager information from $($BackupServer.Name)." $EMInfo = [Veeam.Backup.Core.SBackupOptions]::GetEnterpriseServerInfo() if ($EMInfo) { $inObj = [ordered] @{ 'Server Name' = Switch ([string]::IsNullOrEmpty($EMInfo.ServerName)) { $true { 'Not Connected' } default { $EMInfo.ServerName } } 'Server URL' = Switch ([string]::IsNullOrEmpty($EMInfo.URL)) { $true { 'Not Connected' } default { $EMInfo.URL } } 'Skip License Push' = ConvertTo-TextYN $EMInfo.SkipLicensePush 'Is Connected' = ConvertTo-TextYN $EMInfo.IsConnected } } $OutObj = [pscustomobject]$inobj if ($OutObj) { if ($HealthCheck.Infrastructure.BackupServer) { $OutObj | Where-Object { $_.'Skip License Push' -eq 'Yes' } | Set-Style -Style Warning -Property 'Skip License Push' } $TableParams = @{ Name = "Enterprise Manager - $($BackupServer.Name.Split(".")[0])" List = $true ColumnWidths = 40, 60 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Table @TableParams if ($HealthCheck.Infrastructure.BestPractice -and ($OutObj | Where-Object { $_.'Skip License Push' -eq 'Yes' })) { Paragraph "Health Check:" -Bold -Underline BlankLine Paragraph { Text "Best Practice:" -Bold Text "Veeam recommends centralized license management through Enterprise Manager." } BlankLine } } } } } } catch { Write-PScriboMessage -IsWarning "Enterprise Manager Information Section: $($_.Exception.Message)" } } end {} } |