How to Enable or Disable Password Expiration for a User in Windows 7
Information
Password expiration allows you to set a maximum password age in days (42 by default) of a user account before it expires and they must change their password.
By default, password expiration is disabled. This will show you how to enable or disable password expiration for a user in Windows 7.
Warning
You can only do this while logged in as an administrator.
EXAMPLE: Password Expiration NOTE:This is what a user will see at log on when the maximum password ageis reached and they are required to change their password.
OPTION ONE
Through Local Users and Groups Manager
NOTE:This option is only available for the Windows 7 Professional, Ultimate, and Enterprise editions.
2. In the left pane, click on Users, then double click on the name of the user account that you want to enable or disable password expiration for. (see screenshot below)
3. To Enable Password Expiration for this User Account
A) Uncheck the password never expires box, then click on OK. (see screenshot below)
4. To Disable Password Expiration for this User Account
A) Check the password never expires box, then click on OK. (see screenshot above) NOTE:If password never expires is grayed out, then this means that this user account as reached it's set maximum password age. You will need to either change the maximum password ageto more days so that it has not expired yet, or change the password for the user account.
5. Repeat steps 2 to 3/4 for any other user account that you want to enable or disable password expiration for.
6. When done, close the Local Users and Groups Manager.
OPTION TWO
Through a Elevated Command Prompt
NOTE:This option is available for all Windows 7 editions.
2. To Disable Password Expiration for a User Account
A) In the elevated command prompt, type the command below and press Enter. (see screenshot below) NOTE:Substitute username in the command below with the actual user account name that you want to disable password expiration for.
Code:
wmic path Win32_UserAccount where Name='username' set PasswordExpires=false
FOR EXAMPLE: I would type in this command exactly for a user account named Brink, and press enter.
Code:
wmic path Win32_UserAccount where Name='Brink' set PasswordExpires=false
B) Go to step 4.
3. To Enable Password Expiration for a User Account
A) In the elevated command prompt, type the command below and press Enter. (see screenshot below) NOTE:Substitute username in the command below with the actual user account name that you want to enable password expiration for.
Code:
wmic path Win32_UserAccount where Name='username' set PasswordExpires=true
FOR EXAMPLE: I would type in this command exactly for a user account named Brink, and press enter.
Code:
wmic path Win32_UserAccount where Name='Brink' set PasswordExpires=true