更新Outlook收件箱文件夹

时间:2016-11-13 22:15:22

标签: powershell outlook powershell-v3.0

我想在运行获取电子邮件的PowerShell脚本之前更新(同步)收件箱文件夹(发送/接收),但我不知道如何。有没有办法从powershell做到这一点?

$matchString= "support@blabla.com";
$olFolderInbox = 6
$outlook = New-Object -COM Outlook.Application;
$mapi = $outlook.GetNameSpace("MAPI");
$inbox = $mapi.GetDefaultFolder($olFolderInbox)

$inbox.Items | where { $_.SenderEmailAddress -match $matchString } |
    Select SenderEmailAddress,to,subject |
    Format-Table -AutoSize 

1 个答案:

答案 0 :(得分:1)

这就是你这样做的方式:

  

$ mapi.SendAndReceive($假)

另外,对我来说,我需要在SendAndReceive之前使用Logon方法:

  

$ mapi.logon()

Check the link for more reference