|
1 | 1 | <#
|
2 |
| - Copyright (C) 2022 Robin Stolpe |
3 |
| - <https://stolpe.io> |
4 |
| - This program is free software: you can redistribute it and/or modify |
5 |
| - it under the terms of the GNU General Public License as published by |
6 |
| - the Free Software Foundation, either version 3 of the License, or |
7 |
| - (at your option) any later version. |
8 |
| - This program is distributed in the hope that it will be useful, |
9 |
| - but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 |
| - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 |
| - GNU General Public License for more details. |
12 |
| - You should have received a copy of the GNU General Public License |
13 |
| - along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 2 | + MIT License |
| 3 | +
|
| 4 | + Copyright (C) 2023 Robin Stolpe. |
| 5 | +
|
| 6 | + Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | + of this software and associated documentation files (the "Software"), to deal |
| 8 | + in the Software without restriction, including without limitation the rights |
| 9 | + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | + copies of the Software, and to permit persons to whom the Software is |
| 11 | + furnished to do so, subject to the following conditions: |
| 12 | +
|
| 13 | + The above copyright notice and this permission notice shall be included in all |
| 14 | + copies or substantial portions of the Software. |
| 15 | +
|
| 16 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 22 | + SOFTWARE. |
14 | 23 | #>
|
| 24 | + |
15 | 25 | #
|
16 | 26 | # Module manifest for module 'GenerateRandomPassword'
|
17 | 27 | #
|
18 | 28 | # Generated by: Robin Stolpe
|
19 | 29 | #
|
20 |
| -# Generated on: 2022-11-22 |
| 30 | +# Generated on: 2023-01-21 |
21 | 31 | #
|
22 | 32 |
|
23 | 33 | @{
|
24 | 34 |
|
25 | 35 | # Script module or binary module file associated with this manifest.
|
26 |
| - RootModule = '.\GenerateRandomPassword.psm1' |
| 36 | + RootModule = '.\GenerateRandomPassword.psm1' |
27 | 37 |
|
28 | 38 | # Version number of this module.
|
29 |
| - ModuleVersion = '1.0' |
| 39 | + ModuleVersion = '1.0.1' |
30 | 40 |
|
31 | 41 | # Supported PSEditions
|
32 | 42 | # CompatiblePSEditions = @()
|
33 | 43 |
|
34 | 44 | # ID used to uniquely identify this module
|
35 |
| - GUID = 'f9318fbc-e3dd-45de-b12b-4b3224a107d7' |
| 45 | + GUID = 'f9318fbc-e3dd-45de-b12b-4b3224a107d7' |
36 | 46 |
|
37 | 47 | # Author of this module
|
38 |
| - Author = 'Robin Stolpe' |
| 48 | + Author = 'Robin Stolpe' |
39 | 49 |
|
40 | 50 | # Company or vendor of this module
|
41 |
| - CompanyName = 'Stolpe.io' |
| 51 | + CompanyName = 'Stolpe.io' |
42 | 52 |
|
43 | 53 | # Copyright statement for this module
|
44 |
| - Copyright = '(c) 2022 Robin Stolpe. All rights reserved.' |
| 54 | + Copyright = '(c) 2023 Robin Stolpe. All rights reserved.' |
45 | 55 |
|
46 | 56 | # Description of the functionality provided by this module
|
47 |
| - Description = 'Generate and returns a random password, you can choose how many characters and how many special characters it should contain.' |
| 57 | + Description = 'Generate and returns a random password, you can choose how many characters and how many special characters it should contain.' |
48 | 58 |
|
49 | 59 | # Minimum version of the PowerShell engine required by this module
|
50 | 60 | PowerShellVersion = '5.1'
|
|
62 | 72 | # ClrVersion = ''
|
63 | 73 |
|
64 | 74 | # Processor architecture (None, X86, Amd64) required by this module
|
65 |
| - # ProcessorArchitecture = '' |
| 75 | + ProcessorArchitecture = '' |
66 | 76 |
|
67 | 77 | # Modules that must be imported into the global environment prior to importing this module
|
68 | 78 | # RequiredModules = @()
|
|
83 | 93 | # NestedModules = @()
|
84 | 94 |
|
85 | 95 | # 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.
|
86 |
| - FunctionsToExport = @("New-RSRandomPassword") |
| 96 | + FunctionsToExport = "New-RSRandomPassword" |
87 | 97 |
|
88 | 98 | # 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.
|
89 |
| - CmdletsToExport = @() |
| 99 | + CmdletsToExport = @() |
90 | 100 |
|
91 | 101 | # Variables to export from this module
|
92 | 102 | VariablesToExport = '*'
|
|
109 | 119 | PSData = @{
|
110 | 120 |
|
111 | 121 | # Tags applied to this module. These help with module discovery in online galleries.
|
112 |
| - Tags = @("random-password", "generate-password", "sysadmin-tool", "support-tool", "it-tool", "random-password-generator", "generate-random-password") |
| 122 | + Tags = @("random-password", "generate-password", "sysadmin-tool", "support-tool", "it-tool", "random-password-generator", "generate-random-password") |
113 | 123 |
|
114 | 124 | # A URL to the license for this module.
|
115 |
| - LicenseUri = 'https://github.com/rstolpe/GenerateRandomPassword/blob/main/LICENSE' |
| 125 | + LicenseUri = 'https://github.com/rstolpe/GenerateRandomPassword/blob/main/LICENSE' |
116 | 126 |
|
117 | 127 | # A URL to the main website for this project.
|
118 |
| - ProjectUri = 'https://github.com/rstolpe/GenerateRandomPassword' |
| 128 | + ProjectUri = 'https://github.com/rstolpe/GenerateRandomPassword' |
119 | 129 |
|
120 | 130 | # A URL to an icon representing this module.
|
121 |
| - # IconUri = '' |
| 131 | + # IconUri = '' |
122 | 132 |
|
123 | 133 | # ReleaseNotes of this module
|
124 |
| - ReleaseNotes = 'https://github.com/rstolpe/GenerateRandomPassword/releases/tag/1.0' |
| 134 | + ReleaseNotes = 'https://github.com/rstolpe/GenerateRandomPassword/releases' |
125 | 135 |
|
126 | 136 | # Prerelease string of this module
|
127 |
| - # Prerelease = '' |
| 137 | + Prerelease = '' |
128 | 138 |
|
129 | 139 | # Flag to indicate whether the module requires explicit user acceptance for install/update/save
|
130 | 140 | RequireLicenseAcceptance = $false
|
|
137 | 147 | } # End of PrivateData hashtable
|
138 | 148 |
|
139 | 149 | # HelpInfo URI of this module
|
140 |
| - HelpInfoURI = 'https://github.com/rstolpe/GenerateRandomPassword/blob/main/README.md' |
| 150 | + # HelpInfoURI = '' |
141 | 151 |
|
142 | 152 | # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
|
143 | 153 | # DefaultCommandPrefix = ''
|
144 |
| - |
145 | 154 | }
|
146 |
| - |
|
0 commit comments