Impossible de supprimer une réunion créé par un utilisateur supprimé

Guillaume BOURNIGAUD 0 Reputation points
2023-03-30T16:21:25.6766667+00:00

Bonjour,

Mon client souhaite supprimer une réunion périodique, rien de compliqué SAUF que l'utilisateur créateur présumé est supprimé et désactivé donc inconnu de l'AD.

J'ai bien essayé de réactiver le compte rien à faire la requete ne passe pas sans préciser l'identity

Remove-CalendarEvents -Identity " " -CancelOrganizedMeetings -PreviewOnly

comment supprimer une réunion uniquement avec son intitulé ?

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,194 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Aholic Liang-MSFT 13,886 Reputation points Microsoft External Staff
    2023-03-31T06:36:10.23+00:00

    Hi @ Guillaume BOURNIGAUD , Welcome to Microsoft Q&A forum.

    Please note that currently Microsoft Q&A only support posting in English. Could you please edit your question into English? Then we can better understand the question and help you with this issue, thanks for your understanding. The following is my understanding of your question and some suggestions.If I misunderstood your question, please feel free to correct me.


    You can use Compliance Search to search for meeting invitations that match your criteria and remove them, instead of Remove-CalendarEvents:

    1.Connect to Security & Compliance PowerShell:

    Import-Module ExchangeOnlineManagement
    
    Connect-IPPSSession -UserPrincipalName ******@contoso.onmicrosoft.com
    

    2.Create a cardio compliant search:

    New-ComplianceSearch -Name "Remove meeting" -ExchangeLocation All -ContentMatchQuery "kind:meetings AND Subject:'test meeting' AND From:******@contoso.onmicrosoft.com"
    Start-ComplianceSearch -Identity "Remove meeting"
    
    

    3.Delete the message:

    New-ComplianceSearchAction -SearchName "Remove meeting" -Purge -PurgeType SoftDelete
    

     

    Note:

    1. By default, administrators aren't assigned the Mailbox Search management role, which delete messages must be assigned to .
    2. A maximum of 10 items per mailbox can be removed at once. undefined
    3. You can refer to this document to delete messages using Compliance Search: Search for and delete messages in Exchange Server | Microsoft Learn

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.