Poweshell 管理员执行,密码复杂性启用关闭,Windows 7,8,10,11,2012,2016,2019,2022兼容

CIAS 2023-09-26 10:12:54

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"

...全文
285 回复 打赏 收藏 转发到动态 举报
写回复
用AI写文章
回复
切换为时间正序
请发表友善的回复…
发表回复

6,862

社区成员

发帖
与我相关
我的任务
社区描述
Windows 2016/2012/2008/2003/2000/NT
社区管理员
  • Windows Server社区
  • qishine
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