如何使用 Powershell 监控特定收件箱中的命令?

发布于 2024-09-16 00:25:13 字数 100 浏览 7 评论 0原文

我想设置一个功能,让 powershell 脚本访问特定邮箱中的电子邮件。然后,它会解析每封电子邮件以与一组特定的用户进行对话。作为一个可以通过电子邮件进行交互的系统。这怎么可能实现呢?

I would like to set up functionality where a powershell script would access the email in a specific mailbox. It would then parse each email to engage in dialog with a specific set of users. To serve as a system that could be interacted with through email. How could this be pulled off?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命比纸薄 2024-09-23 00:25:13

如果您想从安装了 Outlook 的客户端运行此程序,那么以下是一个很好的起点(不需要 EWS)。

$olFolderInbox = 6
$outlook = new-object -com outlook.application;
$mapi = $outlook.GetNameSpace("MAPI");
$inbox = $mapi.GetDefaultFolder($olFolderInbox)
$inbox | gm

If you want to run this from a client with Outlook installed then the following is a good starting point (EWS is not required).

$olFolderInbox = 6
$outlook = new-object -com outlook.application;
$mapi = $outlook.GetNameSpace("MAPI");
$inbox = $mapi.GetDefaultFolder($olFolderInbox)
$inbox | gm
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文