Mac 删除不必要的 Adobe PS AI 组件
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                Mac 删除不必要的 Adobe PS AI 组件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
                                Mac 刪除不必要的 Adobe 組件
安裝完 Adobe Photoshop Illustrator 之后那個 Cloud 每次啟動都有,挺煩的,照下面的方式可以刪除不必要的組件
一:通過以下路徑找到有關 Adobe 的文件并且刪除
這些啟動項大部分是跟Adobe的自動更新有關。
 【注意!】 找到相關的刪除,不是刪除文件夾內的所有文件!
二:進入系統偏好設置,在“擴展”中關閉 Core Sync 和 Core Sync Helper。
三:前往 /Applications/Utilities/Adobe Creative Cloud ,刪除 CCLibrary、CCXProcess 以及CoreSync文件夾。
如果不能刪除,在【Finder】 -【應用程序】-【實用工具】-【活動監視器】里強制退出 CCLibrary.app、CCXProcess.app以及CoreSync.app進程之后再刪除。
四:重啟。
腳本
#!/bin/shecho "--------------------START-----------------------" echo 與 Adobe 相關的文件(如果只顯示路徑,就說明已經刪除了,如果沒有,需要手動刪除) echo "【~/Library/LaunchAgents/】" ls -al ~/Library/LaunchAgents/ | grep adobeecho "【/Library/LaunchAgents/】" ls -al /Library/LaunchAgents/ | grep adobeecho "【/Library/LaunchDaemons/】"ls -al /Library/LaunchDaemons/ | grep adobeecho "【/System/Library/LaunchAgents/】" ls -al /System/Library/LaunchAgents/ | grep adobeecho "【/System/Library/LaunchDaemons】" ls -al /System/Library/LaunchDaemons/ | grep adobeecho "【結果】:三個組件刪除情況(CCLibrary,CCXProcess,CoreSync)"find ~/Library/LaunchAgents/ -name *adobe* -exec sudo rm -f {} \; find /Library/LaunchAgents/ -name *adobe* -exec sudo rm -f {} \; find /Library/LaunchDaemons/ -name *adobe* -exec sudo rm -f {} \; find /System/Library/LaunchAgents/ -name *adobe* -exec sudo rm -f {} \; find /System/Library/LaunchDaemons -name *adobe* -exec sudo rm -f {} \;sudo rm -Rf /Applications/Utilities/Adobe\ Creative\ Cloud/CCLibrary/ if [ $? -eq 0 ]; thenecho " - Delete CCLibrary success" elseecho " - Delete CCLibrary fail" fisudo rm -Rf /Applications/Utilities/Adobe\ Creative\ Cloud/CCXProcess/ if [ $? -eq 0 ]; thenecho " - Delete CCXprocess success" elseecho " - Delete CCXprocess fail" fisudo rm -Rf /Applications/Utilities/Adobe\ Creative\ Cloud/CoreSync/ if [ $? -eq 0 ]; thenecho " - Delete CoreSync success" elseecho " - Delete CoreSync fail" fi echo "--------------------END-----------------------"總結
以上是生活随笔為你收集整理的Mac 删除不必要的 Adobe PS AI 组件的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: Java 输入输出流实验
- 下一篇: 超宽带 DWM1000模块 应用
