Zoom Meetings
cancel
Showing results for 
Search instead for 
Did you mean: 

What are Zoom Meetings?

Zoom Meetings are a simplified video conferencing solution for an optimized virtual meeting experience. Explore the Zoom Community's Recent Activity below to join the Meetings conversation and connect with other members. If you're still looking for support, browse our Zoom Meetings support articles or start a new discussion below!

Recent Activity

Webinars and Meetings Scheduling Conflict

Multiple people in our organisation use zoom. Apparently the webinar calendar and meeting calendar do not talk to each other and a meeting was scheduled to start in the middle of an ongoing webinar which resulted in approx 300 attendees being instant... Show more

Multiple people in our organisation use zoom. Apparently the webinar calendar and meeting calendar do not talk to each other and a meeting was scheduled to start in the middle of an ongoing webinar which resulted in approx 300 attendees being instantly kicked out of the webinar when the meeting started. Does anyone know of a setting or way to prevent webinars and meetings being scheduled at the same time to prevent this issue in the future since you can not host both at the same time?


Show less

reply-icon Latest Reply - 

iPhone cam plus Mac Laptop

I used to be able to tie my iPhone X2 to my computer to use as an external camera for Zoom. However, it's not showing up to select. The only cam that shows up is my internal Facetime camera. (lousey) Can you help, please?Thanks.SJ2 iPhone XsSoftware ... Show more

I used to be able to tie my iPhone X2 to my computer to use as an external camera for Zoom.  However, it's not showing up to select. The only cam that shows up is my internal Facetime camera. (lousey) Can you help, please?

Thanks.

SJ2

 

iPhone Xs

Software Version: 15.6.1

 

MacBook Pro

13' Late 2012

10.15.7

 


Show less

reply-icon Latest Reply - 

Zoom Link via Registration Not Working

I have 2 problems:1) I have set up meetings that require registration. I approve the registration and the registrant receives a confirmation email with the link to join the meeting. However, the registrant clicks on the link, but it takes them back t... Show more

I have 2 problems:

1) I have set up meetings that require registration. I approve the registration and the registrant receives a confirmation email with the link to join the meeting. However, the registrant clicks on the link, but it takes them back to the registration page, not the meeting. How can I troubleshoot this? What's going on?

 

2) One I approve a registration, the registrant does not get the confirmation email. It's not in their spam folder either. Why aren't they getting the email?


Show less

reply-icon Latest Reply - 

How come Zoom does not keep a record of all the call made for regular basic users?

I would like to view all the Zoom meetings I attended in 2022, but unfortunately no option to view that because I'm on a basic plan. Zoom is indirectly letting me know that I can see the history of my calls or meetings I joined or do they not have th... Show more

I would like to view all the Zoom meetings I attended in 2022, but unfortunately no option to view that because I'm on a basic plan.

 

Zoom is indirectly letting me know that I can see the history of my calls or meetings I joined or do they not have the data?


Show less

reply-icon Latest Reply - 

Video freezes intermittently Windows 11- capable CPU, ISP fine, C dock, Orbi mesh,

In addition, streaming works fine for Amazon prime, Youtube... not fine for FuboTV (similar problem). This laptop is Lenovo Thinkbook. Uses the native Intel Graphics, otherwise fully loaded. Two monitors, one into the computer, the other into Lenovo ... Show more

In addition, streaming works fine for Amazon prime, Youtube... not fine for FuboTV (similar problem).  This laptop is Lenovo Thinkbook.  Uses the native Intel Graphics, otherwise fully loaded. Two monitors, one into the computer, the other into Lenovo docking station.  Symptom:  Video slows or delays, or pops to speed and then slows/delays.  CPU, Graphics PU, RAM, all not stressed as monitored through Task Manager.   All drivers up-to-date.  Windows 11 at latest release. 

 

I get the impression there might be a packet problem, since FuboTV has a similar, though not exactly the same, issue.  Could this would point to the Orbi.  Netgear of no help.  I am not wandering, so mesh should not be a problem.  I am ethernet connected, but have tried wifi as well with no noticable difference.   

 

Questions:

- Security settings?  McAfee Total Protection

- VPN settings?  I'm running E2EE, though I have also had the same problem when not.  I am running VPN.  (Do I need to when running E2EE?)   However, I have problem with VPN off. 

This has not been a recent problem... Occurred last year 21-22 teaching semesters when teaching a course. 

 


