Advertisement
wertex15

Untitled

Sep 6th, 2023 (edited)
1,451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Коннектимся
  2. Connect-ExchangeOnline -UserPrincipalName ***
  3.  
  4. Вытаскиваем ящики
  5. Get-EXOMailbox  -ResultSize 10 | select Alias | Export-CSV "C:\6.txt" -Encoding utf8 -UseQuotes Never -Delimiter ";"
  6.  
  7. Получаем:
  8. 000881
  9. 001223
  10. 22619756
  11. 23726485
  12. 0110906
  13. 0121172
  14. 0130316
  15. 0140640
  16. 0140747
  17. 0181436
  18.  
  19. Собираем размер ящика и дату
  20. Get-Content C:\6.txt | where {($_.Trim()).length -gt 0} | foreach {Get-EXOMailboxStatistics -Identity $_.Trim() -PropertySets all | select DisplayName,TotalItemSize,LastUserActionTime} | Export-CSV "C:\61.txt" -Encoding utf8 -UseQuotes Never -Delimiter ";"
  21.  
  22. Получаем
  23. Коротаев Иван Игоревич;23.4 MB (24,534,402 bytes);28.03.2020 13:44:14
  24. Мария Николаевна Федорова;9.304 MB (9,755,864 bytes);01.12.2020 16:30:13
  25. Юлдашев Шерзод Фархадович;653.8 KB (669,469 bytes);16.11.2022 12:56:46
  26.  
  27.  
  28. Сцепляем ящики и фио + размер + даты
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement