The next script talks you through how to install Zoom for macOS using JumpCloud Commands. It follows a similar structure to the other commands I have posted. Creates a temp repo on the mac, downloads the latest version, mounts, installs, and removes the temp files. Simple but effective. I have broken this out of this post as I am separating all of the commands into there own blog post.
Install Zoom for macOS using JumpCloud Commands.
# Script to download, Silent Install and then clean up once installed Zoom # Writen by twitter.com/richhickson # www.RichardHickson.com #Make temp folder for downloads. mkdir "/tmp/zoom/"; cd "/tmp/zoom/"; #Download Zoom. curl -L -o /tmp/zoom/zoom.pkg "https://zoom.us/client/latest/ZoomInstallerIT.pkg"; #install Zoom sudo installer -pkg /private/tmp/zoom/zoom.pkg -target /; #tidy up sudo rm -rf "/tmp/zoom";