2012年11月28日 星期三

如何使用Exchange 2010 Management Shell匯出AD使用者帳號資料

如需要批次匯出大量的AD使用者帳號資訊,在Exchange 2010 環境中不需要額外開發客製化程式即可做到資料匯出功能,匯出方式說明如下:

1. 開啟Exchange Management Shell 視窗

2. 執行Management Shell 指令匯出使用者帳號資料

Get-user -ResultSize Unlimited | Select name,City,Company,CountryOrRegion,Department,Fax,Manager,MobilePhone,Office,Pager,Phone,PostalCode,StateOrProvince,StreetAddress,Title | export-csv c:\ADUserInfo.csv -Encoding "UTF8" -notypeinfo

補充說明:
  • 此指令範例會匯出使用者帳號的 name,City,Company,CountryOrRegion,Department...等欄位資料,如需匯出其他欄位資訊請自行調整。
  • 此指令範例會將匯出資料存到C:根目錄下的ADUserInfo.csv檔案,請視需求自行調整。
3. 使用Microsoft Excel開啟所匯出的 csv檔案即可檢視與維護匯出的資料。

如何修復損壞的Outlook資料檔(.pst)

當Outlook使用者遭遇資料檔(.pst)損毀而無法正常開啟的情況時,可以使用收件匣修復工具(Scanpst.exe)來嘗試修復Outlook資料檔案,相關詳細說明請參閱以下微軟網頁連結:
如何在 Outlook 中使用收件匣修復工具來修復 pst 檔案
修復 Outlook 資料檔 (.pst 與 .ost)

無法在Outlook安全寄件者清單中新增企業正在使用中的郵件網域名稱

假設目前企業Exchange 2010郵件系統所使用的電子郵件網域名稱為domain.com,當Outlook使用者以網域名稱格式@domain.com將此名稱加入到安全的寄件者清單中後, 如下圖:
Outlook使用者發現此網域名稱在安全的寄件者清單中會自動消失。

問題原因:
Exchange 2010 不允許Outlook使用者用網域名稱格式新增 accepted domains內的郵件網域名稱至安全的寄件者清單中,只能使用個別的電子郵件地址方式新增,相關詳細說明請參閱此連結:Accepted Domains, Safe Senders List and You

2012年10月23日 星期二

Outlook Local PST 檔案內的行事曆項目無法設定提醒功能

使用者反應當他使用 Outlook 2010 在個人Outlook資料檔案中建立行事曆項目時,無法正常設定提醒功能,會看到以下訊息:

問題原因:
Outlook 2007/2010 針對 PST 檔案有支援提醒功能,但是預設值是不啟用的。

解決方法:
開啟個人Outlook資料檔案屬性內容,在 一般 頁面中,核選 "在代辦事項列中,從此資料夾顯示提醒與工作(R)" 選項,如下圖:

設定完畢並重新啟動Outlook後,即可針對個人Outlook資料檔案中的行事曆項目設定提醒功能囉!!


2012年10月1日 星期一

Exchange 2010 Hub Transport Server 出現 Event ID 1021 警告訊息

Exchange 2010系統上線一段時間後,在信件流量巔峰期間時有收信緩慢現象發生,檢查後發現信件會卡在外部SMTP郵件主機上的郵件佇列中,而無法正常傳送給Exchange 2010 Hub Transport Server,在Exchange 2010 Hub Transport Server上會出現Event ID 1021 警告訊息


問題原因:
新建立的Receive Connector有啟用針對同一個來源伺服器的連線限制功能,預設值如下圖:

 

所以當信件流量過大而超過此連線限制時,Exchange 2010 Hub Transport Server就會拒絕外部SMTP郵件主機的連線要求,而導致信件無法正常傳送問題發生。

參數設定說明如下:
  • The MaxInboundConnection parameter specifies the maximum number of inbound connections that this Receive connector serves at the same time. The default value is 5000. The valid input range for this parameter is from 1 through 2147483647. To disable the inbound connection limit on a Receive connector, enter a value of unlimited.
  • The MaxInboundConnectionPerSource parameter specifies the maximum number of inbound connections that this Receive connector serves at the same time from a single IP address. The default value is 100. The valid input range for this parameter is from 1 through 10000. To disable the inbound connection per source limit on a Receive connector, enter a value of unlimited.
  • The MaxInboundConnectionPercentagePerSource parameter specifies the maximum number of connections that a Receive connector serves at the same time from a single IP address. The value is expressed as the percentage of available remaining connections on a Receive connector. Enter the value as an integer without the percent (%) character. The default value is 2 percent. The valid input range for this parameter is from 1 through 100.
解決方法:
可以使用Exchange 2010 Management Shell 指令來針對Receive Connector進行連線限制的調整,指令範例如下:

Set-ReceiveConnector -Identity "Server Name\Receive Connector Name" -MaxInboundConnectionPerSource unlimited -MaxInboundConnectionPercentagePerSource 100