Src/Private/Get-AbrHRZRolePrivilege.ps1
function Get-AbrHRZRolePrivilege { <# .SYNOPSIS PowerShell script which documents the configuration of VMware Horizon in Word/HTML/XML/Text formats .DESCRIPTION Documents the configuration of VMware Horizon in Word/HTML/XML/Text formats using PScribo. .NOTES Version: 1.1.4 Author: Chris Hildebrandt, Karl Newick Twitter: @childebrandt42, @karlnewick Editor: Jonathan Colon, @jcolonfzenpr Twitter: @asbuiltreport Github: AsBuiltReport Credits: Iain Brighton (@iainbrighton) - PScribo module .LINK https://github.com/AsBuiltReport/AsBuiltReport.VMware.Horizon #> [CmdletBinding()] param ( ) begin { Write-PScriboMessage "Role Provilege InfoLevel set at $($InfoLevel.Settings.Administrators.RolePrivileges)." Write-PScriboMessage "Collecting Role Provilege information." } process { try { if ($Roles) { if ($InfoLevel.Settings.Administrators.RolePrivileges -ge 1) { Section -Style Heading3 "Role Privileges" { Paragraph "The following section details the Role Privileges information for $($HVEnvironment.toUpper()) server." BlankLine $OutObj = @() foreach ($Role in $Roles) { Write-PScriboMessage "Discovered Role Provilege Information." $inObj = [ordered] @{ 'Name' = $Role.base.Name 'Description' = $Role.base.Description } $OutObj += [pscustomobject](ConvertTo-HashToYN $inObj) } $TableParams = @{ Name = "Role Privileges - $($HVEnvironment.toUpper())" List = $false ColumnWidths = 50, 50 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Sort-Object -Property 'Name' | Table @TableParams } if ($InfoLevel.Settings.Administrators.RolePrivileges -ge 2) { Section -Style Heading4 "Role Privileges Details" { Paragraph "The following section details the Role Privilege details for information for $($HVEnvironment.toUpper()) server." BlankLine $OutObj = @() foreach ($Role in $Roles) { Write-PScriboMessage "Discovered Role Provilege Detailed Information for $($HVEnvironment.toUpper()) server." $inObj = [ordered] @{ 'Name' = $Role.base.Name 'Description' = [string]::join("`n", $($Role.base.Privileges)) } $OutObj += [pscustomobject](ConvertTo-HashToYN $inObj) } $TableParams = @{ Name = "Role Privileges Details - $($Role.base.Name)" List = $false ColumnWidths = 50, 50 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Sort-Object -Property 'Name' | Table @TableParams } } } } } catch { Write-PScriboMessage -IsWarning $_.Exception.Message } } end {} } |