我想在运行获取电子邮件的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
答案 0 :(得分:1)
这就是你这样做的方式:
$ mapi.SendAndReceive($假)
另外,对我来说,我需要在SendAndReceive之前使用Logon方法:
$ mapi.logon()