Situatie
Avem un server cu Active Directory si dorim o lista cu toate conturile
Solutie
Intram pe serverul de Active Directory.
Deschidem o consola de Power Shell
Scriem comanda:
Get-ADUser -Properties * -filter * | select name, *samaccountname*,*canonnical*
Ne afiseaza lista cu useri in consola Power Shell
Get-ADUser -Properties * -filter * | select name, *samaccountname*,*canonnical* | Export-Csv c:export.csv
Ne exporta un fisier CSV in radacina partitiei C
Leave A Comment?