cancel
Showing results for 
Search instead for 
Did you mean: 

I've aged trying to find "Recurring Meetings"

wawede
Newcomer
Newcomer

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. 

1 REPLY 1

storyhub
Community Champion | Customer
Community Champion | Customer

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>"