Existe uma maneira de renomear facilmente os títulos dos itens do Calendário do Outlook?
O script a seguir removerá o prefixo COPY:
dos títulos de itens de calendário.
É um exercício trivial modificar isso para suas necessidades.
Use VBA to remove Copy:
Below is a VBA script you can use to cycle through every appointment item in the selected calendar and remove the Copy: prefix. Works in Outlook 2007 and 2010. (Also works in older versions, if you need to mass-edit the subject line.)
Sub RemoveCopy() Dim myolApp As Outlook.Application Dim calendar As MAPIFolder Dim aItem As Object Set myolApp = CreateObject("Outlook.Application") Set calendar = myolApp.ActiveExplorer.CurrentFolder Dim iItemsUpdated As Integer Dim strTemp As String iItemsUpdated = 0 For Each aItem In calendar.Items If Mid(aItem.Subject, 1, 6) = "Copy: " Then strTemp = Mid(aItem.Subject, 7, Len(aItem.Subject) - 6) aItem.Subject = strTemp iItemsUpdated = iItemsUpdated + 1 End If aItem.Save Next aItem MsgBox iItemsUpdated & " of " & calendar.Items.Count & " Meetings Updated" End Sub