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-11-13 03:08 PM
Hi,
Since Zoom adopted it's dreadful new interface a few months ago, sometimes when I start up the program, I can't find my meetings. I have around 30 meetings set up, which I use on an ad hoc basis. All of them are reoccurring but are not set for a particular time.
Anyway, sometimes when I click on 'Meetings', they are there at the bottom, underneath the huge empty space for the calendar/scheduler I will never use. However sometimes, apparently randomly, they don't show up at all, so I have to go onto the website, login (for some reason Zoom does not allow me to stay logged in), and open the meeting that way, which takes longer and is inconvenient.
Does anyone else have this problem? Does anyone know how I can solve this, or ideally go back to the classic Zoom interface, when the company understood that it was a video platform, and not a calendar service?
2024-11-14 12:37 AM - edited 2024-11-14 12:38 AM
On a Windows 11 PC that I control I use a shortcut to a script created by AutoHotKey that signs in to the account and starts the meeting. A simple single click which can be given a friendly name.
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 "<username>"
Send "{tab}"
SendText "<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 passcode from Zoom link>"