Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c0fc6cd
Update print statement from 'Hello' to 'Goodbye'
rebelinux Apr 4, 2026
b71ff63
Fix footer HTML in README.md
rebelinux Apr 4, 2026
2412c71
Update fmt.Println message from 'Hello' to 'Goodbye'
rebelinux Apr 4, 2026
63822ce
Update print statement from 'Hello' to 'Goodbye'
rebelinux Apr 4, 2026
5fcc776
Refactor error handling messages in various report scripts to utilize…
rebelinux Apr 5, 2026
d49307d
Refactor output formatting in domain and report functions for improve…
rebelinux Apr 5, 2026
ad2060c
Bump module version to 1.0.0 and update CHANGELOG for improved locali…
rebelinux Apr 5, 2026
faf2fbb
Merge branch 'AsBuiltReport:dev' into dev
rebelinux Apr 5, 2026
797eeeb
Update module versions for AsBuiltReport.Chart and AsBuiltReport.Diag…
rebelinux Apr 24, 2026
36a6bb3
Implement feature X to enhance user experience and optimize performance
rebelinux Apr 24, 2026
4eabd2d
Remove copilot instructions document to streamline project documentation
rebelinux Apr 24, 2026
aa1b8d6
feat: Add GliderUI support for report generation with a graphical int…
rebelinux Apr 24, 2026
c48185a
refactor: Clean up formatting and spacing in Start-AsBuiltReportMSAD.ps1
rebelinux Apr 24, 2026
33cc952
feat: Add GUI examples and usage instructions to README, including a …
rebelinux Apr 24, 2026
420f801
refactor: Enhance GliderUI support description in CHANGELOG for clari…
rebelinux Apr 24, 2026
a0f825e
fix: Update release date for version 1.0.0 in CHANGELOG
rebelinux Apr 24, 2026
30b31ea
Merge pull request #250 from rebelinux/dev
rebelinux Apr 24, 2026
98cfa22
chore: Update module version to 1.0.7 and adjust color properties for…
rebelinux May 2, 2026
a3aee0b
Merge branch 'AsBuiltReport:dev' into dev
rebelinux May 2, 2026
0e53d1b
fix: Update release date for version 1.0.0 in CHANGELOG
rebelinux May 2, 2026
340a565
Merge pull request #251 from rebelinux/dev
rebelinux May 2, 2026
6e5a74e
Potential fix for pull request finding
rebelinux May 2, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
983 changes: 751 additions & 232 deletions .github/copilot-instructions.md

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions AsBuiltReport.Microsoft.AD/AsBuiltReport.Microsoft.AD.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@
"DP": true,
"Zones": true,
"BestPractice": true
},
"CA": {
"Status": true,
"Statistics": true,
"BestPractice": true
}
}
}
8 changes: 4 additions & 4 deletions AsBuiltReport.Microsoft.AD/AsBuiltReport.Microsoft.AD.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'AsBuiltReport.Microsoft.AD.psm1'

# Version number of this module.
ModuleVersion = '0.9.12'
ModuleVersion = '1.0.0'

# Supported PSEditions
CompatiblePSEditions = @('Core')
Expand Down Expand Up @@ -58,11 +58,11 @@
},
@{
ModuleName = 'AsBuiltReport.Chart';
ModuleVersion = '0.3.0'
ModuleVersion = '0.3.1'
},
@{
ModuleName = 'AsBuiltReport.Diagram';
ModuleVersion = '1.0.5'
ModuleVersion = '1.0.7'
}
)

