共用方式為


對受管理的資料夾使用 Exchange 管理命令介面指令碼

 

適用版本: Exchange Server 2010 SP2, Exchange Server 2010 SP3

上次修改主題的時間: 2011-04-28

您可使用命令介面指令程式與指令碼來管理 MicrosoftExchange Server 2010 中的通訊記錄管理 (MRM)。建議您先在非實際生產環境中測試 MRM 功能。當您準備好在實際生產環境中實作 MRM 時,可以在實際生產環境中使用相同的指令碼,以正確且一致地複寫受管理的資料夾、受管理的內容設定,以及受管理的資料夾信箱原則。

注意事項附註:
受管理的自訂資料夾是 MRM 的高階功能。每個擁有受管理的自訂資料夾之信箱,都需要具備 Exchange Server 企業用戶端存取使用權 (CAL)。具有原則的信箱若包含受管理的自訂資料夾,就需要具備 Exchange Server 企業 CAL。

使用命令介面來管理受管理的資料夾

您必須已獲指派權限,才能執行此程序。若要查看您需要的權限,請參閱郵件原則及符合性權限主題中的「郵件記錄管理」項目。

  1. 在文字編輯器中輸入命令介面命令以建立指令碼,如下列範例指令碼所示。

  2. 以 ps1 副檔名儲存指令碼的文字檔 (例如,MRM_Sample_Script.ps1)。

  3. 在命令介面的命令提示字元下,輸入指令碼的路徑和檔案名稱 (例如,C:\Scripts\MRM_Sample_Script.ps1,若是工作目錄中的指令碼則為 .\MRM_Sample_Script.ps1)。

以下是 MRM 的範例指令碼。如需所執行動作的說明,請參閱指令碼內的註解。

# MRM_Sample_Script.ps1

# This script demonstrates the fundamentals of performing messaging records management by running scripts in the Exchange Management Shell.

# Create a new managed custom folder.
New-ManagedFolder -Name "Important E-mail" -FolderName "Business Folder A" 

# Create a variable, \"$age,\" to use in the next command.
$age = New-TimeSpan -Day 30

# Create managed content settings for the new managed custom folder that delete items after 30 days.
New-ManagedContentSettings -Name "Retention settings for Business Folder A" -FolderName "Business Folder A" -MessageClass VoiceMail -RetentionEnabled:$true -AgeLimitForRetention $Age -RetentionAction PermanentlyDelete

# Create a managed folder mailbox policy.
New-ManagedFolderMailboxPolicy -Name "Business Folder A" -ManagedFolderLinks "Important E-mail"

# Apply the managed folder mailbox policy to a mailbox.
Set-Mailbox -Identity Administrator -ManagedFolderMailboxPolicy "Business Folder A"

# Schedule the Managed Folder Assistant to run the entire week.
$ServerName= cmd /c echo %computername%
Set-MailboxServer -ID $ServerName -ManagedFolderAssistantSchedule "Sun.12:00-Sun.11:00"

# Start the Managed Folder Assistant. 
Start-ManagedFolderAssistant

 © 2010 Microsoft Corporation. 著作權所有,並保留一切權利。