Articles on: Scripts

Description:

Articles on: Scripts

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

Updated on: 31/01/2023

Updated on: 01/07/2024

Was this article helpful?

Share your feedback

Cancel

Thank you!