0

So, I was trying to make a python script on my own that would start a zoom meeting at aspecific time, I figured out how to do it but to initialize zoom, I have the link of the meeting. It goes like zoommtg://zoom.us/join?confno=83031171234&pwd=xyz so how do I open zoom from my python script and join a meeting with password. I prefer to do it via CMD. The error I get when I do start zoommtg://zoom.us/join?confno=83031171234&pwd=xyz it says that 'pwd' is not recognized as an internal or external command, operable program or batch file.

Also, if there is any way that I can change my name for a specfic meeting with the url scheme please let me know.

Thank you, hoping for a speedy and positive response.

  • 4
    `&` has a special meaning in `cmd` ("and then do"), that's why it tries to execute `pwd`, which is not a valid command. You need to quote the string to make the `&` "safe". Then another minor problem occurs: `start` takes the first quoted argument as a window title. Easy to overcome: give it a random or empty title: `start "" "zoommtg://zoom.us/join?confno=83031171234&pwd=xyz"` – Stephan Sep 28 '22 at 16:17

0 Answers0