禁用 Windows 8 错误密码延迟

Mar*_*arl 6 passwords windows-8

每当我在 Windows 8 机器登录中输入不正确的密码时,在我再次尝试重新输入密码之前需要的时间越来越长。

我相信这是一个安全功能和设计

我想禁用此功能 - 我查看了 Windows 策略和设置,但找不到任何内容。有谁知道我可以在哪里禁用 Windows 8 中的此安全功能?

50-*_*0-3 1

这是一个名为“帐户锁定持续时间”的组策略

Windows 7、Windows 8、Windows Server 2008、Windows Server 2008 R2、Windows Server 2012 和 Windows Vista 也是如此

它将接受一个值范围或 0 - 99,999,因此如果将其设置为 0,它将不再给您带来延迟。

策略存储在以下位置:

\计算机配置\Windows 设置\安全设置\帐户策略\密码策略


这也可以通过命令行完成:

C:\Users\foo>net accounts
Force user logoff how long after time expires?:       0
Minimum password age (days):                          1
Maximum password age (days):                          30
Minimum password length:                              8
Length of password history maintained:                10
Lockout threshold:                                    5
Lockout duration (minutes):                           30
Lockout observation window (minutes):                 30
Computer role:                                        WORKSTATION
The command completed successfully.
Run Code Online (Sandbox Code Playgroud)

然后我们运行net accounts /lockoutthreshold:0net accounts /lockoutduration:0得到以下结果:

C:\Users\foo>net accounts
Force user logoff how long after time expires?:       0
Minimum password age (days):                          1
Maximum password age (days):                          30
Minimum password length:                              8
Length of password history maintained:                10
Lockout threshold:                                    0
Lockout duration (minutes):                           Never
Lockout observation window (minutes):                 30
Computer role:                                        WORKSTATION
The command completed successfully.
Run Code Online (Sandbox Code Playgroud)