Skip to content

steffanv/RemoveDuplicatesNOW

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RemoveDuplicatesNOW

Remove Duplicates in your Outlook Calendar (NOW!).

You imported holidays or birthdays by accident twice? No easy solution is available?

Before: before

After: after

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. outlook

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.

About

Remove Duplicates in your Outlook Calendar.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages