在Office 365 添加就地保留用戶郵箱
阿新 • • 發佈:2018-03-20
服務器 Exchange 基於客戶需求,要求將用戶批量添加到Office 365中的現有就地保留。如您所了解的,我們可以通過Exchange在線圖形用戶GUI界面完成,也可以通過PowerShell完成。
要將用戶批量添加到Office 365中的現有就地保留,您需要連接Exchange online PowerShell
$UserCred= Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionURI https://outlook.office365.com/powershell-liveid/ -Credential $UserCred -Authentication Basic -AllowRedirection Import-PSSession $Session
Exchange Online PowerShell連接後。下一步是將郵箱添加到我們的郵箱搜索
#1列出現有郵箱搜索中的所有郵箱
$InPlaceHoldMBX = (Get-MailboxSearch “InPlaceHold”).SourceMailboxes
#2將其他郵箱添加到現有列表中。您可以使用UPN,電子郵件或任何其他用戶標識符來唯一標識用戶。
$InPlaceHoldMBX += “user Identifier”
#3將用戶添加到現有的InPlace 列表
Set-MailboxSearch “InPlaceHold” -SourceMailboxes $InPlaceHoldMBX -InPlaceHoldEnabled $true
將用戶添加到就地保留後,您可以導出添加到就地保留的用戶列表
PS cmdlet “(Get-MailboxSearch “InPlaceHold”).SourceMailboxes“
將郵箱添加到就地保留後關閉PowerShell連接
Get-PSSession | Remove-PSSession
在Office 365 添加就地保留用戶郵箱