Active Directory üzerinde belli bir OU içerisindeki User Account Listesi için, Active Directory Module for Windows Powershell üzerinde aşağıdaki powershell komutu çalıştırılabilinir.
1 2 | Get-ADUser -Filter * -SearchBase "OU=IT,OU=ORTAK,DC=atasoylu,DC=com" -Properties * | Export-Csv "c:\users\melih.atasoylu\desktop\IT.csv" -Encoding Unicode |
1 2 3 | Get-ADUser -Filter * -SearchBase "OU=ORTAK,DC=atasoylu,DC=com" -Prop displayName, employeeExpenseCenter | Select-Object displayName,employeeExpenseCenter > c:\users\melih.atasoylu\desktop\users.csv |