您好,登錄后才能下訂單哦!
刷新已禁用用戶郵箱狀態
Get-MailboxStatistics -Database MXDB-NanQu | foreach {Update-StoreMailboxState -Database $_.Database -Identity $_.MailboxGuid -Confirm:$False}
Get-MailboxDatabase | Get-MailboxStatistics | Where { $_.DisplayName -eq "test" } | select -Property *
Update-StoreMailboxState -Database MB-FSLubao03 -Identity 0548a52c-6147-4f87-aea1-b42ac3029925
當用戶郵箱被禁用后,需要過一段時間該用戶郵箱才會出現在“已斷開連接”的郵箱中,默認EX最長刷新周期為24小時,通過下面命令可以強制刷新該用戶郵箱狀態,之后就可以在EXchange管理頁面重新鏈接該郵箱。
復制代碼
$displayname = "小明"
$w=get-MailboxDatabase | Get-MailboxStatistics | Where { $_.DisplayName -eq $displayname }
$w.database
$w.MailboxGuid
#先確認是否有重名
Update-StoreMailboxState -Database $w.database -Identity $w.MailboxGuid
get-MailboxDatabase | Get-MailboxStatistics | Where { $_.DisplayName -eq $displayname }|select disconnectdate,disconnectreason
復制代碼
#下面命令刷新該郵箱數據庫中所有用戶郵箱狀態
Get-MailboxStatistics -Database MXDB-NanQu | foreach {Update-StoreMailboxState -Database $_.Database -Identity $_.MailboxGuid -Confirm:$False}
#當用戶郵箱已被禁用,其disconnectreason為空,可以直接鏈接郵箱(未測試)
Get-MailboxDatabase -Identity "Databasename" | Get-MailboxStatistics | Where { $_.Displayname -eq "Display Name" } | Connect-Mailbox -User "Userid"
==============================================================
本示例將連接鏈接的郵箱。Identity 參數指定 Exchange 數據庫中斷開連接的郵箱。 LinkedMasterAccount 參數指定帳戶林中要將郵箱重新連接到的 Active Directory 用戶帳戶。 Alias 參數指定重新連接的郵箱的別名;別名是電子郵件地址中 @ 符號左側的部分。
Connect-Mailbox -Identity "Kai Axford" -Database MBXDB02 -LinkedDomainController FabrikamDC01 -LinkedMasterAccount kai.axford@fabrikam.com -Alias kaia
此示例將連接用戶郵箱。Identity 參數指定 Exchange 數據庫中斷開連接的郵箱。 User 參數指定要將郵箱重新連接到的 Active Directory 用戶帳戶。
Connect-Mailbox -Identity "Jeffrey Zeng" -Database MBXDB01 -User "Jeffrey Zeng"
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。