似乎Adobe Update Notifier有时会在启动时自动启动,但是我找不到从哪里启动它。我已经签入了Lingon以及我的登录启动项,但它不存在。
知道还有什么可能吗?整个过程是:
/ Applications / Utilities / Adobe Application Manager / UWA / AAM Updates Notifier.app/Contents/MacOS/AAM Updates Notifier -psn_0_127007
似乎Adobe Update Notifier有时会在启动时自动启动,但是我找不到从哪里启动它。我已经签入了Lingon以及我的登录启动项,但它不存在。
知道还有什么可能吗?整个过程是:
/ Applications / Utilities / Adobe Application Manager / UWA / AAM Updates Notifier.app/Contents/MacOS/AAM Updates Notifier -psn_0_127007
Answers:
更新程序已在系统服务中注册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程序版本,上述某些行可能会产生错误。没关系。
如果上述方法没有禁用它,则可能需要在系统级别将其删除。您将使用与上述相同的命令,但有两个附加的更改:
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
launchctl remove "com.adobe.AAM.Scheduler-1.0"
then rm com.adobe.AAM.Updater-1.0.plist
。
plist
文件的名称。我已经更新了答案以反映您的发现。谢谢!
sudo su
可以是exit
从根shell到用户的一个
sudo su USERNAME
如通过@tubedogg建议可以与退出exit
再次变回根用户。如果其他人使用计算机,可能会导致问题!因此,每当使用sudo su root
always(!)时,请使用exit
之后才能正确退出!
launchctl list | grep adobe
则不会返回任何结果。
尝试使用Adobe Manager还有另外一件好事:从Mac上删除Adobe Manager应用程序。执行以下步骤后,当您启动任何Adobe软件时,您将收到一条消息,指出您的计算机上未安装Adobe Manager,但它将正常启动。请在下面的步骤中查找。
查找Adobe Manager的安装位置。当Adobe Manager应用程序运行时,您可以找到其路径位置,其中列出了OS X的进程。终端中的命令是“ ps aux | grep Adobe”。执行此命令后,您将看到Mac中正在运行的所有Adobe进程。
查找该行中具有“ Adobe Manager”的进程的位置。文件可能位于名为“ Utilities”或类似名称的文件夹中。如果您打开了Dreamweaver或另一个Adobe应用程序,它也会也在列表中,但是您只能选择一行中带有“ Adobe Manager”的应用程序。
之后,您已使用名称的Adobe Manager删除了文件夹。您可以使用Finder或在终端中使用命令“ sudo rm -R”进行操作
希望对您有所帮助。