多奇 IT 部落格

記錄著多奇數位在工作中對資訊技術的心得筆記

之前客戶遇到了一個奇怪的問題,在Outlook 2010設定的郵件規則都無法正常生效,並會出現下圖的錯誤。

clip_image002

後來才發現原來每個使用者的郵件規則是有大小限制的預設是64KB,最後透過指令調整的方式將大小擴大為256KB後才處理掉這個問題。

下面就來分享檢查規則容量大小以及調整的方式。

1. 開啟Powershell,輸入 $LiveCred = Get-Credential 會要求登入Office 365管理者帳號。

clip_image004

2. 登入後輸入: $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection

開始使用雲端架構服務的PowerShell。

clip_image006

3. 輸入: Import-PSSession $Session ,載入PowerShell指令。

clip_image008

4. 輸入:get-mailbox UserName | fl rulesquota,可以看到目前使用者帳號的郵件規則容量大小。

clip_image009

5. 輸入:Set-mailbox –Identity UserName –rulesquota 256KB,這樣就可以將使用者的郵件規則擴大到256KB。

clip_image010

PS:詢問過微軟方面,目前最大容量只有256KB。

參考文件

 

== 要試用 Office 365 的朋友,請點 Office 365 Enterprise E3 試用版 – 30 天期 進行試用申請。 ==

留言與評論


本篇文章的留言功能已關閉!