如何查询会议室预约情况

事良 邹 45 Reputation points
2024-06-25T06:18:43.67+00:00

Exchange server 2019的环境,请问是否有办法可以获取所有会议室的预约情况?

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,568 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Mike Hu-MSFT 3,040 Reputation points Microsoft Vendor
    2024-06-25T07:37:11.3333333+00:00

    Hi,

    欢迎来到微软论坛!

    您可以尝试在Exchange Management Shell中运行以下命令来获取所有会议室的限定时间范围内的所有会议详情信息(以下命令只需将日期修改为您想要搜索的日期范围):

    $MeetingRooms = Get-Mailbox -RecipientTypeDetails RoomMailbox
    foreach ($room in $MeetingRooms) {
           Get-CalendarDiagnosticLog -Identity $room.Identity -StartDate "2024-06-21" -EndDate "2024-6-26"
    }
    

    User's image

    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.