PowerShell 技能连载 - 生成随机密码

以下是一个非常简单的创建复杂随机密码的方法:

1
2
3
4
Add-Type -AssemblyName System.Web
$PasswordLength = 12
$SpecialCharCount = 3
[System.Web.Security.Membership]::GeneratePassword($PasswordLength, $SpecialCharCount)

The API call lets you choose the length of the password, and the number of non-alphanumeric characters it contains.

PowerShell 技能连载 - 生成随机密码

http://blog.vichamp.com/2017/05/24/generating-random-password/

作者

吴波

发布于

2017-05-24

更新于

2022-07-06

许可协议

评论