Active Directory User Operations Checklist
User and Group Management
Get-ADUser -Filter * -Property DisplayName, EmailAddress, Title, Department | Select-Object DisplayName, EmailAddress, Title, Department | Export-Csv -Path "C:\ADUsers.csv" -NoTypeInformation
Active Directory User Operations Checklist
User and Group Management
Create a new AD user #61
Add user to a group #62
Remove user from a group #63
Delete a user #64
Export all Active Directory users to a CSV file. #65