25

I attend several recurring Zoom meetings every day and would like to streamline the process of joining them.

Is there a way to launch a Zoom meeting (with password) from the command line in Windows?

Jon Crowell
  • 2,336
  • 5
  • 26
  • 34

9 Answers9

21

Piece of cake! Use a windows shortcut instead! It's easier and cleaner.

You can use this same method on Linux (or mac) but you will need to put it into a script or alias it instead.

I figured this out myself when I went down the same path.

  1. Create a shortcut to your zoom exe. It should be in %APPDATA%\Zoom\bin\Zoom.exe
  2. Open the shortcut properties and edit the "Target" field.
  3. Go down after the EXE and add (with the quotes) "--url=zoommtg://zoom.us/join?action=join&confno=<your_conference_number>"

If you have a password, it is hashed so you will need to launch the meeting once in the browser and copy it out. Once you have your hashed password, add &pwd=<hashed_password> after your conference number (with no spaces).

Some other handy things to know

  • I myself add .LNK to my PATHEXT environment variable. This allows me to launch a shortcut without clicking on it. Possible vulnerability but I am willing to risk it.
  • After adding that, I can put shortcuts in my path and launch them using only the name via the run dialog or console.

An example

  • I put a shortcut for my standup meeting in my path.
  • [Win]+r (pulls up the run dialog)
  • I type 'standup' and hit [ENTER] to open my standup meeting.
18

If you're on a Mac you can join a zoom meeting from the command line like so (e.g. for conference ID 1234):

open "zoommtg://zoom.us/join?confno=1234"

To make it handier you can add a shell function to your .bashrc or .zshrc:

function  zoom () { open "zoommtg://zoom.us/join?confno=$1" }

Then you can just join a call using:

zoom 1234
Pierz
  • 2,169
9

For linux users this method will not open a web browser it will directly open zoom app with meeting.

xdg-open "zoommtg://zoom.us/join?action=join&confno=<conference_number>"

this will require you to enter password

if you have an invite link for zoom meeting and it looks like the one below "https://us05web.zoom.us/j/9332773648?pwd=OUFPQlIreVpONGX4VURkWjVxNzFFZz09"

you can modify the command above to the one below and it wouldn't require you to enter a passcode

xdg-open "zoommtg://zoom.us/join?action=join&confno=9332773648&pwd=OUFPQlIreVpONGX4VURkWjVxNzFFZz09"
8

Go down after the EXE and add (with the quotes) "--url=zoommtg://zoom.us/join?action=join&confno=<your_conference_number>"

This isn't work any more. The correct is:

--url="zoommtg://zoom.us/join?action=join&confno=<your_conference_number>"

So "--url=" must be outside the quotes!

Dylan
  • 81
4

If you are Windows User you can write

start "url"

In the place of url you can put your zoom link and join it easily

For Mac-OS

open "url"

For Linux

xdg-open "url"

this is the easy and quick way But remember to that it will open the browser and browser will pop up and msg saying "Lunch Meeting In Zoom App" which leads to the opening of zoom app. So if you tick always open with app . You are ready to go.

Launch Meeting -Zoom

2

I like your answer @Señor CMasMas, but instead of a shortcut I'm using a scheduled task to start zoom.exe and using the --url as the arguments, as many of my meetings are recurring. So I want them to automatically pop them up for me, as time is always slipping by when I'm not paying attention.

2

For Mac Users:

Zoom may have changed something since these answers were posted. I was unable to get any of the formats for opening a password-locked room open on osX -- hashed, unhashed, using the --url scheme -- zoom would open but not go to the room.

The answer for me was to open the fully password hashed url in Chrome from the command line:

open -a "Google Chrome" https://zoom.us/j/[ROOM NUMBER]?pwd=[HASHED PASSWORD]
brianfit
  • 121
0

I use a simple Bash script on Linux to launch Zoom links. I run this from my at queue so that meetings just pop up on schedule without touching my browser.

The essential part is that the script parses out three fields from a typical Zoom link: The host, the meeting ID, and the hashed password. Then I just run zoom with the option of a Zoom meeting URL of the format "zoommtg://[host]/join?action=join&confno=[meeting id]&pwd=[password hash]"

The script does a little extra to make sure my DISPLAY is set (in case I'm running this from something like the 'at' queue) and to verify that the URL is in the expected format with a regular expression match.

#!/bin/bash

[ -z "${DISPLAY}" ] && export DISPLAY=:0

Check for zoom meeting links

if [[ "$1" =~ https://[^/][.]zoom[.][^/]/j/[0-9][?]pwd= ]]; then H="${1#//}" H="${H%/}" H="${H,,}" P="${1#?pwd=}" M="${1#/j/}" M="${M%?pwd=}" # echo "H: '${H}' M: '${M}' P: '${P}'" (zoom "zoommtg://${H}/join?action=join&confno=${M}&pwd=${P}" &) shift if [ -z "$1" ]; then exit 0 fi fi

echo Unexpected arguments: "$@" exit 1

0

Answer

confno and pwd are the values to set in the zoom scheme (URL).

I created a basic Python module to use for that:

from os import startfile
from urllib.parse import urlencode

def meeting(number, password): url = 'zoommtg://zoom.us/join?' parameters = { 'confno': number, 'pwd': password } command = url + urlencode(parameters)

print(url + urlencode(parameters))

startfile(command)

from zoom import meeting

meeting (
  'NUMBER',
  'PASSWORD'
)
Gist:
Destroy666
  • 12,350
Elvin
  • 181