This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
networking:windows:active_directory:ad_password_complexity [2013/07/02 12:52] 127.0.0.1 external edit |
networking:windows:active_directory:ad_password_complexity [2014/03/18 13:15] (current) gcooper |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Active Directory Password Management ====== | ||
+ | |||
===== Password Complexity for Windows Server 2008 R2 ===== | ===== Password Complexity for Windows Server 2008 R2 ===== | ||
- | ==== Domain Policy ==== | + | ==== Edit Domain Policy ==== |
- | - Run '' | + | - Run '' |
- Expand **Forest** | - Expand **Forest** | ||
- Expand **Domains** | - Expand **Domains** | ||
- Expand your **Domain** | - Expand your **Domain** | ||
- Expand **Group Policy Objects** | - Expand **Group Policy Objects** | ||
- | - Right-click **Default Domain Policy** and choose **Edit** | + | - Right-click **Default Domain Policy** |
- Select the **Settings** tab | - Select the **Settings** tab | ||
- Then browse to **Computer Configurations -> Policies -> Windows Settings -> Security Settings -> Account Policies -> Password Policy** | - Then browse to **Computer Configurations -> Policies -> Windows Settings -> Security Settings -> Account Policies -> Password Policy** | ||
- Edit the settings or disable **Password Complexity** | - Edit the settings or disable **Password Complexity** | ||
+ | ===== Testing Authentication ===== | ||
+ | |||
+ | Here is a quick and simple function which authenticates a user to AD at the PowerShell command line: | ||
+ | |||
+ | < | ||
+ | Function Test-ADAuthentication { | ||
+ | param($username, | ||
+ | (new-object directoryservices.directoryentry "", | ||
+ | } | ||
+ | |||
+ | PS C:\> Test-ADAuthentication " | ||
+ | True | ||
+ | </ | ||
+ | |||
+ | ===== Tools ===== | ||
+ | |||
+ | http:// | ||
+ | |||
+ | http:// | ||
+ | |||
+ | Forums: http:// | ||
+ | Tools from WiseSoft help when manipulating multiple users, as during a new installation or cutover. |