アップデータはシステムサービスに登録されていますlaunchd
。これを完全に無効にする手順については、Mac OS XからAdobe Updaterを無効にする実際の方法を参照してください。
ターミナルウィンドウを開き、次のコマンドを入力します。
cd ~/Library/LaunchAgents
launchctl remove `basename com.adobe.ARM.* .plist`
launchctl remove `basename com.adobe.AAM.* .plist`
launchctl remove com.adobe.ARM.Scheduler-1.0
launchctl remove com.adobe.AAM.Scheduler-1.0
rm com.adobe.ARM.*
rm com.adobe.AAM.*
Adobeプログラムのバージョンによっては、上記の行の一部でエラーが発生する場合があります。それはいいです。
上記で無効にならない場合は、システムレベルで削除する必要があります。上記と同じコマンドを使用しますが、2つの追加/変更があります。
sudo -s
[type your administrator password when prompted]
cd /Library/LaunchAgents
launchctl remove `basename com.adobe.ARM.* .plist`
launchctl remove `basename com.adobe.AAM.* .plist`
launchctl remove com.adobe.ARM.Scheduler-1.0
launchctl remove com.adobe.AAM.Scheduler-1.0
rm com.adobe.ARM.*
rm com.adobe.AAM.*
exit