如何阻止“AAM 更新通知程序”自动启动?

Oll*_*ers 13 macos

我刚刚找到了无法从 OS X 菜单栏中删除的进程名称。

它的名称是“AAM 更新通知程序”,我可以使用活动监视器退出它。如何确保下次重新启动计算机时它不会再次启动?

slh*_*hck 16

如果它不在System Preferences → Accounts → Login items 中,则可能为它设置了 Launch Agent。

有两种方法可以处理这个问题。

1. 删除 Launch Agent 条目

根据此进程信息,您应该删除以下文件:

  • ~/Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
  • /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist

你也可以编辑它们:

  • Where <key>RunAtLoad</key> is <true/>, change it to <false/>.

2. Disable the update process

This article suggests to run the following command:

defaults write com.adobe.AdobeUpdater.Admin Disable.Update -bool yes
Run Code Online (Sandbox Code Playgroud)

You should maybe log out and log in again.