要将用户批量添加到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
原文地址:http://blog.51cto.com/djclouds/2088832