Das Löschen eines Kontakts aus allen Gruppen erfordert ein VBA-Makro.
Ein solches Makro wird ausführlich im Artikel Schnelles Entfernen eines bestimmten Kontakts aus allen Kontaktgruppen über Outlook VBA beschrieben .
In diesem Artikel wird beschrieben, wie ein solches Makro über die Registerkarte "Entwickler" / Visual Basic installiert wird und später über das Symbol "Ausführen" in der Symbolleiste ausgeführt werden kann.
Falls der Artikel später verschwindet, wird das VBA-Makro hier detailliert beschrieben:
Sub RemoveSpecificContactfromAllGroups() Dim strSpecificContact As String Dim objTempMail As Outlook.MailItem Dim objRecipient As Outlook.recipient Dim objContactsFolder As Outlook.Folder Dim objItem As Object Dim objContactGroup As Outlook.DistListItem Dim objContact As Outlook.ContactItem Dim nprompt As Integer strSpecificContact = InputBox("Input the fullname or email address of the specific contact to be removed from all contact groups:") Set objTempMail = Outlook.Application.CreateItem(olMailItem) Set objRecipient = objTempMail.Recipients.Add(strSpecificContact) objRecipient.Resolve If objRecipient.Resolved = True Then Set objContactsFolder = Outlook.Application.Session.GetDefaultFolder(olFolderContacts) For Each objItem In objContactsFolder.Items If TypeOf objItem Is DistListItem Then Set objContactGroup = objItem With objContactGroup .RemoveMember objRecipient .Body = "Contact Removed: " & strSpecificContact & vbTab & "(" & Now & ")" & .Body .Save End With End If Next nprompt = MsgBox("Removing Completes!", vbExclamation, "Remove Contact from Group") Else nprompt = MsgBox("This contact cannot be resolved!", vbExclamation, "Resolving Error") End If End Sub