PowerShell 技能连载 - 简单的内置密码生成器

.NET System.Web 程序集中有一个隐藏的功能,它可以让您立即创建任意长度的随机密码:

1
2
3
4
5
6
7
8
9
10
# total password length
$Length = 10

# number of non-alpha-chars
$NonChar = 3

Add-Type -AssemblyName 'System.Web'
$password = [System.Web.Security.Membership]::GeneratePassword($Length,$NonChar)

"Your password: $password"

PowerShell 技能连载 - 简单的内置密码生成器

http://blog.vichamp.com/2021/09/14/simple-built-in-password-generator/

作者

吴波

发布于

2021-09-14

更新于

2022-07-06

许可协议

评论