-
Notifications
You must be signed in to change notification settings - Fork 112
/
PSPKIAudit.psd1
46 lines (37 loc) · 1.34 KB
/
PSPKIAudit.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@{
# Version number of this module.
ModuleVersion = '1.1'
# ID used to uniquely identify this module
GUID = '64ceb619-0a9d-4657-8ca8-889f9453bf31'
# Author of this module
Author = 'Will Schroeder,Lee Christensen'
# Copyright statement for this module
Copyright = 'Ms-PL'
# Description of the functionality provided by this module
Description = 'Module provides some security auditing capabilities based on PSPKI module.'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.0'
# Modules that must be imported into the global environment prior to importing this module
RootModule = 'PSPKIAudit.psm1'
RequiredModules = @(
@{
ModuleName = 'ActiveDirectory'
ModuleVersion = '1.0.0.0'
Guid = '43c15630-959c-49e4-a977-758c5cc93408'
},
@{
ModuleName = 'PSPKI'
ModuleVersion = '4.0.0'
Guid = '08a70230-ae58-48af-ae73-e4276b6ef1eb'
}
)
# 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 = @(
'Get-CertRequest',
'Invoke-PKIAudit',
'Get-AuditCertificateAuthority',
'Get-AuditCertificateTemplate',
'Get-AuditPKIADObjectControllers',
'Format-PKIAdObjectControllers'
)
}