How to Remove Audiojingle driver from Apple MacOS Mojave

I could not for the life of me figure out how to remove this Audiojingle driver that was installed with one of Ondesoft's software packages.


I ended up emailing them and they gave me a .sh script with Terminal instructions to remove.


*See my answer below*

MacBook Pro 15", macOS 10.14

Posted on Jun 5, 2019 8:24 AM

Reply
Question marked as Top-ranking reply

Posted on Jun 5, 2019 8:27 AM

Response from Ondesoft:


If you want to remove the audiojingle, please follow below steps:

 

Open Applications >> Utilities >> Terminal, and type sudo, press the space key, type sh, press the space key.

 

Download attached uninstall.sh file, drag the file to Terminal, then you can see

sudo sh /XXX/XXX/XXX/XXX/uninstall.sh, press the Enter key.

 

You need to enter your system password, and then press the Enter key.


I can't attached the actual script, but here is the code snippet. Just copy this text below and save it to a file called uninstall.sh via a text editor, like TextEdit.


#!/bin/bash

# remove driver
DRIVER_NAME="Audiojingle.driver"
DRIVER_INSTALL_PATH="/Library/Audio/Plug-Ins/HAL/${DRIVER_NAME}"
if [  -d "${DRIVER_INSTALL_PATH}" ]; then
    /bin/rm -rf "${DRIVER_INSTALL_PATH}" || exit 1
fi

# remove helper plist

LAUNCHD_PLIST_INSTALL_PATH="/Library/LaunchDaemons"
LAUNCHD_PLIST_INSTALL_PATH_BACKUP="/Library/LaunchAgents"
LAUNCHD_PLIST_FILENAME="com.audiojinglex.soundtree.agent.plist"
LAUNCHD_PLIST="${LAUNCHD_PLIST_INSTALL_PATH}/${LAUNCHD_PLIST_FILENAME}"
LAUNCHD_PLIST_BACKUP="${LAUNCHD_PLIST_INSTALL_PATH_BACKUP}/${LAUNCHD_PLIST_FILENAME}"

# romove the plist.
if [ -e "${LAUNCHD_PLIST}" ]; then
    /bin/rm -f "${LAUNCHD_PLIST}"
fi

if [ -e "${LAUNCHD_PLIST_BACKUP}" ]; then
    /bin/rm -f "${LAUNCHD_PLIST_BACKUP}"
fi

#/usr/bin/killall -u "_coreaudiod" "coreaudiod"
/bin/launchctl kill SIGTERM system/com.apple.audio.coreaudiod || /usr/bin/killall coreaudiod

echo "restart coreaudio"

sleep 2


Similar questions

1 reply
Question marked as Top-ranking reply

Jun 5, 2019 8:27 AM in response to sagesage

Response from Ondesoft:


If you want to remove the audiojingle, please follow below steps:

 

Open Applications >> Utilities >> Terminal, and type sudo, press the space key, type sh, press the space key.

 

Download attached uninstall.sh file, drag the file to Terminal, then you can see

sudo sh /XXX/XXX/XXX/XXX/uninstall.sh, press the Enter key.

 

You need to enter your system password, and then press the Enter key.


I can't attached the actual script, but here is the code snippet. Just copy this text below and save it to a file called uninstall.sh via a text editor, like TextEdit.


#!/bin/bash

# remove driver
DRIVER_NAME="Audiojingle.driver"
DRIVER_INSTALL_PATH="/Library/Audio/Plug-Ins/HAL/${DRIVER_NAME}"
if [  -d "${DRIVER_INSTALL_PATH}" ]; then
    /bin/rm -rf "${DRIVER_INSTALL_PATH}" || exit 1
fi

# remove helper plist

LAUNCHD_PLIST_INSTALL_PATH="/Library/LaunchDaemons"
LAUNCHD_PLIST_INSTALL_PATH_BACKUP="/Library/LaunchAgents"
LAUNCHD_PLIST_FILENAME="com.audiojinglex.soundtree.agent.plist"
LAUNCHD_PLIST="${LAUNCHD_PLIST_INSTALL_PATH}/${LAUNCHD_PLIST_FILENAME}"
LAUNCHD_PLIST_BACKUP="${LAUNCHD_PLIST_INSTALL_PATH_BACKUP}/${LAUNCHD_PLIST_FILENAME}"

# romove the plist.
if [ -e "${LAUNCHD_PLIST}" ]; then
    /bin/rm -f "${LAUNCHD_PLIST}"
fi

if [ -e "${LAUNCHD_PLIST_BACKUP}" ]; then
    /bin/rm -f "${LAUNCHD_PLIST_BACKUP}"
fi

#/usr/bin/killall -u "_coreaudiod" "coreaudiod"
/bin/launchctl kill SIGTERM system/com.apple.audio.coreaudiod || /usr/bin/killall coreaudiod

echo "restart coreaudio"

sleep 2


This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

How to Remove Audiojingle driver from Apple MacOS Mojave

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.