Yes - this is possible.
To set the minimum password length in Active Directory (AD) to 14 characters, you can use Group Policy. Follow these steps:
Open Group Policy Management: On a domain controller or a computer with Remote Server Administration Tools (RSAT) installed, open the Group Policy Management Console (GPMC).
Select the Default Domain Policy Group Policy Object (GPO)
Edit the Group Policy Object: Right-click on the GPO and select "Edit".
Navigate to the Password Policy Settings: In the Group Policy Management Editor, navigate to the following path: Computer Configuration -> Policies -> Windows Settings -> Security Settings -> Account Policies -> Password Policy
Set Minimum Password Length: Double-click on "Minimum password length" policy setting.
Configure the Policy: In the properties window, set the minimum password length to 14
.
Apply the Changes: Click "OK" to save the changes.
Link the GPO: Close the Group Policy Management Editor. Ensure that the GPO is linked to the appropriate OU where user accounts reside.
Force Group Policy Update: You can wait for the Group Policy to apply automatically or force a Group Policy update using the gpupdate /force
command on the client computers or Invoke-GPUpdate
cmdlet for remote computers.
After applying these steps, users will be required to set passwords with a minimum length of 14 characters according to the password policy defined in the Group Policy Object.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin