Agustin Gallegos
In case you are using Application permissions (not delegated), your Azure App needs to be granted "Calendars.ReadWrite" permission.
This is an optional parameter. String parameter with the ClientID (or AppId) of your AzureAD Registered App.
This is an optional parameter. String parameter with the TenantID your AzureAD tenant.
This is an optional parameter. Certificate thumbprint which is uploaded to the AzureAD App.
This is an mandatory parameter. The exact subject text to filter meeting items. This parameter cannot be used together with the "FromAddress" parameter.
This is an mandatory parameter. The sender(s) address(es) to filter meeting items. This parameter cannot be used together with the "Subject" parameter.
This is an optional parameter. This is a list of SMTP Addresses. If this parameter is ommitted, the script will run against the authenticated user mailbox.
This is an optional parameter. The script will search for meeting items starting based on this StartDate onwards. If this parameter is ommitted, by default will consider the current date.
This is an optional parameter. The script will search for meeting items ending based on this EndDate backwards. If this parameter is ommitted, by default will consider 1 year forward from the current date.
This is an optional parameter. Transcript is enabled by default. Use this parameter to not write the powershell Transcript.
This is an optional parameter. Use this parameter to list the calendar events found, without deleting them. This is a good parameter to use, to actually see the current found events and double check these are the ones to be deleted.
This is an optional parameter. Use this parameter to disconnect from MgGraph when it finishes.
PS C:\> .\Remove-GraphUserCalendarEvents.ps1 -Subject "Yearly Team Meeting" -StartDate 06/20/2022 -Verbose
The script will install required modules if not already installed.
Later it will request the user credential, and ask for permissions consent if not granted already (Delegated Permission).
Then it will search for all meeting items matching exact subject "Yearly Team Meeting" starting on 06/20/2022 forward.
It will display the items found (Verbose parameter is required) and proceed to remove them.
All data in the powershell console will be extracted to the Powershell Transcript.
# Following line requires to be connected to Exchange Online
PS C:\> $mailboxes = Get-EXOMailbox -Filter {Office -eq "Staff"} -Properties PrimarySMTPAddress | Select-Object PrimarySMTPAddress
PS C:\> .\Remove-GraphUserCalendarEvents.ps1 -Subject "Yearly Team Meeting" -Mailboxes $mailboxes.PrimarySMTPAddress -ClientID "12345678" -TenantId "abcdefg" -CertificateThumbprint "a1b2c3d4" -Verbose
The script will install required modules if not already installed.
Later it will connect to MgGraph using AzureAD App details (requires ClientID, TenantID and CertificateThumbprint).
Then it will search for all meeting items matching exact subject "Yearly Team Meeting" starting on the current date forward, for all mailboxes belonging to the "Staff" Office.
It will display the items found (Verbose parameter is required) and proceed to remove them.
All data in the powershell console will be extracted to the Powershell Transcript.
# Following line requires to be connected to Exchange Online
PS C:\> $mailboxes = Get-EXOMailbox -Filter {Office -eq "Staff"} -Properties PrimarySMTPAddress | Select-Object PrimarySMTPAddress
PS C:\> $Organizers = @("[email protected]", "[email protected]","[email protected]")
PS C:\> .\Remove-GraphUserCalendarEvents.ps1 -Organizers $Organizers -Mailboxes $mailboxes.PrimarySMTPAddress -ClientID "12345678" -TenantId "abcdefg" -CertificateThumbprint "a1b2c3d4" -Verbose
The script will install required modules if not already installed.
Later it will connect to MgGraph using AzureAD App details (requires ClientID, TenantID and CertificateThumbprint).
Then it will search for all meeting items matching any of these organizers starting on the current date forward, for all mailboxes belonging to the "Staff" Office.
It will display the items found (Verbose parameter is required) and proceed to remove them.
All data in the powershell console will be extracted to the Powershell Transcript.
- Update: Replace "FromAddress" parameter to "Organizers". And we allow to look for meetings from more organizers.
- Update: Change retrieve command to CalendarView, in order to be able to see multiple instances on recurrent meetings.
- Added: EndDate parameter. If ommitted, by default will consider 1 year forward from the current date.
- Added: Parameter to search based on a StartDate.
- Added: Parameter to disconnect from MgGraph after the script finishes.
- Update: Added logic to authenticate as a user, or as an AzureAD App.
- First Release.
- Project start.