To uninstall the Silk Test information service (information service) from a Mac, for example if you no longer want to execute tests against Apple Safari on the Mac:
#!/bin/sh if launchctl list | grep com.borland.infoservice ; then launchctl unload /Library/LaunchAgents/com.borland.infoservice.plist echo "unloading Launch Daemon" fi if [ -d "/Applications/Silk" ] then sudo rm -rf /Applications/Silk fi if [ -f "/Library/LaunchAgents/com.borland.infoservice.plist" ] then sudo rm /Library/LaunchAgents/com.borland.infoservice.plist fi if [ -f "/usr/local/bin/ideviceinstaller" ] then sudo rm /usr/local/bin/ideviceinstaller fi exit 0