We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f42886 commit 71fce99Copy full SHA for 71fce99
GenerateRandomPassword/GenerateRandomPassword.psm1
@@ -52,10 +52,10 @@ function New-RSRandomPassword {
52
[CmdletBinding()]
53
param(
54
[ValidateRange(6, 30)]
55
- [Parameter(Mandatory = $false)]
+ [Parameter(Mandatory = $false, HelpMessage = "Specify how many character the password should contain")]
56
[int]$Length = 12,
57
[ValidateRange(1, 15)]
58
+ [Parameter(Mandatory = $false, HelpMessage = "Specify how many special characters the password should conatin")]
59
[int]$SpecialCharacters = 3
60
)
61
0 commit comments