Skip to content

Commit 04b51de

Browse files
committed
v1.1.4
1 parent 280e1cb commit 04b51de

17 files changed

+523
-1244
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.1.4] - 2024-11-21
8+
## [1.1.4] - 2024-11-22
99

1010
### Added
1111

@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Improved detection of empty fields in tables
1818
- Improved detection of true/false elements in tables
1919
- Updated GitHub release workflow to add post to Bluesky social platform
20+
- Updated sample report
2021

2122
## [1.1.3] - 2024-02-14
2223

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ Please refer to the AsBuiltReport [website](https://www.asbuiltreport.com) for m
3939

4040
Sample VMware Horizon As Built report HTML file: [Sample VMware Horizon As-Built Report.html](https://htmlpreview.github.io/?https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.Horizon/dev/Samples/Sample%20VMware%20Horizon%20As%20Built%20Report.html)
4141

42-
Sample VMware Horizon As Built report PDF file: [Sample VMware Horizon As Built Report.pdf](https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.Horizon/dev/Samples/VMware%20Horizon%20As%20Built%20Report.pdf)
43-
44-
4542
# :beginner: Getting Started
4643

4744
Below are the instructions on how to install, configure and generate a VMware Horizon As Built report.

Samples/Sample VMware Horizon As Built Report.html

Lines changed: 488 additions & 1207 deletions
Large diffs are not rendered by default.
-1.18 MB
Binary file not shown.

Src/Private/Get-AbrHRZAccessGroup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function Get-AbrHRZAccessGroup {
8484
}
8585
}
8686
if ($AdministratorIDName) {
87-
Section -ExcludeFromTOC -Style Heading5 $AccessGroup.base.Name {
87+
Section -ExcludeFromTOC -Style NOTOCHeading5 $AccessGroup.base.Name {
8888
$OutObj = @()
8989
foreach ($Principal in ($AdministratorIDName | Select-Object -Unique)) {
9090
$PrincipalPermissionsName = @()

Src/Private/Get-AbrHRZAdminGroup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function Get-AbrHRZAdminGroup {
109109
'True' { $Administratorbasegroup = 'Group' }
110110
'False' { $Administratorbasegroup = 'User' }
111111
}
112-
Section -ExcludeFromTOC -Style Heading6 $Administrator.Base.Name {
112+
Section -ExcludeFromTOC -Style NOTOCHeading6 $Administrator.Base.Name {
113113
$OutObj = @()
114114
$inObj = [ordered] @{
115115
'Name' = $Administrator.base.Name

Src/Private/Get-AbrHRZApplicationPool.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function Get-AbrHRZApplicationPool {
107107
$OtherApplicationFileTypes = $App.ExecutionData.OtherFileTypes | ForEach-Object { $_.FileType }
108108
$OtherApplicationFileTypesresult = $OtherApplicationFileTypes -join ', '
109109

110-
Section -Style Heading5 "Application Summary - $($App.Data.DisplayName)" {
110+
Section -Style NOTOCHeading5 "Application Summary - $($App.Data.DisplayName)" {
111111
$OutObj = @()
112112
Write-PScriboMessage "Discovered $($App.Data.DisplayName) Applications Information."
113113
$inObj = [ordered] @{

Src/Private/Get-AbrHRZConnectionServer.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function Get-AbrHRZConnectionServer {
7272
try {
7373
$OutObj = @()
7474
foreach ($ConnectionServer in $ConnectionServers) {
75-
Section -Style Heading5 "General $($ConnectionServer.General.Name) Details" {
75+
Section -Style NOTOCHeading5 "General $($ConnectionServer.General.Name) Details" {
7676
try {
7777
$ConnectionServerTags = $ConnectionServer.General | ForEach-Object { $_.Tags }
7878
$ConnectionServerTagsresult = $ConnectionServerTags -join ', '
@@ -137,7 +137,7 @@ function Get-AbrHRZConnectionServer {
137137

138138
try {
139139
$OutObj = @()
140-
Section -Style Heading5 "Authentication $($ConnectionServer.General.Name) Details" {
140+
Section -Style NOTOCHeading5 "Authentication $($ConnectionServer.General.Name) Details" {
141141
try {
142142
Write-PScriboMessage "Discovered Connection Servers Authentication Information $($ConnectionServer.General.Name)."
143143

@@ -192,7 +192,7 @@ function Get-AbrHRZConnectionServer {
192192
}
193193
try {
194194
$OutObj = @()
195-
Section -Style Heading5 "Backup $($ConnectionServer.General.Name) Details" {
195+
Section -Style NOTOCHeading5 "Backup $($ConnectionServer.General.Name) Details" {
196196
try {
197197
Write-PScriboMessage "Discovered Connection Servers Authentication Information $($ConnectionServer.General.Name)."
198198
$inObj = [ordered] @{
@@ -238,7 +238,7 @@ function Get-AbrHRZConnectionServer {
238238
}
239239
try {
240240
$OutObj = @()
241-
Section -Style Heading5 "Certificate Details for $($ConnectionServer.General.Name) Details" {
241+
Section -Style NOTOCHeading5 "Certificate Details for $($ConnectionServer.General.Name) Details" {
242242
try {
243243

244244
# Connection Server Health Data
@@ -295,7 +295,7 @@ function Get-AbrHRZConnectionServer {
295295
if ($InfoLevel.settings.servers.ConnectionServers.ConnectionServers -ge 2) {
296296
try {
297297
$OutObj = @()
298-
Section -Style Heading5 "Replication Status for Connection Server $($connectionserver.General.Name)" {
298+
Section -Style NOTOCHeading5 "Replication Status for Connection Server $($connectionserver.General.Name)" {
299299
try {
300300
Write-PScriboMessage "Working on Replication Information for $($connectionserver.General.Name)."
301301

Src/Private/Get-AbrHRZDatastore.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function Get-AbrHRZDatastore {
3131
try {
3232
if ($vCenterHealth) {
3333
if ($InfoLevel.Settings.Servers.vCenterServers.DataStores -ge 1) {
34-
Section -Style Heading5 "Datastores" {
34+
Section -Style NOTOCHeading5 "Datastores" {
3535
$OutObj = @()
3636
$Datastores = $vCenterHealth.datastoredata
3737
foreach ($DataStore in $Datastores) {
@@ -66,11 +66,11 @@ function Get-AbrHRZDatastore {
6666
$OutObj | Sort-Object -Property 'Name' | Table @TableParams
6767
try {
6868
if ($InfoLevel.Settings.Servers.vCenterServers.DataStores -ge 2) {
69-
Section -Style Heading6 "Datastores Detailed" {
69+
Section -Style NOTOCHeading6 "Datastores Detailed" {
7070
foreach ($DataStore in $Datastores) {
7171
if ($DataStore) {
7272
try {
73-
Section -ExcludeFromTOC -Style Heading6 "$($DataStore.Name)" {
73+
Section -ExcludeFromTOC -Style NOTOCHeading6 "$($DataStore.Name)" {
7474
$OutObj = @()
7575
Write-PScriboMessage "Discovered Datastore Information from $($DataStore.Name)."
7676
$inObj = [ordered] @{

Src/Private/Get-AbrHRZDesktopPool.ps1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ function Get-AbrHRZDesktopPool {
280280
}
281281
}
282282
try {
283-
Section -Style Heading5 "Pool - $($Pool.Base.name)" {
283+
Section -Style NOTOCHeading5 "Pool - $($Pool.Base.name)" {
284284
$SupportedDisplayProtocolsresult = ''
285285
$SupportedDisplayProtocols = $Pool.DesktopSettings.DisplayProtocolSettings | ForEach-Object { $_.SupportedDisplayProtocols }
286286
$SupportedDisplayProtocolsresult = $SupportedDisplayProtocols -join ', '
@@ -301,7 +301,7 @@ function Get-AbrHRZDesktopPool {
301301
}
302302
#$DatastorePathsresult = $DatastorePaths -join ', '
303303
try {
304-
Section -ExcludeFromTOC -Style Heading5 "General Summary - $($Pool.Base.name)" {
304+
Section -ExcludeFromTOC -Style NOTOCHeading5 "General Summary - $($Pool.Base.name)" {
305305
$OutObj = @()
306306
Write-PScriboMessage "Discovered $($Pool.Base.name) General Information."
307307
$inObj = [ordered] @{
@@ -347,7 +347,7 @@ function Get-AbrHRZDesktopPool {
347347
Write-PScriboMessage -IsWarning $_.Exception.Message
348348
}
349349
try {
350-
Section -ExcludeFromTOC -Style Heading5 "Detailed Settings - $($Pool.Base.name)" {
350+
Section -ExcludeFromTOC -Style NOTOCHeading5 "Detailed Settings - $($Pool.Base.name)" {
351351
$OutObj = @()
352352
Write-PScriboMessage "Discovered $($Pool.Base.name) Pool Setting Information."
353353
$inObj = [ordered] @{
@@ -469,7 +469,7 @@ function Get-AbrHRZDesktopPool {
469469
Write-PScriboMessage -IsWarning $_.Exception.Message
470470
}
471471
try {
472-
Section -ExcludeFromTOC -Style Heading5 "vCenter Server Settings - $($Pool.Base.name)" {
472+
Section -ExcludeFromTOC -Style NOTOCHeading5 "vCenter Server Settings - $($Pool.Base.name)" {
473473
$OutObj = @()
474474
Write-PScriboMessage "Discovered $($Pool.Base.name) vCenter Server Information."
475475
$inObj = [ordered] @{
@@ -623,7 +623,7 @@ function Get-AbrHRZDesktopPool {
623623

624624
if ($InfoLevel.Inventory.Desktop -ge 3) {
625625
try {
626-
Section -ExcludeFromTOC -Style Heading6 "Pool Machine Summary - $($Pool.Base.name)" {
626+
Section -ExcludeFromTOC -Style NOTOCHeading6 "Pool Machine Summary - $($Pool.Base.name)" {
627627
$OutObj = @()
628628
foreach ($Machine in $Machines) {
629629
if($Machine.Base.Name) {
@@ -661,7 +661,7 @@ function Get-AbrHRZDesktopPool {
661661
}
662662
try {
663663
if($EntitledUserOrGrouplocalMachines | Where-Object { $_.localData.Desktops.id -eq $Pool.Id.id }){
664-
Section -ExcludeFromTOC -Style Heading6 "Desktop Pools Entitlements - $($Pool.Base.Name)" {
664+
Section -ExcludeFromTOC -Style NOTOCHeading6 "Desktop Pools Entitlements - $($Pool.Base.Name)" {
665665
try {
666666
$OutObj = @()
667667
Write-PScriboMessage "Discovered Desktop Pool Entitlements Information for - $($Pool.Base.Name)."

0 commit comments

Comments
 (0)