我想从 PowerShell 将 Windows Mail 应用程序打开到特定帐户中的特定文件夹。这可能吗?
我从这篇文章中了解到可以使用自定义 URI 启动邮件程序ms-unistore-email:
。
我可以使用以下 PowerShell 行成功启动电子邮件应用程序:
Start-Process ms-unistore-email:
当然,这只是打开第一个帐户的收件箱(就像从 Windows 开始菜单启动 Windows Mail 应用程序一样)。有没有办法打开不同帐户的收件箱?甚至是电子邮件帐户中的任意文件夹?
我尝试了以下方法,但它似乎不起作用。
# This does NOT work to open the inbox of "myemail@gmail.com"
Start-Process ms-unistore-email:[myemail@gmail.com]
编辑:
这篇文章似乎表明这是不可能的,但来自 3 多年前。这个对吗?