1 min read

Exchange Online – You can now shorten meetings at the organization level

As you may be aware, Outlook clients (for Windows, mobile on iOS and Android or OWA) allow your end-users to shorten a meeting when organizing it.

image

Well, Exchange administrators can now apply the shorten meeting settings at the organization level using Exchange Online PowerShell (use the V2 version available here https://www.powershellgallery.com/packages/ExchangeOnlineManagement/)

  • Connect to your Exchange Online tenant

Connect-ExchangeOnline

  • Then set the settings for shorten meeting – ShortenEventScopeDefault, DefaultMinutesToReduceShortEventsBy, DefaultMinutesToReduceLongEventsBy
    • ShortenEventScopeDefault: define the activation scope.
      • 0 the option to shorten meeting is disabled (default)
      • 1 for end early
      • 2 for start late
    • DefaultMinutesToReduceShortEventsBy defines the number of minutes to shorten the meeting. Accepted values between 0 and 29, default is 5
    • DefaultMinutesToReduceLongEventsBy defines the number of minutes to shorten the meeting. Accepted values between 0 and 29, default is 10

Example to start late the meeting by 5 minutes both long (more than 1 hour) and short (less than 1 hour) meetings

Set-OrganizationConfig -ShortenEventScopeDefault 2 –DefaultMinutesToReduceLongEventsBy 5 –DefaultMinutesToReduceShortEventsBy 5

image

Exchange Online – The new Exchange Online PowerShell module (v2) is now available

It has been announced at last year Ignite Conference (Ignite 2019) and since then has been in preview.

Read More

Exchange Online – Use the new Exchange Online PowerShell module v2 with Modern Authentication with your scripts (preview)

As you know, Microsoft is going to retire the basic authentication for Exchange Online PowerShell during the second half of 2021.

Read More

Exchange Online – New version of the Exchange Online PowerShell (aka v2) is now available

As you know, managing Exchange and Exchange Online can be done from either the Exchange Administration Center (EAC) or with PowerShell modules.

Read More