Forum Discussion
BennettFrost
Apr 27, 2025Iron Contributor
User account password never expire in Win 11 Home
Please are there commands for Command Prompt (or Power Shell) to set the password property of a local account to never expire that are being supported in Win 11 Home? By searching I only found comman...
NicholasWilliams
Mar 22, 2026Bronze Contributor
Open a Command Prompt as an administrator and run the command `wmic UserAccount where “Name=‘username’” set PasswordExpires=false` to set the password to never expire.
- KapilAryaMar 22, 2026MVP
The command prompt method shared by NicholasWilliams is excellent and most feasible solution for this case.