Skip to content

Commit

Permalink
0.8.0-preview
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhitsolutions committed Mar 17, 2021
1 parent 40bba01 commit ea750bb
Show file tree
Hide file tree
Showing 21 changed files with 1,375 additions and 362 deletions.
297 changes: 0 additions & 297 deletions ADChangeReport.ps1

This file was deleted.

9 changes: 5 additions & 4 deletions ADReportingTools.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
RootModule = 'ADReportingTools.psm1'

# Version number of this module.
ModuleVersion = '0.7.0'
ModuleVersion = '0.8.0'

# Supported PSEditions
CompatiblePSEditions = @("Desktop","Core")
Expand Down Expand Up @@ -82,13 +82,14 @@ FormatsToProcess = @(
# 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 = 'Show-DomainTree','Get-ADUserAudit','Get-ADSummary','Get-ADFSMO','Get-ADSiteSummary','Get-ADSiteDetail',
'Get-ADGroupUser','Get-ADBranch','Get-ADDomainControllerHealth','New-ADDomainReport','Get-ADReportingTools','Get-ADCanonicalUser',
'Get-ADUserCategory','Get-ADGroupReport','Split-DistinguishedName'
'Get-ADUserCategory','Get-ADGroupReport','Split-DistinguishedName','New-ADChangeReport',
'Get-ADReportingToolsOptions','Set-ADReportingToolsOptions'

# 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 = ''

# Variables to export from this module
VariablesToExport = 'ADUserReportingConfiguration'
VariablesToExport = 'ADUserReportingConfiguration','ADReportingToolsOptions'

# Aliases 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 aliases to export.
AliasesToExport = 'dt','fsmo','Get-ADCnUser','Parse-DN'
Expand Down Expand Up @@ -129,7 +130,7 @@ PrivateData = @{
RequireLicenseAcceptance = $false

# External dependent modules of this module
ExternalModuleDependencies = @("ActiveDirectory")
ExternalModuleDependencies = @("ActiveDirectory","DNSClient")

} # End of PSData hashtable

Expand Down
3 changes: 2 additions & 1 deletion ADReportingTools.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ Update-TypeData -TypeName "ADDomainControllerHealth" -MemberType ScriptProperty

$ADUserReportingConfiguration = Get-Content $PSScriptRoot\configurations\aduser-categories.json | ConvertFrom-Json

Export-ModuleMember -Variable ADUserReportingConfiguration

Export-ModuleMember -Variable ADUserReportingConfiguration,ADReportingToolsOptions
12 changes: 12 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog for ADReportingTools

## 0.8.0-preview

+ Updated `README.md`.
+ Added `New-ADChangeReport`. ([Issue #15](https://github.com/jdhitsolutions/ADReportingTools/issues/15))
+ Added sample CSS file `changereport.css`.
+ Added sample HTML report `samplechange.html`.
+ Added private function `_convertObjects`.
+ Added variable `ADReportingToolsOptions` and functions `Get-ADReportingToolsOptions` and `Set-ADReportingToolsOptions`. ([Issue #16](https://github.com/jdhitsolutions/ADReportingTools/issues/16))
+ Modified format files to use values from `$ADReportingToolsOptions`.
+ Added `Universal` to $ADReportingToolsOptions` to highlight Universal groups.
+ Added `DomainLocal` to $ADReportingToolsOptions` to highlight DomainLocal groups.

## 0.7.0-preview

+ Fixed typo in `adbranchmember.format.ps1xml`.
Expand Down
Loading

0 comments on commit ea750bb

Please sign in to comment.