forked from GhostPack/PSPKIAudit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSPKIAudit.psd1
34 lines (26 loc) · 1022 Bytes
/
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
@{
# Version number of this module.
ModuleVersion = '1.0'
# 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 = ''
# 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
#RequiredModules = @('PSPKI','ActiveDirectory')
RequiredModules = @('ActiveDirectory')
# 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'
)
}