Office365通过PowerShell将1封电子邮件从1个文件夹移动到另一个文件夹?

时间:2018-01-29 09:30:24

标签: powershell

我想知道是否可以将1封电子邮件的1个文件夹移动到同一个电子邮件中的另一个文件夹,使用powershell使用powershell?

真的找不到任何关于将1封电子邮件转移到另一个地方的事情,我唯一能找到的就是按主题移动。

希望有人能帮助我。

度过美好的一天:)

我到目前为止的代码

按主题移动:

$SourceUserName="name"; 
$TargetUserName="name"; 
$TargetFolderName="foldername"; 
$SubjectName ="subject name"; 
Search-Mailbox $SourceUserName -SearchQuery "$SubjectName" -TargetMailbox "$TargetUserName" -TargetFolder "$TargetFolderName" -DeleteContent -Confirm:$false 

按批量移动,整个电子邮件

Set-ExecutionPolicy Unrestricted -Force
$O365CREDS = Get-Credential
$ONPREMCREDS = Get-Credential
$SESSION = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $O365CREDS -Authentication Basic -AllowRedirection
Import-PSSession $SESSION
Connect-MsolService -Credential $O365CREDS
$MAILBOXLIST = Import-CSV "C:\list.csv"
foreach ($line in $MAILBOXLIST) {New-MoveRequest -Identity $line.alias -Remote -RemoteHostName hybridserver.domainname.com -TargetDeliveryDomain domainname.mail.onmicrosoft.com -RemoteCredential $ONPREMCREDS -BadItemLimit 1000}
Get-MoveRequest | Get-MoveRequestStatistics
Get-MoveRequest | Remove-MoveRequest

但是没有一个代码可以将1封电子邮件移动到文件夹中。

0 个答案:

没有答案