“Outlook 日历打印助手”的批量打印
我正在使用“Outlook日历打印助手”整理我的日常工作清单,然后每天早上打印出来,只是想知道打印工作是否可以通过某种批处理命令行自动完成?
I'm using "Outlook calendar printing assistant" to organize my daily work list, then print it out every morning, just wondering if the print job can be done automatically through some kind of batch command line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用宏通过自动化在外部编写 Outlook 脚本,也可以构建一个插件。
您将收集当天的约会并使用
AppointmentItem.PrintOut()
。但在你这样做之前,你应该看看是否还没有一个插件可以满足你的需要。
Yes, you can either use macros to script Outlook externally via automation, or you could build an addin.
You would collect the appointments for the day and use
AppointmentItem.PrintOut()
.But before you go for that you should take a look to see if there isn't already an addin which does what you need.