|
1 | 1 | <# |
2 | 2 | MIT License |
3 | 3 |
|
4 | | - Copyright (c) 2023 Robin Stolpe |
5 | | - <{{mail}}> |
6 | | - <{{website}}> |
| 4 | + Copyright (C) 2023 Robin Stolpe. |
| 5 | + |
| 6 | + <https://stolpe.io> |
7 | 7 |
|
8 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy |
9 | 9 | of this software and associated documentation files (the "Software"), to deal |
|
35 | 35 | @{ |
36 | 36 |
|
37 | 37 | # Script module or binary module file associated with this manifest. |
38 | | - RootModule = '.\MaintainModule.psm1' |
| 38 | + RootModule = '.\MaintainModule.psm1' |
39 | 39 |
|
40 | 40 | # Version number of this module. |
41 | | - ModuleVersion = '0.1.2' |
| 41 | + ModuleVersion = '0.1.2' |
42 | 42 |
|
43 | 43 | # Supported PSEditions |
44 | 44 | # CompatiblePSEditions = @() |
|
47 | 47 | GUID = '4fec1769-909e-44cf-b715-bbc6b10564b3' |
48 | 48 |
|
49 | 49 | # Author of this module |
50 | | - Author = 'Robin Stolpe' |
| 50 | + Author = 'Robin Stolpe' |
51 | 51 |
|
52 | 52 | # Company or vendor of this module |
53 | | - CompanyName = 'Stolpe.io' |
| 53 | + CompanyName = 'Stolpe.io' |
54 | 54 |
|
55 | 55 | # Copyright statement for this module |
56 | | - Copyright = '(c) 2023 Robin Stolpe. All rights reserved.' |
| 56 | + Copyright = '(c) 2023 Robin Stolpe. All rights reserved.' |
57 | 57 |
|
58 | 58 | # Description of the functionality provided by this module |
59 | | - Description = 'This module let you maintain your installed modules in a easy way' |
| 59 | + Description = 'This module will help you to update your software on your Windows 10 and Windows 11 machines.' |
60 | 60 |
|
61 | 61 | # Minimum version of the PowerShell engine required by this module |
62 | 62 | PowerShellVersion = '5.1' |
|
74 | 74 | # ClrVersion = '' |
75 | 75 |
|
76 | 76 | # Processor architecture (None, X86, Amd64) required by this module |
77 | | - # ProcessorArchitecture = '' |
| 77 | + ProcessorArchitecture = '' |
78 | 78 |
|
79 | 79 | # Modules that must be imported into the global environment prior to importing this module |
80 | 80 | # RequiredModules = @() |
|
95 | 95 | # NestedModules = @() |
96 | 96 |
|
97 | 97 | # 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. |
98 | | - FunctionsToExport = "Uninstall-RSModule", "Update-RSModule" |
| 98 | + FunctionsToExport = "Uninstall-RSModule", "Update-RSModule" |
99 | 99 |
|
100 | 100 | # Cmdlets 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 cmdlets to export. |
101 | | - CmdletsToExport = @() |
| 101 | + CmdletsToExport = @() |
102 | 102 |
|
103 | 103 | # Variables to export from this module |
104 | 104 | VariablesToExport = '*' |
|
124 | 124 | Tags = @("PowerShell", "macOS", "Windows", "Linux", "support-tool", "sysadmin-tool", "it-tool", "maintain-module", "module-maintenance", "multi-platform", "multiOS") |
125 | 125 |
|
126 | 126 | # A URL to the license for this module. |
127 | | - LicenseUri = 'https://github.com/rstolpe/MaintainModule/blob/main/LICENSE' |
| 127 | + LicenseUri = 'https://github.com/rstolpe/MaintainModule/blob/main/LICENSE' |
128 | 128 |
|
129 | 129 | # A URL to the main website for this project. |
130 | | - ProjectUri = 'https://github.com/rstolpe/MaintainModule' |
| 130 | + ProjectUri = 'https://github.com/rstolpe/MaintainModule' |
131 | 131 |
|
132 | 132 | # A URL to an icon representing this module. |
133 | 133 | # IconUri = '' |
134 | 134 |
|
135 | 135 | # ReleaseNotes of this module |
136 | | - ReleaseNotes = 'https://github.com/rstolpe/MaintainModule/releases' |
| 136 | + ReleaseNotes = 'https://github.com/rstolpe/MaintainModule/releases' |
137 | 137 |
|
138 | 138 | # Prerelease string of this module |
139 | | - # Prerelease = '' |
| 139 | + Prerelease = 'Alpha' |
140 | 140 |
|
141 | 141 | # Flag to indicate whether the module requires explicit user acceptance for install/update/save |
142 | 142 | RequireLicenseAcceptance = $false |
|
149 | 149 | } # End of PrivateData hashtable |
150 | 150 |
|
151 | 151 | # HelpInfo URI of this module |
152 | | - # HelpInfoURI = '' |
| 152 | + # HelpInfoURI = '' |
153 | 153 |
|
154 | 154 | # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
155 | 155 | # DefaultCommandPrefix = '' |
|
0 commit comments