在 MS Outlook 的公共日历中打开新的 appt

发布于 2024-09-26 06:14:56 字数 361 浏览 8 评论 0原文

我需要在 Microsoft Outlook 中自动提取一个新约会(我正在编写一个脚本,以便自动执行某些操作)。

我使用这个:

Run, "%programfiles%\Microsoft Office\Office12\Outlook.exe" /c ipm.appointment

它会显示我的个人展望日历。我需要它来为我的公共(企业环境)展望日历打开一个新的约会。我一生都无法弄清楚这一点。如果有人可以提供任何建议,我们将不胜感激。

我正在 AutoHotKey 中对此进行编码,因此如果有比使用 Run 命令更好的方法来做到这一点,我会洗耳恭听。

我很感激你能提供的任何建议。谢谢你!

I need to automatically pull up a new appointment in Microsoft Outlook (I'm making a script so automate some things).

I use this:

Run, "%programfiles%\Microsoft Office\Office12\Outlook.exe" /c ipm.appointment

which brings up my personal outlook calendar. I need it to open up a new appointment for my public (corporate environment) outlook calendar. I can not for the life of me figure this out. If anyone can offer any advice it would be appreciated.

I am coding this in AutoHotKey so if there is a better way to do this than using the Run command I'm all ears.

I appreciate any advice you can give. Thank You!

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

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

发布评论

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

评论(1

饮湿 2024-10-03 06:14:56

您应该添加配置文件命令行开关;

/profile profilename

所以你应该使用

Run, "%programfiles%\Microsoft Office\Office12\Outlook.exe" /c ipm.appointment /profile profilename

参见http://www.outlook-tips.net/howto/commandlines。嗯

You should add the profile command line switch;

/profile profilename

so you should use

Run, "%programfiles%\Microsoft Office\Office12\Outlook.exe" /c ipm.appointment /profile profilename

See http://www.outlook-tips.net/howto/commandlines.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文