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.
Starting February 3, 2025, Zoom Phone customers must add their phone numbers to an approved 10DLC campaign in order to use SMS/MMS capabilities on their numbers.
Introducing more live support options! More Zoom customers now have access to live agent chat support. Sign in and visit our Contact Support page to see all your available support options. We’re here to help!
2023-07-18 11:17 AM
In my organization, I meet with a regular list of other Zoom users regularly. I'd like to know if there's a way to create a shortcut (either on my desktop/taskbar or as an Internet favorite in my browser) that when clicked would immediately initiate a 'Meet with Video' request to that user, allowing me to save several clicks and steps within the Zoom client itself (find the user, select them, click the button to initiate a meeting).
I can't find anything obvious, but was hoping someone in the community may have solved this already somehow.
V/R
Paul Stansberry
2024-08-28 01:26 AM
Hi Paul,
I'm facing the same issue! Did you find a solution to create a shortcut for a meeting and immediately initiate the invite to a user ?
Regards
Olivier
2024-09-03 11:51 AM
2024-09-03 02:39 PM - edited 2024-09-03 02:43 PM
Depending on how you intend to invite a user the following AutoKey script will login to a specific Zoom meeting with additional script you could possibly create the invite (text shown with <> are variables):
AppData := EnvGet("AppData")
run AppData "\Zoom\bin\Zoom.exe"
WinWait "Zoom Workplace",,15
WinActivate "Zoom Workplace"
WinWaitActive "Zoom Workplace",,15
sleep 3000
Send "{tab}{tab}{tab}{enter}"
WinWait "Zoom Workplace",,15
WinActivate "Zoom Workplace"
WinWaitActive "Zoom Workplace",,15
Send "^a"
SendText "<user name>"
Send "{tab}"
SendText "<password>"
Send "{enter}"
sleep 5000
WinWait "Zoom Workplace",,15
run AppData "\Zoom\bin\Zoom.exe --url=zoommtg://zoom.us/join?action=join&confno=<meeting ID>&pwd=<encrypted password from invite link>
Then again you could just email or text the invite link. Remembering it in a doc or note.
2024-09-03 06:14 PM
This can be easily accomplished using Zoom's APIs. You could essentially create an interface with a list of client emails. You would then click on each link and that would initiate a 'meeting with user' request for that particular client. If you are not a developer there is a Zoom app, Salepager, that lets you send a direct invite to a particular user savings you the several clicks and steps.