Exchange 연결 끊어진 사서함 삭제
예시>
1. 사용중지된 계정의 끊어진 사서함 삭제
Get-MailboxStatistics -Database "Mailbox이름" | Where-Object {$_.DisconnectReason -eq “Disabled”} | ForEach {Remove-StoreMailbox -Database $_.database -identity $_.mailboxguid -MailboxState Disabled -confirm:$false}
2. 삭제된 계정의 끊어진 사서함 삭제
Get-MailboxStatistics -Database "Mailbox이름" | Where-Object {$_.DisconnectReason -eq “Softdeleted”} | ForEach {Remove-StoreMailbox -Database $_.database -identity $_.mailboxguid -MailboxState Softdeleted -confirm:$false}
삭제 시, 위와 같은 오류를 보이면 아래 방법으로 삭제(자동 승인)
$mbs = Get-MailboxStatistics -Database "Mailbox이름" | where {$_.DisconnectReason -eq "SoftDeleted"}
foreach($mb in $mbs)
{
Remove-StoreMailbox -Database $mb.database -Identity $mb.mailboxguid -MailboxState SoftDeleted -Confirm:$false
}
'로그 저장소 :) > Active.Directory' 카테고리의 다른 글
Exchange 점검사항 (0) | 2015.12.15 |
---|---|
Exchange Server 정기점검 체크리스트 (0) | 2015.05.28 |
Recommended configurations for Exchange (0) | 2015.03.31 |
메일서버 이전 - 사용자 사서함 이동 (0) | 2014.09.21 |
어바웃 Mail-Box (0) | 2014.08.25 |