Show less

Setting up profile picture

Hello,Something happened to my meeting profile picture setting. While in a meeting, when I turned off my video, my profile picture used to appear. Now, it does not, and my name appears. How to I fix that so that my profile picture appears?Note that m... Show more

Hello,

Something happened to my meeting profile picture setting. While in a meeting, when I turned off my video, my profile picture used to appear. Now, it does not, and my name appears. How to I fix that so that my profile picture appears?

Note that my profile picture is still in my profile. It is just not appearing when I am in a meeting and turn off my video.

By the way, I have a free (basic) zoom account.

Thank you.


Show less

reply-icon Latest Reply - 

Possible to revert to previous Mac and Windows Zoom apps to avoid bug in latest version?

The latest version of Zoom is driving me and my wife crazy. The date in the Schedule meetings window shows the US format (mm/dd/yyyy) rather than our previous UK format (dd/mm/yyyy). The setting in profile settings makes no difference so this must be... Show more

The latest version of Zoom is driving me and my wife crazy.  The date in the Schedule meetings window shows the US format (mm/dd/yyyy) rather than our previous UK format (dd/mm/yyyy).  The setting in profile settings makes no difference so this must be hard coded or not picking up the profile settings.

 

How do we go back to the previous versions please?


Show less

reply-icon Latest Reply - 

Import { ZoomMtg } from ‘@zoomus/websdk’; causing React app to crash

I am integrating zoomus/websdk client view in my react-application. The moment I import ZoomMtg my app got crashed. I am not getting any clue why is it happening. On the other hand when I am importing component view, everything is working fine. Zoom ... Show more

I am integrating zoomus/websdk client view in my react-application. The moment I import ZoomMtg my app got crashed. I am not getting any clue why is it happening. On the other hand when I am importing component view, everything is working fine. 
Zoom Meeting SDK: 2.9.5

React version: 16.13.1

 

My code:

// importing in my component

import {ZoomMtg} from '@zoomus/websdk';
ZoomMtg.setZoomJSLib('https://source.zoom.us/2.9.5/lib', '/av');
ZoomMtg.preLoadWasm();
ZoomMtg.prepareWebSDK();
ZoomMtg.i18n.load('en-US');
ZoomMtg.i18n.reload('en-US');
 
// On clicking on my application button when I want user to join meeting
ZoomMtg.init({
leaveUrl: leaveUrl,
success: (success) => {
console.log(success)

ZoomMtg.join({
signature: <signature>,
meetingNumber: <meetingNumber>,
userName: <userName>,
sdkKey: <sdkKey>,
zak: <zak>,
passWord: <passWord>,
success: (success) => {
console.log(success)
},
error: (error) => {
console.log(error)
}
})

},
error: (error) => {
console.log(error)
}
})

 


Show less

Zoom Registration Page Issue

I created a Zoom meeting.The meeting required registration. The start time of the meeting is in 2 days. The meeting does not have the option for participants to join at any time. There is a registration link with additional questions. However, when I... Show more

I created a Zoom meeting.

The meeting required registration. The start time of the meeting is in 2 days. 

The meeting does not have the option for participants to join at any time. 

There is a registration link with additional questions. However, when I copied the invitation, people are going directly into a zoom meeting. They do not see the registration page. 

I have copied both the invitation and the registration link. It seems to have issues from cell phones but not computers. The links are working differently. In the past, the invitation would take people to the registration page. This is not happening.  


Show less

reply-icon Latest Reply - 

Host Link not working on iPhone

I use a JWT app to crate a host links for my employees to start meetings without being logged into a Zoom account. The link looks like https://us06web.zoom.us/s/########?zak=eyJ0eXAiO... This link works consistently on laptops and androids, but recen... Show more

I use a JWT app to crate a host links for my employees to start meetings without being logged into a Zoom account.  The link looks like https://us06web.zoom.us/s/########?zak=eyJ0eXAiO...  This link works consistently on laptops and androids, but recently stopped working on my employee's iPhones.  When the link is clicked (or entered manually in the URL bar) the Zoom app opens but asks the employee to sign in or enter a meeting ID and password, which defeats the reason for the host link.  I have confirmed this issue using both Safari and Chrome - netiher will launch the meeting from the host link. Is there any way to make the host link work on an iPhone? 


Show less

reply-icon Latest Reply -