Expand All @@ -82,7 +82,7 @@
# NestedModules = @()

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @('Invoke-AsBuiltReport.Microsoft.AD')
FunctionsToExport = @('Invoke-AsBuiltReport.Microsoft.AD', 'Start-AsBuiltReportMSAD')

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
# CmdletsToExport = '*'
Expand Down
6 changes: 4 additions & 2 deletions AsBuiltReport.Microsoft.AD/AsBuiltReport.Microsoft.AD.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ $Public = @(Get-ChildItem -Path $PSScriptRoot\Src\Public\*.ps1 -ErrorAction Sile
$Diagram = @(Get-ChildItem -Path $PSScriptRoot\Src\Private\Diagram\*.ps1 -ErrorAction SilentlyContinue)
$Report = @(Get-ChildItem -Path $PSScriptRoot\Src\Private\Report\*.ps1 -ErrorAction SilentlyContinue)
$Tools = @(Get-ChildItem -Path $PSScriptRoot\Src\Private\Tools\*.ps1 -ErrorAction SilentlyContinue)
$Gui = @(Get-ChildItem -Path $PSScriptRoot\Src\Private\Gui\*.ps1 -ErrorAction SilentlyContinue)

foreach ($Module in @($Public + $Report + $Diagram + $Tools)) {
foreach ($Module in @($Public + $Report + $Diagram + $Tools + $Gui)) {
try {
. $Module.FullName
} catch {
Expand All @@ -15,4 +16,5 @@ foreach ($Module in @($Public + $Report + $Diagram + $Tools)) {
Export-ModuleMember -Function $Public.BaseName
Export-ModuleMember -Function $Report.BaseName
Export-ModuleMember -Function $Diagram.BaseName
Export-ModuleMember -Function $Tools.BaseName
Export-ModuleMember -Function $Tools.BaseName
Export-ModuleMember -Function $Gui.BaseName
285 changes: 278 additions & 7 deletions AsBuiltReport.Microsoft.AD/Language/en-US/MicrosoftAD.psd1

Large diffs are not rendered by default.

347 changes: 324 additions & 23 deletions AsBuiltReport.Microsoft.AD/Language/es-ES/MicrosoftAD.psd1

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Get-AbrADCAInfo {
.DESCRIPTION
Build a diagram of the configuration of Microsoft Active Directory to a supported formats using Psgraph.
.NOTES
Version: 0.9.12
Version: 1.0.0
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand Down Expand Up @@ -43,7 +43,7 @@ function Get-AbrADCAInfo {
$TempCAInfo = [PSCustomObject]@{
Name = Remove-SpecialCharacter -String "$($rootCA.Name)RootCA" -SpecialChars '\-. '
CAName = $rootCA.Name
Label = Add-NodeIcon -Name $rootCA.Name -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -Rows $AditionalInfo
Label = Add-NodeIcon -Name $rootCA.Name -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -Rows $AditionalInfo -FontColor $Fontcolor
AditionalInfo = $AditionalInfo
IsRoot = $true
}
Expand All @@ -64,7 +64,7 @@ function Get-AbrADCAInfo {
$TempCAInfo = [PSCustomObject]@{
Name = Remove-SpecialCharacter -String $RootCAName -SpecialChars '\-. '
CAName = $RootCAName
Label = Add-NodeIcon -Name $RootCAName -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -Rows $AditionalInfo
Label = Add-NodeIcon -Name $RootCAName -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -Rows $AditionalInfo -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor
AditionalInfo = $AditionalInfo
IsRoot = $true
}
Expand All @@ -86,7 +86,7 @@ function Get-AbrADCAInfo {
$TempCAInfo = [PSCustomObject]@{
Name = Remove-SpecialCharacter -String $subordinateCA.Name -SpecialChars '\-. '
CAName = $subordinateCA.Name
Label = Add-NodeIcon -Name $subordinateCA.dNSHostName -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -Rows $AditionalInfo
Label = Add-NodeIcon -Name $subordinateCA.dNSHostName -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -Rows $AditionalInfo -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor
AditionalInfo = $AditionalInfo
IsRoot = $false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Get-AbrADForestInfo {
.DESCRIPTION
Build a diagram of the configuration of Microsoft Active Directory to a supported formats using Psgraph.
.NOTES
Version: 0.9.12
Version: 1.0.0
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand Down Expand Up @@ -131,9 +131,9 @@ function Get-AbrADForestInfo {
$TempForestInfo = [PSCustomObject]@{
Name = Remove-SpecialCharacter -String "$($ChildDomain)ChildDomain" -SpecialChars '\-. '
ChildDomainLabel = $ChildDomain
Label = Add-NodeIcon -Name $ChildDomain -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -AditionalInfo $AditionalDomainInfo -FontSize 18
Label = Add-NodeIcon -Name $ChildDomain -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -AditionalInfo $AditionalDomainInfo -FontSize 18 -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor
RootDomain = $ForestObj.RootDomain
RootDomainLabel = Add-NodeIcon -Name $ForestObj.RootDomain -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -AditionalInfo $AditionalForestInfo -FontSize 18
RootDomainLabel = Add-NodeIcon -Name $ForestObj.RootDomain -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -AditionalInfo $AditionalForestInfo -FontSize 18 -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor
ChildDomain = $ChildDomain
ParentDomain = Remove-SpecialCharacter -String "$($Childs.Parent)ChildDomain" -SpecialChars '\-. '
AditionalInfo = $AditionalDomainInfo
Expand Down Expand Up @@ -181,7 +181,7 @@ function Get-AbrADForestInfo {

$TempForestInfo = [PSCustomObject]@{
Name = Remove-SpecialCharacter -String "$($ForestObj.Name)RootDomain" -SpecialChars '\-. '
Label = Add-NodeIcon -Name $ForestObj.RootDomain -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -AditionalInfo $AditionalForestInfo -FontSize 18
Label = Add-NodeIcon -Name $ForestObj.RootDomain -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -AditionalInfo $AditionalForestInfo -FontSize 18 -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor
AditionalInfo = $AditionalForestInfo
}
$ForestInfo.Add($TempForestInfo)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Get-AbrADTrustsInfo {
.DESCRIPTION
Build a diagram of the configuration of Microsoft Active Directory to a supported formats using Psgraph.
.NOTES
Version: 0.9.12
Version: 1.0.0
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand Down Expand Up @@ -71,9 +71,9 @@ function Get-AbrADTrustsInfo {
}
$TempTrustsInfo = [PSCustomObject]@{
Name = Remove-SpecialCharacter -String "$($Trust.Target)Trusts" -SpecialChars '\-. '
Label = Add-NodeIcon -Name $Trust.Target -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -RowsOrdered $AditionalInfo
Label = Add-NodeIcon -Name $Trust.Target -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -RowsOrdered $AditionalInfo -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor
Source = $Trust.CanonicalName.split('/')[0]
SourceLabel = Add-NodeIcon -Name $Trust.CanonicalName.split('/')[0] -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug
SourceLabel = Add-NodeIcon -Name $Trust.CanonicalName.split('/')[0] -IconType 'AD_Domain' -Align 'Center' -ImagesObj $Images -IconDebug $IconDebug -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor
Direction = $TrustDirectionID[[int]$Trust.TrustDirection]
}
$TrustsInfo.Add($TempTrustsInfo)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Get-AbrDiagCertificateAuthority {
.DESCRIPTION
Build a diagram of the configuration of Microsoft Active Directory to a supported formats using Psgraph.
.NOTES
Version: 0.9.12
Version: 1.0.0
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand All @@ -32,7 +32,7 @@ function Get-AbrDiagCertificateAuthority {
$CAInfo = Get-AbrADCAInfo

if ($CAInfo) {
SubGraph ForestSubGraph -Attributes @{Label = (Add-HtmlLabel -ImagesObj $Images -Label $ForestRoot -IconType 'ForestRoot' -IconDebug $IconDebug -SubgraphLabel -IconWidth 50 -IconHeight 50 -Fontsize 22 -FontName 'Segoe UI' -FontColor $Fontcolor -FontBold) ; fontsize = 24; penwidth = 1.5; labelloc = 't'; style = $SubGraphDebug.style ; color = $SubGraphDebug.color } {
SubGraph ForestSubGraph -Attributes @{Label = (Add-HtmlLabel -ImagesObj $Images -Label $ForestRoot -IconType 'ForestRoot' -IconDebug $IconDebug -SubgraphLabel -IconWidth 50 -IconHeight 50 -Fontsize 22 -FontName 'Segoe UI' -FontColor $Fontcolor -FontBold -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor) ; fontsize = 24; penwidth = 1.5; labelloc = 't'; style = $SubGraphDebug.style ; color = $SubGraphDebug.color } {
SubGraph MainSubGraph -Attributes @{Label = ' ' ; fontsize = 24; penwidth = 1.5; labelloc = 't'; style = $SubGraphDebug.style; color = $SubGraphDebug.color } {
if ($CAInfo | Where-Object { $_.IsRoot }) {

Expand All @@ -42,16 +42,16 @@ function Get-AbrDiagCertificateAuthority {
$CALabel = $reportTranslate.NewADDiagram.caEntRootCA
}

$CARootNodes = Add-HtmlNodeTable -Name CARootNodes -ImagesObj $Images -inputObject ($CAInfo | Where-Object { $_.IsRoot }).CAName -Align 'Center' -iconType 'AD_Certificate' -ColumnSize 4 -IconDebug $IconDebug -MultiIcon -AditionalInfo ($CAInfo | Where-Object { $_.IsRoot }).AditionalInfo -FontSize 18 -TableBorderColor $Edgecolor
$CARootNodes = Add-HtmlNodeTable -Name CARootNodes -ImagesObj $Images -inputObject ($CAInfo | Where-Object { $_.IsRoot }).CAName -Align 'Center' -iconType 'AD_Certificate' -ColumnSize 4 -IconDebug $IconDebug -MultiIcon -AditionalInfo ($CAInfo | Where-Object { $_.IsRoot }).AditionalInfo -FontSize 18 -TableBorderColor $Edgecolor -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor

Node -Name 'RootCA' -Attributes @{Label = (Add-HtmlSubGraph -Name RootCA -ImagesObj $Images -TableArray $CARootNodes -Align 'Center' -IconDebug $IconDebug -Label $CALabel -LabelPos 'top' -TableStyle 'dashed,rounded' -TableBorder '1' -ColumnSize 3 -IconType 'AD_PKI_Logo' -FontColor $Fontcolor -FontSize 24 -FontBold -TableBorderColor $Edgecolor); shape = 'plain'; fillColor = 'transparent'; fontsize = 18; fontname = 'Segoe Ui' }
Node -Name 'RootCA' -Attributes @{Label = (Add-HtmlSubGraph -Name RootCA -ImagesObj $Images -TableArray $CARootNodes -Align 'Center' -IconDebug $IconDebug -Label $CALabel -LabelPos 'top' -TableStyle 'dashed,rounded' -TableBorder '1' -ColumnSize 3 -IconType 'AD_PKI_Logo' -FontColor $Fontcolor -FontSize 24 -FontBold -TableBorderColor $Edgecolor -TableBackgroundColor $MainGraphBGColor); shape = 'plain'; fillColor = 'transparent'; fontsize = 18; fontname = 'Segoe Ui' }
}

if ($CAInfo | Where-Object { -not $_.IsRoot }) {

$CASubordinateNodes = Add-HtmlNodeTable -Name CASubordinateNodes -ImagesObj $Images -inputObject ($CAInfo | Where-Object { -not $_.IsRoot }).CAName -Align 'Center' -iconType 'AD_Certificate' -ColumnSize 4 -IconDebug $IconDebug -MultiIcon -AditionalInfo ($CAInfo | Where-Object { -not $_.IsRoot }).AditionalInfo -FontSize 18 -TableBorderColor $Edgecolor
$CASubordinateNodes = Add-HtmlNodeTable -Name CASubordinateNodes -ImagesObj $Images -inputObject ($CAInfo | Where-Object { -not $_.IsRoot }).CAName -Align 'Center' -iconType 'AD_Certificate' -ColumnSize 4 -IconDebug $IconDebug -MultiIcon -AditionalInfo ($CAInfo | Where-Object { -not $_.IsRoot }).AditionalInfo -FontSize 18 -TableBorderColor $Edgecolor -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor -FontColor $Fontcolor

Node -Name 'SubordinateCA' -Attributes @{Label = (Add-HtmlSubGraph -Name SubordinateCA -ImagesObj $Images -TableArray $CASubordinateNodes -Align 'Center' -IconDebug $IconDebug -Label $reportTranslate.NewADDiagram.caEntSubCA -LabelPos 'top' -TableStyle 'dashed,rounded' -TableBorder '1' -ColumnSize 3 -IconType 'AD_PKI_Logo' -FontColor $Fontcolor -FontSize 24 -FontBold -TableBorderColor $Edgecolor); shape = 'plain'; fillColor = 'transparent'; fontsize = 18; fontname = 'Segoe Ui' }
Node -Name 'SubordinateCA' -Attributes @{Label = (Add-HtmlSubGraph -Name SubordinateCA -ImagesObj $Images -TableArray $CASubordinateNodes -Align 'Center' -IconDebug $IconDebug -Label $reportTranslate.NewADDiagram.caEntSubCA -LabelPos 'top' -TableStyle 'dashed,rounded' -TableBorder '1' -ColumnSize 3 -IconType 'AD_PKI_Logo' -FontColor $Fontcolor -FontSize 24 -FontBold -TableBorderColor $Edgecolor -TableBackgroundColor $MainGraphBGColor); shape = 'plain'; fillColor = 'transparent'; fontsize = 18; fontname = 'Segoe Ui' }

}

Expand All @@ -61,7 +61,7 @@ function Get-AbrDiagCertificateAuthority {
}
}
} else {
Node -Name NoDomain @{Label = $reportTranslate.NewADDiagram.NoCA; shape = 'rectangle'; labelloc = 'c'; fixedsize = $true; width = '5'; height = '3'; fillColor = 'transparent'; penwidth = 1.5; style = 'dashed'; color = 'gray' }
Node -Name NoDomain @{Label = $reportTranslate.NewADDiagram.NoCA; shape = 'rectangle'; labelloc = 'c'; fixedsize = $true; width = '5'; height = '3'; fillColor = 'transparent'; penwidth = 1.5; style = 'dashed'; color = $Edgecolor }
}
}
} catch {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Get-AbrDiagForest {
.DESCRIPTION
Build a diagram of the configuration of Microsoft Active Directory to a supported formats using Psgraph.
.NOTES
Version: 0.9.12
Version: 1.0.0
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand All @@ -32,7 +32,7 @@ function Get-AbrDiagForest {
$ForestInfo = Get-AbrADForestInfo

if ($ForestInfo) {
SubGraph ForestSubGraph -Attributes @{Label = (Add-HtmlLabel -ImagesObj $Images -Label $ForestRoot -IconType 'ForestRoot' -IconDebug $IconDebug -SubgraphLabel -IconWidth 50 -IconHeight 50 -Fontsize 22 -FontName 'Segoe UI' -FontColor $Fontcolor -FontBold) ; fontsize = 24; penwidth = 1.5; labelloc = 't'; style = $SubGraphDebug.style ; color = $SubGraphDebug.color } {
SubGraph ForestSubGraph -Attributes @{Label = (Add-HtmlLabel -ImagesObj $Images -Label $ForestRoot -IconType 'ForestRoot' -IconDebug $IconDebug -SubgraphLabel -IconWidth 50 -IconHeight 50 -Fontsize 22 -FontName 'Segoe UI' -FontColor $Fontcolor -FontBold -TableBackgroundColor $MainGraphBGColor -CellBackgroundColor $MainGraphBGColor) ; fontsize = 24; penwidth = 1.5; labelloc = 't'; style = $SubGraphDebug.style ; color = $SubGraphDebug.color } {
SubGraph MainSubGraph -Attributes @{Label = ' ' ; fontsize = 24; penwidth = 1.5; labelloc = 't'; style = $SubGraphDebug.style; color = $SubGraphDebug.color } {
if ($ForestInfo.ChildDomain ) {

Expand All @@ -49,15 +49,15 @@ function Get-AbrDiagForest {

Node -Name $ForestInfo.Name -Attributes @{Label = $ForestInfo.Label; shape = 'plain'; fillColor = 'transparent' }

Node -Name NoDomain @{Label = $reportTranslate.NewADDiagram.fNoChildDomains; shape = 'rectangle'; labelloc = 'c'; fixedsize = $true; width = '3'; height = '2'; fillColor = 'transparent'; penwidth = 1.5; style = 'dashed'; color = 'gray' }
Node -Name NoDomain @{Label = $reportTranslate.NewADDiagram.fNoChildDomains; shape = 'rectangle'; labelloc = 'c'; fixedsize = $true; width = '3'; height = '2'; fillColor = 'transparent'; penwidth = 1.5; style = 'dashed'; color = $Edgecolor }

Edge -From $ForestInfo.Name -To NoDomain @{minlen = 2 }

}
}
}
} else {
Node -Name NoDomain @{Label = $reportTranslate.NewADDiagram.fNoChildDomains; shape = 'rectangle'; labelloc = 'c'; fixedsize = $true; width = '15'; height = '13'; fillColor = 'transparent'; penwidth = 1.5; style = 'dashed'; color = 'gray' }
Node -Name NoDomain @{Label = $reportTranslate.NewADDiagram.fNoChildDomains; shape = 'rectangle'; labelloc = 'c'; fixedsize = $true; width = '15'; height = '13'; fillColor = 'transparent'; penwidth = 1.5; style = 'dashed'; color = $Edgecolor }
}
}
} catch {
Expand Down
Loading
Loading