-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAutomaticMaintenance.psd1
31 lines (31 loc) · 1.08 KB
/
AutomaticMaintenance.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
@{
RootModule = 'AutomaticMaintenance.psm1'
ModuleVersion = '2.11.1'
GUID = '8e34abf8-40ba-4c68-8bf8-f235cd001d82'
Author = 'Kirill Nikolaev'
CompanyName = 'Fozzy Inc.'
Copyright = '(c) 2018 Fozzy Inc. All rights reserved.'
PowerShellVersion = '3.0'
Description = 'Helps IT engineers to establish a continuous update process in large intertangled infrastructures.'
RequiredModules = @(
'PendingReboot'
'ResourceLocker'
'SimpleTextLogger'
'SplitOutput'
)
FunctionsToExport = @(
'Get-ComputerMaintenanceConfiguration'
'Invoke-ComputerMaintenance'
'Invoke-InfrastructureMaintenance'
)
CmdletsToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @()
LicenseUri = 'https://github.com/FozzyHosting/AutomaticMaintenance/blob/master/LICENSE'
ProjectUri = 'https://github.com/FozzyHosting/AutomaticMaintenance/'
ReleaseNotes = ''
}
}
}