Skip to content

Commit

Permalink
Merge pull request #21 from AsBuiltReport/dev
Browse files Browse the repository at this point in the history
v0.6.1 public release
  • Loading branch information
tpcarman committed Dec 10, 2021
2 parents 61b2389 + 1d29f35 commit 045b668
Show file tree
Hide file tree
Showing 7 changed files with 102 additions and 73 deletions.
2 changes: 1 addition & 1 deletion AsBuiltReport.Microsoft.AD.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"BP": true
},
"CA": {
"Status": true
"Status": true,
"Statistics": true
}
}
Expand Down
2 changes: 1 addition & 1 deletion 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.6.0'
ModuleVersion = '0.6.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# :arrows_counterclockwise: Microsoft AD As Built Report Changelog

## [0.6.1] - 2021-12-07

### Added

- Added Sample HTML Report Link to README file.
- Added DHCP/DNS Powershell module installation instructions. Closes #18

### Fixed

- Improved the code to better detect whether a DHCP/CA infrastructure is in place. Closes #17
- Fix missing comma in JSON File. Closes #16

## [0.6.0] - 2021-12-02

### Added
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ Microsoft AD As Built Report is a PowerShell module which works in conjunction w

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

# :books: Sample Reports

## Sample Report - Custom Style 1

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)

# :beginner: Getting Started

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

### Linux & macOS

Expand All @@ -79,6 +87,8 @@ Due to a limitation of the WinRM component, a domain-joined machine is needed, a
```powershell
Install-Module AsBuiltReport.Microsoft.AD
Install-WindowsFeature RSAT-AD-PowerShell
Install-WindowsFeature RSAT-DNS-Server
Install-WindowsFeature RSAT-DHCP
Install-WindowsFeature GPMC
```

Expand All @@ -88,6 +98,8 @@ Install-WindowsFeature GPMC
Install-Module AsBuiltReport.Microsoft.AD
Add-WindowsCapability -online -Name 'Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0'
Add-WindowsCapability -online -Name 'Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0'
Add-WindowsCapability –online –Name 'Rsat.Dns.Tools~~~~0.0.1.0'
Add-WindowsCapability -Online -Name 'Rsat.DHCP.Tools~~~~0.0.1.0'
```

### GitHub
Expand Down
4 changes: 2 additions & 2 deletions Src/Private/Get-AbrADDHCPInfrastructure.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Get-AbrADDHCPInfrastructure {
.DESCRIPTION
.NOTES
Version: 0.5.0
Version: 0.6.1
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand Down Expand Up @@ -73,7 +73,7 @@ function Get-AbrADDHCPInfrastructure {
$TableParams['Caption'] = "- $($TableParams.Name)"
}
$OutObj | Table @TableParams

Section -Style Heading6 'Service Database' {
Paragraph "The following section provides a summary of the DHCP servers service database information on $($Domain.ToString().ToUpper())."
BlankLine
Expand Down
4 changes: 2 additions & 2 deletions Src/Private/Get-AbrADDNSInfrastructure.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Get-AbrADDNSInfrastructure {
.DESCRIPTION
.NOTES
Version: 0.5.0
Version: 0.6.1
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand Down Expand Up @@ -163,7 +163,7 @@ function Get-AbrADDNSInfrastructure {
}
}
}

if ($InfoLevel.DNS -ge 2) {
Section -Style Heading6 "Response Rate Limiting (RRL)" {
Paragraph "The following section provides a summary of the DNS Response Rate Limiting configuration."
Expand Down
Loading

0 comments on commit 045b668

Please sign in to comment.