tdannecy@gmail.com

Fix “Copying meetings is not supported” message in Outlook

#PowerShell #Outlook #Windows

I have multiple email accounts that I juggle to support other client tenants, but I keep one primary calendar in Outlook with my work account. Every morning, I go through my other account emails and manually copy over events into my primary calendar so that I don't get double booked. I'm sure there's a better way to manage my calendars, but this has been working for me so far.

This morning, however, I tried to copy a meeting from my alternate account into my primary calendar, but I got the following popup message:

Screenshot of Outlook error message

Microsoft Outlook: Copying meetings is not supported.

I'm running Outlook with a Microsoft 365 Apps for Enterprise license, version 2312 (Build 17126.20126 Click-to-Run) on the Current Channel. I'm running Windows 11 Business with a Windows 11 Enterprise subscription, Version 23H2, OS Build 22631.2861, with Windows Feature Experience Pack 1000.22681.1000.0

To fix this issue in Outlook and to be able to copy calendar entries across accounts, I needed to make a change in the Registry.

To make it easier and to give others the ability to deploy this org-wide, I wrote up a quick PowerShell script that changes the value.

Run this PowerShell script as an Administrator or deploy using something like Intune:

$registryPath = "HKCU:\Software\Microsoft\Office\16.0\Outlook\Options\Calendar"
$registryName = "EnableMeetingCopy"
$registryValue = 1

if (-not (Test-Path $registryPath)) {
     New-Item -Path $registryPath -Force
 }
Set-ItemProperty -Path $registryPath -Name $registryName -Value $registryValue

I needed to close and re-open Outlook for the changes to take effect, but running this script fixed my issue.

References

Footer image

Discuss...