Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI CompanionUser groups are unique spaces where community members can collaborate, network, and exchange knowledge on similar interests and expertise.
Help & Resources is your place to discover helpful Zoom support resources, browse Zoom Community how-to documentation, and stay updated on community announcements.
The Events page is your destination for upcoming webinars, platform training sessions, targeted user events, and more. Stay updated on opportunities to enhance your skills and connect with fellow Zoom users.
2023-12-15 03:52 AM
Hi there, is someone able to assist me in changing the default ClickToCall from Zoom Phone to Zoom Contact Center, please?
Currently, when we click on a number, it opens in Zoom Phone.
We are hoping to change it so that when a number is clicked on, it opens in the Zoom Contact Center.
Any help would be greatly appreciated.
Thanks!
2025-02-25 12:15 PM
Did you ever find a solution for this
thanks
2025-02-25 01:02 PM - edited 2025-02-25 01:03 PM
2025-02-25 02:17 PM
Thank you so much for your quick reply.
Do you have something that works with windows 11
thank you
2025-02-25 02:48 PM
I don't sorry. Our company is primarily Mac.
I am hoping ChatGPT might be able to assist you coming up with a similar script for Windows?
2025-04-03 03:00 PM
Did you ever find a solution for windows machines?
2025-04-15 01:51 PM
Hi Anthony,
We are also attempting to switch the default to Zoom Contact Center and tried using your script but it doesn't seem to be working. Did the script change from when you posted this earlier this year?
2025-04-15 03:07 PM
Hey abratschi,
The script I posted earlier during the year is what we currently use to deploy to our Mac fleet.
We use the MDM Solution called Kandji
The script does not run automatically and we have made it so the user can run it on demand as we don't require all our users to use contact center for Zoom calls.
I have just checked the script to confirm no changes have been made
I have attached some screenshots below.
2025-04-18 12:14 PM
Thanks Anthony!
I was able to get this resolved. I didn't realize I needed to use the IT Admin app (Zoom Workspace), which I found out from this forum.
I used the .plist file method with this script:
We also use Kandji! So I created a custom app and assigned that to a blueprint for my Call Center agents and then set it to run after the IT Zoom app was installed.
Also- not sure if you've played around with having the call automatically start ringing upon clicking. Our old system had that feature and it is on less click for my agents.
2025-04-15 02:01 PM - edited 2025-04-15 02:24 PM
-
2025-04-15 02:17 PM
I currently have an open ticket with Zoom right now for this issue. I'll update this thread once we get to the bottom of it, but if you find a way to make this work in the meantime, please update me!
2025-04-03 03:10 PM
You could try the following PowerShell Script at your own risk.
# Define application details
$progId = "ZoomContactCenter.Tel" # Custom ProgID - make sure this matches Zoom's registration if it exists
$appName = "Zoom Contact Center"
$appPath = "C:\Program Files (x86)\ZoomContactCenter\ZoomContactCenter.exe" # Adjust path if different
# Register the app as a TEL handler in the registry
New-Item -Path "HKCU:\Software\Classes\$progId" -Force
Set-ItemProperty -Path "HKCU:\Software\Classes\$progId" -Name "(Default)" -Value "$appName"
New-Item -Path "HKCU:\Software\Classes\$progId\shell\open\command" -Force
Set-ItemProperty -Path "HKCU:\Software\Classes\$progId\shell\open\command" -Name "(Default)" -Value "`"$appPath`" `"%1`""
# Associate the tel: protocol with this handler
New-Item -Path "HKCU:\Software\Classes\tel" -Force
Set-ItemProperty -Path "HKCU:\Software\Classes\tel" -Name "(Default)" -Value "$progId"
Write-Host "Zoom Contact Center has been set as the handler for tel: links (if supported)."