回复 1# ff72635z
不用跪求,请修改标题!
Windows7下的话,右键以管理员运行!- @echo off
- pushd "%~dp0"
-
- >>sec.inf echo.[Unicode]
- >>sec.inf echo.Unicode=yes
- >>sec.inf echo.[Version]
- >>sec.inf echo.signature="$CHICAGO$"
- >>sec.inf echo.Revision=1
- >>sec.inf echo.[System Access]
- >>sec.inf echo.MinimumPasswordAge = 0
- >>sec.inf echo.MaximumPasswordAge = 30
- >>sec.inf echo.MinimumPasswordLength = 8
- >>sec.inf echo.PasswordComplexity = 1
- >>sec.inf echo.PasswordHistorySize = 0
- >>sec.inf echo.LockoutBadCount = 3
- >>sec.inf echo.ResetLockoutCount = 15
- >>sec.inf echo.LockoutDuration = 15
-
- secedit /configure /db sec.sdb /cfg sec.inf /log sec.log /quiet
- del sec.*
- echo 修改成功.
- pause>nul
复制代码
|