With this script you will be able to find an email address in the forest and identify the Active Directory object linked on. (Get-ADobject -Filter {(mail -eq “johndoe@mail.com”)} -Properties sn,givenname,mail,displayname -SearchBase “dc=domain,dc=root” -Server “dc01.domain.root:3268” | ` Select-Object displayname,sn,givenname,mail) References Get-ADObject
Display port count per IP address
Cleanup data when the user account no longer exists
Copy the group members to another group
This script copy the group members to another group. You have the choice between Microsoft Active Directory cmdlet or the Quest Active Directory cmdlet. Script (with Microsoft Active Directory module loaded : import-module activedirectory) : $Source_Group = “CN=SourceGroupName,OU=Groups,DC=domain,DC=com” $Destination_Group =