How to generate and export Active Directory (AD) user reports that contain the display names of their managers

Description:

This script is used to get CSV file which contain all the user in the On-Prem AD and their Manager

Script:

import-module activedirectory 

Get-ADUser -Filter * -Properties *| Select name, @{n='Manager';e={(Get-ADUser $_.manager).name}} | export-csv "c:\export.csv" -NoTypeInformation

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us