Mac 上の Apple Safari に対するテストを実行する必要がなくなった場合など、次の手順で Silk Test Information Service を 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