Mac OS X PC Client: How to Uninstall

How to Uninstall SAFEQ Cloud PC Client from Mac OS

Issue:

SAFEQ Cloud PC Client is installed on an Apple Mac OS and requires uninstalling.

The current SAFEQ Cloud PC client on MacOS cannot be uninstalled by the user once installed.

Resolution:

Manual Uninstallation is possible for administrators:

  1. Download the script to the Mac:
    #!/bin/bash

    USERID=`id -u`
    if [ "$USERID" != "0" ]; then
    echo "Please run this script with a sudo"
    exit 1
    fi

    echo "Uninstalling HCP client..."

    killall hcpclient
    launchctl stop com.everyoneprint.hcpclientservice
    launchctl unload /Library/LaunchDaemons/com.everyoneprint.hcpclientservice.plist
    rm -rf /Library/LaunchDaemons/com.everyoneprint.hcpclientservice.plist
    rm -rf /usr/libexec/cups/backend/hcpportmon
    rm -rf /Applications/hcpclient.app

    echo "Uninstalling HCP client...done"
  2.  Open Terminal (see Note below), and browse to the folder where you have saved the script. 
  3.  Provide execution permission: chmod +x uninstall-mac.sh
  4.  Run the uninstaller: sudo ./uninstall-mac.sh

This will uninstall the SAFEQ Cloud PC client for Mac.

Note: The Terminal app is in the Utilities folder in Applications. To open it, open your Applications folder. Open Utilities and double-click on Terminal, or press Command - spacebar to launch Spotlight and type "Terminal," then double-click the search result.