Just discovered there is a simple PowerShell Cmdlet for this, saves having to dig into Group Policy
$Domain = “domain.com”
Set-ADDefaultDomainPasswordPolicy –Identity $Domain -PasswordHistoryCount 0 –MinPasswordLength 0 -MinPasswordAge 0 -MaxPasswordAge 0 -LockoutObservationWindow 0 -LockoutThreshold 0 -ComplexityEnabled $False
Be First to Comment