Remove Duplicates in your Outlook Calendar (NOW!).
You imported holidays or birthdays by accident twice? No easy solution is available?
What is my definition of a duplicate?
public bool Equals(AppointmentItem x, AppointmentItem y)
{
if (x.Subject == y.Subject && x.Start == y.Start && x.End == y.End && x.Body == y.Body)
{
return true;
}
else
{
return false;
}
}
Please refer to the Add-In ribbon.
The removed duplicates can be found in the Deleted Items folder.
The software is provided "as is" and you use it on your own risk. Please refer to the Apache License.