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 Companion2024-09-29 08:00 AM
I use Zoom *exclusively* for my recurring meetings. The tab keeps moving it to the most hidden places, and with the latest update they're totally gone once again. I go to "JOIN", then I write the ID and password of my own meeting to join as a participant. Please. Please make it available and easy accessible.
Just an extra: it's never easy to create recurring meeting with no specific time/date either. Some meetings are recurring at random times, I want to keep the same link for them.
2024-10-03 01:18 AM
Create recurring meetings with no fixed time in the web portal (the Zoom client does not allow this).
If you have a PC you can use the following AutoHotKey (requires AutoHotKey to be installed to create and run) windows script to sign in and start a meeting.
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 "<Zoom account email address>"
Send "{tab}"
SendText "<Zoom account 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=<hashed password from Zoom join link>"