Situatie
Cum sa exporti o lista cu toti userii din Serverul de Exchange folosind powershell.
Solutie
Pasi de urmat
Se tasteaza urmatoarea comanda :
Get-User -ResultSize Unlimited | Where { $_.RecipientType -eq ‘UserMailbox’ } | select firstname,lastname,samaccountname | export-csv c:MailEnabledUsers.csv
Leave A Comment?