The administration and maintenance of Microsoft Exchange Server to ensure secure, reliable, and efficient email and collaboration services across an organization.
If using the Search-AdminAuditLog cmdlet, use the -Cmdlets and -Parameters parameter to narrow the search to just the specific operations:
Search-AdminAuditLog -Cmdlets Set-UnifiedGroup -Parameters AcceptMessagesOnlyFromSendersOrMembers
You can also specify run the cmdlet to check against a specific group object, by using the -ObjectId parameter. Adding a time filter will of course also help.
If using the Search-UnifiedAuditLog cmdlet, the time/date filter is mandatory and you can further scope the result via -Operations parameter to include just the cmdlet in question, and by using the -FreeText parameter to specify the attribute changed.
Search-UnifiedAuditLog -StartDate 14-Jan-2022 -EndDate 19-Jun-2022 -Operations Set-UnifiedGroup -FreeText AcceptMessagesOnlyFromSendersOrMembers
Use the -ObjectId switch to narrow the results further.