Linking phone to PC creates duplicate contacts

Anonymous
2023-02-22T04:19:01+00:00

Why does linking my android phone to my PC create duplicate contacts?

Windows for home | Windows 11 | Connect Phone and PC

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

60 answers

Sort by: Newest
  1. Anonymous
    2023-04-17T07:59:29+00:00

    I've erased over 13000 contact from outlook.

    After this hours work I was happy.....

    But there is an other problem now. The phone application have also a ot of contact duplicate probalbly the same as in Outlook. In this app all this contacts are marqued as Skype contacts.

    I can only erase one by one... need 4 click for one... horrible.

    The Microsoft support wasn't able to find a solution....

    He wanted to reinstall the mobile connect app... I do that and after a short time I had a lot of double entries I stop the software and erase over 200 duplicated entries in Outlook

    I'm frustrated.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2023-04-17T07:45:09+00:00

    Could you post a link to the Stackoverflow page where you found that script? I'd like to give it a try myself. Thanks.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2023-04-10T19:58:57+00:00

    I've reached out to the Phone Link team on Twitter with a link to this issue and got a response that they're looking into it.

    https://twitter.com/RafaelGoodman/status/1644334312626479104

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  4. Anonymous
    2023-04-10T12:05:48+00:00

    Workaround to remove duplicates using VBA in Outlook.

    Sub DeleteDuplicateContactsInSelectedFolder()
    Dim i As Long
    Dim n As Long
    Dim Message As String
    Dim Items As Object
    Dim AppOL As Object
    Dim NS As Object
    Dim Folder As Object
    Set Items = CreateObject("Scripting.Dictionary")
    Set AppOL = CreateObject("Outlook.Application")
    Set NS = AppOL.GetNamespace("MAPI")
    Set Folder = NS.PickFolder
    'Set Folder = NS.Folders("*** Email address is removed for privacy ***").Folders("Contacts").Folders("Galaxy S23 Ultra (contacts synced by Link to Windows)")
    If Folder.DefaultItemType <> 2 Then Exit Sub
    n = Folder.Items.Count
    Dim duplicates As Integer
    duplicates = 0
    For i = n To 1 Step -1
        On Error Resume Next
        Contact = Folder.Items(i).FirstName
            If Items.Exists(Contact) = True Then
            Folder.Items(i).Delete
            duplicates = duplicates + 1
        Else
            Items.Add Contact, True
    End If
    Next i
    If duplicates > 0 Then
    MsgBox "Removed contacts number: " & duplicates, vbOKOnly
    End If
    ExitSub:
    Set Folder = Nothing
    Set NS = Nothing
    Set AppOL = Nothing
    End Sub
    

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2023-04-09T21:42:27+00:00

    Same here. Over 20k contacts. Contacted Outlook Android app support who eventually told me it's nothing to do with them and I had to contact Outlook.com support. Contacted Outlook.com support who told me I needed to contact Outlook.com support...

    Since the issue I have deleted the link to windows app on both phone and PC. Deleted all contacts from my MS account in the Google Contacts App. This deletion has carried over to my main Outlook however they remain in Outlook.com and the new Outlook (pre) app on PC.

    I've complained to the support and feedback that this issue could be easily resolved if we could just delete our own contacts and not be restricted to 10 at a time. I've had the unfortunate experience that these contacts didn't flow to my Outlook where other seem to have been able to bulk delete.

    Was this answer helpful?

    0 comments No comments