Since we could not locate information on how to uninstall the BomgarJump Client on our MACs, we made it up.
Why are we doing this?
Originally we pushed out the MAC Bomgar JumpClient via Kace, using the instructions provided by Bomgar. It worked, but each install create a separate software entry within our Kace appliance (as described here http://www.itninja.com/question/installing-and-maintaining-bomgar-jump-clients-via-the-k1000). In addition, our appliance kept on trying to install the software as what was installed on the client was not identical to the software entry (see link above) in which we originally linked up the payload to. This resulted in our clients having multiple Bomgar Jumpclients being installed.
So we wrote this script to remove all Bomgar instances on a client computer, and figured we would contact Bomgar support for an updated process so we do not reproduce the issue.
for KILLPID in `ps ax | grep 'bomg*' | awk ' { print $1;}'`; do
kill -9 $KILLPID;
done
rm -rf /Library/LaunchDaemons/com.bomgar.bomgar-ps-*
rm -rf /Library/LaunchAgents/com.bomgar.bomgar-scc*
rm -rf /Users/Shared/bomgar-scc-*
Comments