Entries in the ‘Active Directory’ Category:

Active Directory Recovery Process – a flowchart

Sean Deuby, a directory services MVP has recently presented a article at www.windowsitpro.com to help people understand the AD recovery process. It is *not* a deep dive technical documentation, but more related to method we should use for recovery. He presented this in a nice Flow chart form for easy understanding. Click here to go [...]

Leave a Comment

Active Directory Maximum limits

Do you want to know how many user accounts/objects you can create in active directory? Want to know how many members a group can have? Want to know maximum number of GPOs a domain can have?. Microsoft AD documentation team has setup a technet page about these details along with some more valuable information. Link [...]

Leave a Comment

Get User password changed time using PowerShell

It is very simple…. Get-QADUser myuser | select PasswordLastSet If you want to know no. of days since the user changed his password, use below command ((get-date) – (Get-QADUser pamarths).PasswordLastSet).days Happy Learning.., Sitaram Pamarthi

Tags:

Leave a Comment