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