Share via

calendar information

Glenn Maxwell 13,761 Reputation points
2022-11-23T20:43:54.45+00:00

Hi All

I am using exchange 2016 Hybrid environment. we create users in onprem and migrate to online.
Is it possible to fetch meetings information i.e all the meetings in my office 365 tenant that have been scheduled in last 2 month with the keywords for example abc or test

Exchange Online
Exchange Online

A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.

Exchange | Exchange Server | Management
Exchange | Exchange Server | Management

The administration and maintenance of Microsoft Exchange Server to ensure secure, reliable, and efficient email and collaboration services across an organization.


Answer accepted by question author

Joyce Shen - MSFT 16,706 Reputation points
2022-11-24T02:50:10.393+00:00

Hi @Glenn Maxwell

You could use the command New-ComplianceSearch to create compliance searches in the Microsoft Purview compliance portal. You use this cmdlet to define the search criteria.

For your requirement, you could use the command below:

$date= (get-date).adddays(-60);  
$date = $date.ToShortDateString();  
$date = [scriptblock]::create($date);  
New-ComplianceSearch -name "meetings" -ExchangeLocation all -ContentMatchQuery 'subject:abc AND kind:meetings AND created>$date'   
Start-ComplianceSearch “meetings”  

To check the progress of your search and get some basic info about the current results, run the following cmdlet:
Get-ComplianceSearch | FL name,items,size,jobprogress,status

Then Preview eDiscovery search results Or Export Content search results

Details:
New-ComplianceSearch: how to use the newer version of Search-Mailbox
Compliance Search via O365
Please Note: Since the web sites are not hosted by Microsoft, the links may change without notice. Microsoft does not guarantee the accuracy of this information.


If an Answer is helpful, please click "Accept Answer" and upvote it.

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.

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

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