Real Geek Forums  

Go Back   Real Geek Forums > Archives > Operating Systems > Windows Vista > Windows Vista Administration

Notices

Reply

Home Premium Lockout Threshold and Lockout Duration

 

LinkBack Thread Tools Display Modes
Old 11-09-2007, 06:15 AM   #1 (permalink)
Default Home Premium Lockout Threshold and Lockout Duration

I would like to modify the Lockout Threshold and Lockout Duration in my copy
of Vista Home Premium, yet the Group Policy manager is not included with this
edition of the OS. I have found successful references to the command line
command "net accounts" for adjusting the password expiration, but am unable
to adjust lockout settings.

Additionally, I have found no useful references in the Group Policy
spreadsheet published by MS
(http://www.microsoft.com/downloads/d...DisplayLang=en)

Is there a way to do this from the command line?

Thoughts? Suggestions?
travelvice
Guest
 
Posts: n/a
Reply With Quote  
Old 11-09-2007, 09:10 AM   #2 (permalink)
Default Re: Home Premium Lockout Threshold and Lockout Duration

If you open an elevated command prompt and type "net accounts /?" you will
be shown what parameters can be adjusted with the NET command. If the ones
you want to modify aren't listed then they cannot be modified with the NET
command.

--
Richard G. Harper [MVP Shell/User] rgharper@gmail.com
* NEW! Catch my blog ... http://msmvps.com/blogs/rgharper/
* PLEASE post all messages and replies in the newsgroups
* The Website - http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm


"travelvice" <travelvice@discussions.microsoft.com> wrote in message
news:F1775F17-1938-42FB-8CBC-F3EB0E4FB1F6@microsoft.com...
Quote:
>I would like to modify the Lockout Threshold and Lockout Duration in my
>copy
> of Vista Home Premium, yet the Group Policy manager is not included with
> this
> edition of the OS. I have found successful references to the command line
> command "net accounts" for adjusting the password expiration, but am
> unable
> to adjust lockout settings.
>
> Additionally, I have found no useful references in the Group Policy
> spreadsheet published by MS
> (http://www.microsoft.com/downloads/d...DisplayLang=en)
>
> Is there a way to do this from the command line?
>
> Thoughts? Suggestions?
Richard G. Harper
Guest
 
Posts: n/a
Reply With Quote  
Old 11-09-2007, 07:56 PM   #3 (permalink)
Default Re: Home Premium Lockout Threshold and Lockout Duration

Travelvice

The Group Policy settings for this policy are in that reference. Look under
the 'Security Settings' tab at the lower/left of the workbook.

It appears that there is no relevant command line or registry setting for
these policies.

There is an article on undocumented 'net account' switches, but I believe
this is only available in a domain and there is no documentation that these
switches will work in Vista or even XP.

INFO: Undocumented "Net Accounts" Switches:
http://support.microsoft.com/kb/194739

It appears that these 'undocumented' switches were dropped after win2000.

You can still use the 'net accounts' command to get the current state of the
/lockoutthreshhold, /lockoutduration, and /lockoutwindow policies.

There just doesn't appear to be any way to change these settings except in
the group policy or security policy snap-ins?


--

Ronnie Vernon
Microsoft MVP
Windows Shell/User


"travelvice" <travelvice@discussions.microsoft.com> wrote in message
news:F1775F17-1938-42FB-8CBC-F3EB0E4FB1F6@microsoft.com...
Quote:
>I would like to modify the Lockout Threshold and Lockout Duration in my
>copy
> of Vista Home Premium, yet the Group Policy manager is not included with
> this
> edition of the OS. I have found successful references to the command line
> command "net accounts" for adjusting the password expiration, but am
> unable
> to adjust lockout settings.
>
> Additionally, I have found no useful references in the Group Policy
> spreadsheet published by MS
> (http://www.microsoft.com/downloads/d...DisplayLang=en)
>
> Is there a way to do this from the command line?
>
> Thoughts? Suggestions?
Ronnie Vernon MVP
Guest
 
Posts: n/a
Reply With Quote  
Old 11-11-2007, 08:09 PM   #4 (permalink)
Default Re: Home Premium Lockout Threshold and Lockout Duration

Hello,

There is a way to do this from the command line. It is a bit obtuse, but it
works .

OBLIGATORY WARNING: Improperly changing these settings could render your
computer inoperable.

Step 1 - Create the settings file

- Open notepad
- Copy and paste the following text (between the lines - don't include the
lines) into notepad

---------------------
[Version]
signature="$CHICAGO$"
Revision=1
[System Access]
LockoutBadCount = 0
ResetLockoutCount = 0
LockoutDuration = 0
----------------------

- Change the settings to what you want. Here's a quick and dirty explanation
of the settings:

LockoutBadCount is the account lockout threshold. It is the number of
attempts a user has before their account is locked out. A value of 0 means
unlimited.

LockoutDuration is the account lockout duration. It is the number of minutes
that the account is locked out once a lockout is triggered. If you set
LockoutBadCount, this must have a meaningful value. A value of 0 means that
the account is locked out until an administrator resets it.

ResetLockoutCount is the "Reset account lockout counter after" setting. It
is the amount of time in minutes until the lockout count resets itself to 0
for a specific user after an unsuccessful login attempt. If you set
LockoutBadCount, this must have a meaningful value (between 1 and 99999).

It is recommended that LockoutDuration and ResetLockoutCount have the same
value (unless LockoutDuration is 0).

- In notepad, save the file to your desktop with a filename of sec.txt

Step 2 - Load the settings

- Click start
- Type: cmd.exe
- Right-click cmd.exe when it appears under the "programs" heading
- click Run As Administrator
- In the command prompt, type the following commands exactly as they appear:

cd /d %userprofile%\desktop
secedit /configure /db sec.db /cfg sec.txt /areas securitypolicy

- You should receive a message saying the task has completed successfully
- You can now delete the sec.db and sec.txt files on your desktop

That should do it.

BONUS TIP: You can see all the security settings as they are currently
configured on your computer by issuing this command in an elevated command
prompt:

secedit /export /cfg sec.txt /areas securitypolicy

This will create a settings file named sec.txt with your security policy
settings. You can then load this file into the computer with this command:

secedit /configure /db sec.db /cfg sec.txt /areas securitypolicy

Note again the warning about messing up your computer by changing these
settings.

--
- JB
Microsoft MVP Windows Shell/User

Jimmy Brush
Guest
 
Posts: n/a
Reply With Quote  
Old 11-11-2007, 08:17 PM   #5 (permalink)
Default Re: Home Premium Lockout Threshold and Lockout Duration

Hello Ronnie,

These commands still work. (Of course, I figure this out after finding
another more complicated method of changing these values...)

Commands are:

net accounts /lockoutthreshold:X
net accounts /lockoutwindow:X
net accounts /lockoutduration:X

Where X is a number that is applicable for the policy setting.


--
- JB
Microsoft MVP Windows Shell/User

Jimmy Brush
Guest
 
Posts: n/a
Reply With Quote  
Old 11-11-2007, 08:18 PM   #6 (permalink)
Default Re: Home Premium Lockout Threshold and Lockout Duration

Actually,

Ronnie's method still works in Vista.

From an elevated command prompt:

net accounts /lockoutthreshold:X
net accounts /lockoutwindow:X
net accounts /lockoutduration:X

Where X is a number that is applicable for the policy setting.

--
- JB
Microsoft MVP Windows Shell/User
Jimmy Brush
Guest
 
Posts: n/a
Reply With Quote  
Old 11-12-2007, 12:46 AM   #7 (permalink)
Default Re: Home Premium Lockout Threshold and Lockout Duration

Hi Jimmy

Thanks, I see now that I was using an invalid number when I tested this.

BTW, good to see you posting here again.

--

Ronnie Vernon
Microsoft MVP
Windows Shell/User


"Jimmy Brush" <jb@mvps.org> wrote in message
news:912172CB-A36E-409D-A88C-4EB96330379B@microsoft.com...
Quote:
> Hello Ronnie,
>
> These commands still work. (Of course, I figure this out after finding
> another more complicated method of changing these values...)
>
> Commands are:
>
> net accounts /lockoutthreshold:X
> net accounts /lockoutwindow:X
> net accounts /lockoutduration:X
>
> Where X is a number that is applicable for the policy setting.
>
>
> --
> - JB
> Microsoft MVP Windows Shell/User
Ronnie Vernon MVP
Guest
 
Posts: n/a
Reply With Quote  
Old 11-12-2007, 01:06 AM   #8 (permalink)
Default Re: Home Premium Lockout Threshold and Lockout Duration

Thanks, it's good to be back

- JB

"Ronnie Vernon MVP" <rv@invalid.org> wrote in message
news:057DDF80-47DF-4851-AE4F-75692A8932E8@microsoft.com...
Quote:
> Hi Jimmy
>
> Thanks, I see now that I was using an invalid number when I tested this.
>
>
> BTW, good to see you posting here again.
>
> --
>
> Ronnie Vernon
> Microsoft MVP
> Windows Shell/User
>
>
> "Jimmy Brush" <jb@mvps.org> wrote in message
> news:912172CB-A36E-409D-A88C-4EB96330379B@microsoft.com...
Quote:
>> Hello Ronnie,
>>
>> These commands still work. (Of course, I figure this out after finding
>> another more complicated method of changing these values...)
>>
>> Commands are:
>>
>> net accounts /lockoutthreshold:X
>> net accounts /lockoutwindow:X
>> net accounts /lockoutduration:X
>>
>> Where X is a number that is applicable for the policy setting.
>>
>>
>> --
>> - JB
>> Microsoft MVP Windows Shell/User
>
Jimmy Brush
Guest
 
Posts: n/a
Reply With Quote  
Reply

Tags
None

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
USB Lockout Jeff Windows Vista Hardware & Devices 0 10-04-2006 05:38 AM
MSDN lockout? Puppy Breath Windows Vista 6 04-29-2006 04:52 PM
Lockout prbbelm under XP Kel Windows XP Configuration & Management 1 05-09-2005 09:55 PM
Lockout Tom Windows XP Work Remotely 8 10-15-2003 05:27 AM
Password lockout. larry Windows XP Basics 4 07-04-2003 10:57 PM


All times are GMT. The time now is 12:15 PM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright © 2005 - 2007 RealGeek.com. All rights reserved.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90