-
Notifications
You must be signed in to change notification settings - Fork 50
/
kbupdate.psd1
74 lines (61 loc) · 2.65 KB
/
kbupdate.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#
# Module manifest for module 'kbupdate'
#
# Generated by: Chrissy LeMaire
#
# Generated on: 7/7/2019
#
@{
# Version number of this module.
ModuleVersion = '2.0.27'
# ID used to uniquely identify this module
GUID = 'f292e190-ed32-4232-b9f3-b50b42a5655f'
# Author of this module
Author = 'Chrissy LeMaire'
# Company or vendor of this module
CompanyName = 'Chrissy LeMaire'
# Copyright statement for this module
Copyright = '2022 Chrissy LeMaire'
# Description of the functionality provided by this module
Description = 'KB Viewer, Saver, Installer and Uninstaller'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '3.0'
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(
# load up everything in Windows
@{ ModuleName = 'PSFramework'; ModuleVersion = '1.7.227' },
@{ ModuleName = 'kbupdate-library'; ModuleVersion = '1.1.24' },
@{ ModuleName = 'PSSQLite'; ModuleVersion = '1.1.0' }
)
# Script module or binary module file associated with this manifest.
RootModule = 'kbupdate.psm1'
FunctionsToExport = @(
'Get-KbUpdate',
'Save-KbUpdate',
'Connect-KbWsusServer',
'Get-KbInstalledSoftware',
'Install-KbUpdate',
'Uninstall-KbUpdate',
'Select-KbLatest',
'Save-KbScanFile',
'Get-KbNeededUpdate',
'Disconnect-KbWsusServer'
)
AliasesToExport = @('Get-KbInstalledUpdate')
PrivateData = @{
# PSData is module packaging and gallery metadata embedded in PrivateData
# It's for rebuilding PowerShellGet (and PoshCode) NuGet-style packages
# We had to do this because it's the only place we're allowed to extend the manifest
# https://connect.microsoft.com/PowerShell/feedback/details/421837
PSData = @{
# The primary categorization of this module (from the TechNet Gallery tech tree).
Category = 'Windows Update'
# Keyword tags to help users find this module via navigations and search.
Tags = @('kb', 'knowledgebase', 'windowsupdate', 'update', 'patch', 'patches', 'patching')
# The web address of an icon which can be used in galleries to represent this module
IconUri = 'https://user-images.githubusercontent.com/8278033/60797982-97668c00-a170-11e9-8f61-06bd40413c54.png'
# Indicates this is a pre-release/testing version of the module.
IsPrerelease = 'False'
}
}
}