«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Tags more
Archives
Today
Total
12-28 16:41
관리 메뉴

+1-1+1-1+1-1+1-1...

사용자 메일 사서함 메시지 수, 용량 일괄 조회 본문

NT/Mail & Exchange

사용자 메일 사서함 메시지 수, 용량 일괄 조회

투명인간 2020. 12. 31. 22:09
728x90

시나리오) Active Directory LDAP Query를 이용한 메일 사서함 정보 (총 메시지 카운트, 사이즈) 수집하기

조회 조건

ojbectclass : user

user object > attribute > extensionattribute15 : 2020 or 2021 or 2030

OU Path: domain.local\Users

테스트 환경

AD + Exchange 2013 PowerShell

(Get-ADUser -LDAPFilter "(&(objectclass=user)(mail=*)(|(extensionattribute15=2020)(extensionattribute15=2021)(extensionattribute15=2030)))" -SearchScope Subtree -SearchBase "OU=Users,DC=domain,DC=local") ` |

%{Get-mailboxStatistics $_.Name} | Select-Object DisplayName, ItemCount, TotalItemSize
반응형