我喜欢在取消会议后跟踪会议。它可以帮助我回顾各种主题的活动,有时还可以解释为什么我没有去参加你的会议。(EG,“同时召开了一次定期会议,但主席已经取消了会议并删除了整个系列,而不仅仅是未来的系列。”)
我尝试使用slipstick.com上发布的脚本,因为一些不同的搜索结果让我回到同一篇文章。但是,它对我来说不太适合。有没有更简单的方法?
这是该脚本的副本:
Sub CopyMeetingtoAppointment(oRequest As MeetingItem)
If oRequest.MessageClass <> "IPM.Schedule.Meeting.Canceled" Then
Exit Sub
End If
Dim oAppt As AppointmentItem
Dim cAppt As AppointmentItem
Set cAppt = oRequest.GetAssociatedAppointment(True)
Set oAppt = Application.CreateItem(olAppointmentItem)
'I added (Rule) to the subject so I could see the rule was working.
oAppt.Subject = "(Rule) Canceled: " & cAppt.Subject
oAppt.Start = cAppt.Start
oAppt.Duration = cAppt.Duration
oAppt.Location = cAppt.Location
oAppt.Display
oAppt.Save
Set oAppt = Nothing
Set cAppt = Nothing
End Sub
你应该设置一个规则来配合它,我认为那部分是好的: