search
Categories
Sponsors
VirtualMetric Hyper-V Monitoring, Hyper-V Reporting
Archive
Blogroll

Badges
MCSE
Community

Cozumpark Bilisim Portali
Posted in Windows Server | No Comment | 6,181 views | 09/11/2009 23:19

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:

gpupdate /force
net user Administrator /passwordreq:yes

Bu işlemler sonrasında AD kurulabiliyor hale gelecektir. Kolay gelsin.