Install BlueJeans using JumpCloud commands on MacOS

I wrote a quick script that follows all of the others here on how to Install BlueJeans using JumpCloud commands on MacOS. As usual, normal disclaimer applies (I take no responsibility blah blah)

# Script to download, Silent Install and then clean up once installed BlueJeans
# Writen by twitter.com/richhickson
# www.RichardHickson.com

#Make temp folder for downloads.
mkdir "/tmp/BlueJeans/";
cd "/tmp/BlueJeans/";

#Download DockUtils.
curl -L -o /tmp/BlueJeans/bluejeans.pkg "https://swdl.bluejeans.com/desktop-app/mac/2.20.0/2.20.0.264/BlueJeansAdminInstaller.pkg";

#install DockUtils
sudo installer -pkg  /private/tmp/BlueJeans/bluejeans.pkg -target /;

#tidy up
sudo rm -rf "/tmp/BlueJeans";


exit 0

Leave a Comment