Skip to content

Commit 1d29f35

Browse files
authored
Merge pull request #20 from rebelinux/dev
v0.6.1
2 parents 61b2389 + 4629ab0 commit 1d29f35

File tree

7 files changed

+102
-73
lines changed

7 files changed

+102
-73
lines changed

AsBuiltReport.Microsoft.AD.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"BP": true
4444
},
4545
"CA": {
46-
"Status": true
46+
"Status": true,
4747
"Statistics": true
4848
}
4949
}

AsBuiltReport.Microsoft.AD.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'AsBuiltReport.Microsoft.AD.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.6.0'
15+
ModuleVersion = '0.6.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# :arrows_counterclockwise: Microsoft AD As Built Report Changelog
22

3+
## [0.6.1] - 2021-12-07
4+
5+
### Added
6+
7+
- Added Sample HTML Report Link to README file.
8+
- Added DHCP/DNS Powershell module installation instructions. Closes #18
9+
10+
### Fixed
11+
12+
- Improved the code to better detect whether a DHCP/CA infrastructure is in place. Closes #17
13+
- Fix missing comma in JSON File. Closes #16
14+
315
## [0.6.0] - 2021-12-02
416

517
### Added

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ Microsoft AD As Built Report is a PowerShell module which works in conjunction w
3333

3434
Please refer to the AsBuiltReport [website](https://www.asbuiltreport.com) for more detailed information about this project.
3535

36+
# :books: Sample Reports
37+
38+
## Sample Report - Custom Style 1
39+
40+
Sample Microsoft AD As Built report HTML file: [Sample Microsoft AD As-Built Report.html](https://technomyth.zenprsolutions.net/wp-content/uploads/2021/12/Microsoft-AD-As-Built-Report.html)
41+
3642
# :beginner: Getting Started
3743

3844
Below are the instructions on how to install, configure and generate a Microsoft AD As Built report.
@@ -60,6 +66,8 @@ PowerShell 5.1 or PowerShell 7, and the following PowerShell modules are require
6066
- [ActiveDirectory Module](https://docs.microsoft.com/en-us/powershell/module/activedirectory/?view=windowsserver2019-ps)
6167
- [PSPKI Module](https://www.powershellgallery.com/packages/PSPKI/3.7.2)
6268
- [GroupPolicy Module](https://docs.microsoft.com/en-us/powershell/module/grouppolicy/?view=windowsserver2019-ps)
69+
- [DhcpServer Module](https://docs.microsoft.com/en-us/powershell/module/dhcpserver/?view=windowsserver2019-ps)
70+
- [DnsServer Module](https://docs.microsoft.com/en-us/powershell/module/dnsserver/?view=windowsserver2019-ps)
6371

6472
### Linux & macOS
6573

@@ -79,6 +87,8 @@ Due to a limitation of the WinRM component, a domain-joined machine is needed, a
7987
```powershell
8088
Install-Module AsBuiltReport.Microsoft.AD
8189
Install-WindowsFeature RSAT-AD-PowerShell
90+
Install-WindowsFeature RSAT-DNS-Server
91+
Install-WindowsFeature RSAT-DHCP
8292
Install-WindowsFeature GPMC
8393
```
8494

@@ -88,6 +98,8 @@ Install-WindowsFeature GPMC
8898
Install-Module AsBuiltReport.Microsoft.AD
8999
Add-WindowsCapability -online -Name 'Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0'
90100
Add-WindowsCapability -online -Name 'Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0'
101+
Add-WindowsCapability –online –Name 'Rsat.Dns.Tools~~~~0.0.1.0'
102+
Add-WindowsCapability -Online -Name 'Rsat.DHCP.Tools~~~~0.0.1.0'
91103
```
92104

93105
### GitHub

Src/Private/Get-AbrADDHCPInfrastructure.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function Get-AbrADDHCPInfrastructure {
55
.DESCRIPTION
66
77
.NOTES
8-
Version: 0.5.0
8+
Version: 0.6.1
99
Author: Jonathan Colon
1010
Twitter: @jcolonfzenpr
1111
Github: rebelinux
@@ -73,7 +73,7 @@ function Get-AbrADDHCPInfrastructure {
7373
$TableParams['Caption'] = "- $($TableParams.Name)"
7474
}
7575
$OutObj | Table @TableParams
76-
76+
7777
Section -Style Heading6 'Service Database' {
7878
Paragraph "The following section provides a summary of the DHCP servers service database information on $($Domain.ToString().ToUpper())."
7979
BlankLine

Src/Private/Get-AbrADDNSInfrastructure.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function Get-AbrADDNSInfrastructure {
55
.DESCRIPTION
66
77
.NOTES
8-
Version: 0.5.0
8+
Version: 0.6.1
99
Author: Jonathan Colon
1010
Twitter: @jcolonfzenpr
1111
Github: rebelinux
@@ -163,7 +163,7 @@ function Get-AbrADDNSInfrastructure {
163163
}
164164
}
165165
}
166-
166+
167167
if ($InfoLevel.DNS -ge 2) {
168168
Section -Style Heading6 "Response Rate Limiting (RRL)" {
169169
Paragraph "The following section provides a summary of the DNS Response Rate Limiting configuration."

0 commit comments

Comments
 (0)