02. Microsoft/Exchange 2010
[Mailbox 사서함 용량 확인 방법]
검짱돌이
2013. 5. 8. 10:11
- Exchange 서버에 로그인 합니다.
- Exchange Management Shell을 실행합니다.
- 전체 사서함 용량 확인
Powershell 에서 다음과 같이 명령어를 입력합니다. (파일이 C:\aaa.txt로 저장됩니다.)
Get-Mailbox -ResultSize Unlimited | Get-MailboxStatistics | FT DisplayName, *Size | Out-File C:\aaa.txt
- aaa.txt 파일을 Excel에서 불러옵니다.
- 사서함 200MB이상 사용자 용량 확인
Powershell에서 다음과 같이 명령어를 입력합니다.
C:\Windows\system32>get-Mailbox -ResultSize Unlimited | Get-MailboxStatistics |? {$_.TotalItemSize -gt 200MB}| FT DisplayName, *size | Out-File C:\1223.txt