forked from jakehildreth/Locksmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocksmith.psd1
21 lines (21 loc) · 1.22 KB
/
Locksmith.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'
CmdletsToExport = @()
CompatiblePSEditions = @('Desktop', 'Core')
Copyright = '(c) 2022 - 2024. All rights reserved.'
Description = 'A small tool to find and fix common misconfigurations in Active Directory Certificate Services.'
FunctionsToExport = @('*')
GUID = 'b1325b42-8dc4-4f17-aa1f-dcb5984ca14a'
ModuleVersion = '2023.12'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
ExternalModuleDependencies = @('ActiveDirectory', 'ServerManager', 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.LocalAccounts', 'Microsoft.PowerShell.Management', 'CimCmdlets', 'Dism')
ProjectUri = 'https://github.com/TrimarcJake/Locksmith'
Tags = @('Windows', 'Locksmith', 'CA', 'PKI', 'ActiveDirectory', 'CertificateServices', 'ADCS')
}
}
RequiredModules = @('ActiveDirectory', 'ServerManager', 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.LocalAccounts', 'Microsoft.PowerShell.Management', 'CimCmdlets', 'Dism')
RootModule = 'Locksmith.psm1'
}