Src/Private/Get-AbrVbrKMSInfo.ps1
function Get-AbrVbrKMSInfo { <# .SYNOPSIS Used by As Built Report to returns KMS configuration. .DESCRIPTION Documents the configuration of Veeam VBR in Word/HTML/Text formats using PScribo. .NOTES Version: 0.8.4 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 Key Management Server information from $System." } process { try { $KMSServers = Get-VBRKMSServer if ($KMSServers) { Section -Style Heading3 'Key Management Servers' { Paragraph "The following table provide information about the kms configured in Veeam Backup & Replication." BlankLine $OutObj = @() foreach ($KMSServer in $KMSServers) { try { Write-PscriboMessage "Discovered $($KMSServer.Name) KMS Server." $inObj = [ordered] @{ 'Name' = $KMSServer.Name 'CA Certificate' = $KMSServer.CACertificate 'Client Certificate' = $KMSServer.ClientCertificate 'Port' = "TCP/$($KMSServer.Port)" 'Description' = ConvertTo-EmptyToFiller $KMSServer.Description } $OutObj += [pscustomobject]$inobj } catch { Write-PscriboMessage -IsWarning "Key Management Server $($KMSServer.Name) Section: $($_.Exception.Message)" } $TableParams = @{ Name = "Key Management Server - $($KMSServer.Name)" List = $true ColumnWidths = 40, 60 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Table @TableParams } } } } catch { Write-PscriboMessage -IsWarning "Key Management Server Section: $($_.Exception.Message)" } } end {} } |