How to export AD Users and Computers (TÜRKÇE KARAKTERLERLE)
1 min readFeb 7, 2020
EXPORT COMPUTERS
Get-ADComputer -Filter * -Property * | Select-Object * | Export-CSV C:\ADcomputerslist.csv -NoTypeInformation -Encoding UTF8
EXPORT USER LİST
Get-ADUser -Filter * -Properties * | select-object * | export-csv “c:\usersfile.csv” -Encoding UTF8