6,862
社区成员
Poweshell 管理员执行,Windows 7,8,10,11,2012,2016,2019,2022兼容
启用密码复杂性
secedit /export /cfg secpol.cfg
((Get-Content -path secpol.cfg -Raw) -replace "PasswordComplexity = 0", "PasswordComplexity = 1") | Set-Content -Path secpol.cfg
secedit /configure /db secedit.sdb /cfg secpol.cfg /areas SECURITYPOLICY
禁用密码复杂性
secedit /export /cfg secpol.cfg
((Get-Content -path secpol.cfg -Raw) -replace "PasswordComplexity = 1", "PasswordComplexity = 0") | Set-Content -Path secpol.cfg
secedit /configure /db secedit.sdb /cfg secpol.cfg /areas SECURITYPOLICY
查看是否启用密码复杂性
如果输出结果为 "PasswordComplexity = 1",表示已启用密码复杂性。
如果输出结果为 "PasswordComplexity = 0" 或无任何输出,则表示未启用密码复杂性
secedit /export /cfg secpol.cfg
Get-Content -Path secpol.cfg | Select-String "PasswordComplexity"