-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBlueTuxedo.psd1
21 lines (21 loc) · 1.36 KB
/
BlueTuxedo.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@{
AliasesToExport = @('*')
Author = 'Jake Hildreth and Jim Sykora'
CmdletsToExport = @()
CompatiblePSEditions = @('Desktop', 'Core')
Copyright = '(c) 2023 - 2025. All rights reserved.'
Description = 'A tiny tool to identify and remediate common misconfigurations in Active Directory-Integrated DNS.'
FunctionsToExport = @('*')
GUID = 'e98445b3-1d76-4a51-831d-ddfc7e0213fa'
ModuleVersion = '2024.10'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
ExternalModuleDependencies = @('ActiveDirectory', 'DhcpServer', 'DnsServer', 'DnsClient', 'Microsoft.PowerShell.Security', 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.LocalAccounts', 'Microsoft.PowerShell.Management', 'Microsoft.WSMan.Management')
ProjectUri = 'https://github.com/jakehildreth/BlueTuxedo'
Tags = @('Windows', 'BlueTuxedo', 'DNS', 'AD', 'ActiveDirectory', 'DomainNameSystem', 'ADIDNS')
}
}
RequiredModules = @('ActiveDirectory', 'DhcpServer', 'DnsServer', 'DnsClient', 'Microsoft.PowerShell.Security', 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.LocalAccounts', 'Microsoft.PowerShell.Management', 'Microsoft.WSMan.Management')
RootModule = 'BlueTuxedo.psm1'
}