Merhaba
Bugün bir müşterinin Active Directory yapısını kurmaya çalışırken aşağıdaki hatayı aldım
The local Administrator account becomes the domain Administrator account when you create a new domain. The new domain cannot be created because the local Administrator account password does not meet requirements. Currently, a password is not required for the local Administrator account. We recommend that you use the net user command -line tool with the /passwordreg:yes option to require a password for this account before you create the new domain; otherwise, a password will not be required for the domain Administrator account.
İlk defa gördüğüm bir hataydı bu. Nedeninin, otomatik kurulum sırasında, password policy’nin sıfırlanmış olduğunu farkettim. Böyle bir durumda, Password policy’i, aşağıdaki gibi ayarlamanız, problemi çözecektir.
* 24 passwords remembered
* 42 days max password age
* 1 day min password age
* 7 characters Minimum password length
* Password must meet complexity requirements
Sonrasında command prompt üzerinden aşağıdaki komutları çalıştırın:
net user administrator <parola> /passwordreq:yes
gpupdate /force
Bu işlemler sonrasında AD kurulabiliyor hale gelecektir.
Merhaba bu password policy ayarlarını nerden yapıyoruz acaba?