Book A meeting room

Sanjay Bhakuni - admin 60 Reputation points
2024-05-14T18:08:46.56+00:00

Being an Admin, I want to book a meeting room for a VIP user. How i can achieve this with a PowerShell command.

Microsoft Exchange Online
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Cecilia Qin-MSFT 230 Reputation points Microsoft Vendor
    2024-05-15T09:03:53.66+00:00

    Hi,

    Currently there is no build-in way to book a meeting with the PowerShell command. We can only use Outlook to achieve this. And if the VIP user is the organizer of the meeting, you should have Send As permissions for VIP's mailbox, so that you can use Outlook to book a meeting for the VIP.

    You could use the following command to add the Send As permission:

    Add-ADPermission -Identity "VIPname" -User <DelegateIdentity> -AccessRights ExtendedRight -ExtendedRights "Send As"

    Notes: The Identity parameter requires to use the Name.

    This example grants Send As permissions for Aaron Painter to Terry Adams's mailbox:

    Add-ADPermission -Identity "Terry Adams" -User AaronPainter -AccessRights ExtendedRight -ExtendedRights "Send As"

    After completing this command, you have the Send As permission, and then open Outlook and organize a meeting room for the VIP user.