Infra-ChangeTracker.psd1
|
@{ RootModule = 'Infra-ChangeTracker.psm1' ModuleVersion = '1.0.0' GUID = 'a7b8c9d0-4e35-4ab1-f2c3-8e9f0a1b2c34' Author = 'Larry Roberts, Independent Consultant' CompanyName = 'Independent' Copyright = '(c) 2026 Larry Roberts. All rights reserved.' Description = 'Infrastructure change tracking across AD, GPO, DNS, and server configurations. Answers "who changed what and when" instantly.' PowerShellVersion = '5.1' FunctionsToExport = @( 'Invoke-ChangeAudit', 'Get-ADChanges', 'Get-GPOChanges', 'Get-DNSChanges', 'Get-ServerConfigChanges' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('ChangeTracking', 'Audit', 'ActiveDirectory', 'GPO', 'DNS', 'Compliance', 'Security', 'Monitoring') LicenseUri = 'https://github.com/larro1991/Infra-ChangeTracker/blob/master/LICENSE' ProjectUri = 'https://github.com/larro1991/Infra-ChangeTracker' ReleaseNotes = 'Initial release - AD, GPO, DNS, and Server Config change tracking with HTML dashboard reporting.' } } } |