Hi,
please help me with the command line to get the report For all users in the single OU to get the below data in excel
DisplayName, Email address, SendofBehalfOf access To other mailbox id or generic id.Technology Tips and News
Hi,
please help me with the command line to get the report For all users in the single OU to get the below data in excel
DisplayName, Email address, SendofBehalfOf access To other mailbox id or generic id.Here you go
Get-ADOrganizationalUnit -Filter * -searchbase "specify ou" -Properties * | select name,email address | Export-Csv c:\ExportOU.csvHi,
Have you checked the suggestion Sathish provided?
Is there any update with your issue?
Best regards,
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com
Please try this as well which will give to all the users output in csv
Get-ADOrganizationalUnit -Filter * -searchbase "Dubai Smart Government" -Properties * company , department | select name,email address , company , department| Export-Csv c:\ExportOU.csv