yesterday
Hi all - has anyone found a way to make Zoom the default for all events on new Outlook? Tried a few different policies with no success. Can add manually as a Zoom meeting, but this is pain for all users. Many thanks in advance!
16 hours ago
Create a Configuration Profile in Jamf Pro:
Navigate to Computers > Configuration Profiles
Click "+ New" to create a new profile
Configure Microsoft 365 Settings:
For the payload type, select "Microsoft 365"
Add the following key/value pair:
Key: DefaultOnlineMeetingProvider
Value: Zoom
(exactly as written, case-sensitive)
Scope the Profile:
Assign the profile to the appropriate computers or groups
Set the distribution method (typically "Install Automatically")
or below script
#!/bin/bash
# Path to Outlook preferences
plist_path="/Library/Containers/com.microsoft.Outlook/Data/Library/Preferences/com.microsoft.Outlook.plist"
# Set Zoom as default meeting provider
defaults write "$plist_path" DefaultOnlineMeetingProvider -string "Zoom"
# Set permissions
chmod 644 "$plist_path"
chown root:wheel "$plist_path"
But I did not test this. Should work. Just a word of caution!!!
14 hours ago
@Nandagopal thank you for your response, I can't locate a payload for M365 unfortunately and the script (something similar I've tried) has also failed.