• Suche nach Adobe Bridge Ersatz zum Organisieren meiner Bilder.

    Nach Umstieg auf Affinity und Update zu Catalina vermisse ich nach Ruhestand meiner CS6 nur Adobe Bridge und Acrobat Pro. Ich suche ein Tool mit dem ich effektiv Bilder meine Fotos managen kann.
    Freue mich über Empfehlungen
      • Adobe-Installationen scheitern meist daran, dass bereits früher installierte Adobe-Produkte noch Reste übrig gelassen haben …

        Ich lade morgen mal ein Script hoch (bin grade nicht am Mac), mit welchem alle Adobe-Dateien rückwirkend bis ca. CS4 beseitigt werden können; danach gelingen aktuelle CC-Installationen in der Regel problemlos - das Adobe Remover Tool vom Hersteller selber ist übrigens in den meisten Fällen nicht ausreichend.

        Adobe-Software ist bei Installationen nicht selten zickig und merkwürdig: Bei einem Mac konnte Acrobat Pro nicht über die Creative Cloud Desktop App installiert werden, immer bei 90% brach die Installation ab.
        Ich entdeckte dann im Download-Ordner des Benutzers ein Installer-DMG (ungeöffnet) für Acrobat, erst als dieses Disk Image File gelöscht wurde, funktionierte die Installation über die CC App.
        ----------
        Christian, MacFix.
        • Adobe CC Remover 1.0.2

          http://www.macparc.ch/stuff/bits%26bytes/Adobe_CC_Remover_1.0.2.command.zip


          Dieses Script entfernt alle Adobe-Komponenten von einem Mac!

          (Ausnahme: Individuelle Voreinstellungsdateien werden nicht gelöscht.)


          Nach dem Download und Entpacken muss das Script über das Kontextmenü (Rechtsklick) "Öffnen" gestartet werden, da es nicht mit einem Entwickler-Zertifikat versehen resp. signiert werden kann.

          Bei der Script-Ausführung muss zudem der Zugriff auf „System Events“ (und evtl. weitere Zugriffe) zugelassen werden, ansonsten können z.B. keine Dialoge eingeblendet werden.

          Wir benutzen dieses Script im Hochschulbereich, da bei vielen Studierenden, welche zuvor bereits Adobe-Software verwendet haben, Probleme bei der Installation von aktuellen Adobe Creative Cloud Programmen auftreten.

          Der Neustart des Macs am Schluss wird empfohlen, ist jedoch nicht in jedem Fall notwendig.


          Zur Kontrolle hier auch noch der Quelltext:


          Show Plain Text
          1. #!/bin/bash
          2.  
          3. # Startdialog - Benutzerhinweis
          4.  
          5. osascript -e 'tell app "System Events" to display dialog "Beenden Sie alle Adobe-Programme und speichern Sie ungesicherte Änderungen bei geöffneten Dokumenten." & return & return & "Geben Sie im nachfolgenden Terminalfenster ihr Administratoren-Kennwort ein (der Cursor bewegt sich nicht) und drücken Sie anschliessend auf die Enter-Taste." with title "Adobe CC Remover 1.0.2" buttons "Weiter" default button 1 with icon caution
          6. do shell script "open -a /Applications/Utilities/Terminal.app"'
          7.  
          8.  
          9. # Adobe-Programme (CS6- & CC-Versionen) beenden
          10.  
          11. sudo osascript -e 'quit app "Acrobat Pro DC"'
          12. sudo osascript -e 'quit app "Distiller"'
          13. sudo osascript -e 'quit app "Adobe FormsCentral"'
          14. sudo osascript -e 'quit app "AcroCEF"'
          15. sudo osascript -e 'quit app "AdobeIPCBroker"'
          16. sudo osascript -e 'quit app "After Effects"'
          17. sudo osascript -e 'quit app "Flash"'
          18. sudo osascript -e 'quit app "Flash CC"'
          19. sudo osascript -e 'quit app "Animate CC"'
          20. sudo osascript -e 'quit app "Audition"'
          21. sudo osascript -e 'quit app "Adobe Audition CC"'
          22. sudo osascript -e 'quit app "Adobe Bridge CS6"'
          23. sudo osascript -e 'quit app "Adobe Bridge CC"'
          24. sudo osascript -e 'quit app "Character Animator"'
          25. sudo osascript -e 'quit app "Dreamweaver"'
          26. sudo osascript -e 'quit app "Dreamweaver CC"'
          27. sudo osascript -e 'quit app "Encore"'
          28. sudo osascript -e 'quit app "Extension Manager"'
          29. sudo osascript -e 'quit app "Flash Player"'
          30. sudo osascript -e 'quit app "Illustrator"'
          31. sudo osascript -e 'quit app "Illustrator CC"'
          32. sudo osascript -e 'quit app "InDesign"'
          33. sudo osascript -e 'quit app "InDesign CC"'
          34. sudo osascript -e 'quit app "Lightroom"'
          35. sudo osascript -e 'quit app "Adobe Media Encoder CS6"'
          36. sudo osascript -e 'quit app "Adobe Media Encoder CC"'
          37. sudo osascript -e 'quit app "Media Encoder CC"'
          38. sudo osascript -e 'quit app "Adobe Muse CC"'
          39. sudo osascript -e 'quit app "Photoshop"'
          40. sudo osascript -e 'quit app "Photoshop CC"'
          41. sudo osascript -e 'quit app "Prelude"'
          42. sudo osascript -e 'quit app "Prelude CC"'
          43. sudo osascript -e 'quit app "Premiere Pro"'
          44. sudo osascript -e 'quit app "Premiere Pro CC"'
          45. sudo osascript -e 'quit app "SpeedGrade CC"'
          46.  
          47.  
          48. # Allg. Adobe-Komponenten entfernen
          49.  
          50. sudo rm -Rf /Library/Application\ Support/Adobe/*
          51. sudo rm -Rf /Library/Application\ Support/Adobe*
          52. sudo rm -Rf /Library/Application\ Support/Macromedia/*
          53. sudo rm -Rf /Library/Application\ Support/Macromedia*
          54. sudo rm -Rf /Library/Application\ Support/regid*adobe/*
          55. sudo rm -Rf /Library/Application\ Support/regid*adobe*
          56. sudo rm -Rf /Library/Internet\ Plug-Ins/Adobe*
          57. sudo rm -Rf /Library/Internet\ Plug-Ins/Flash*
          58. sudo rm -Rf /Library/Internet\ Plug-Ins/flash*
          59. sudo rm -Rf /Library/LaunchAgents/com.adobe*
          60. sudo rm -Rf /Library/LaunchDaemons/com.adobe*
          61. sudo rm -Rf /Library/Logs/Adobe/*
          62. sudo rm -Rf /Library/Logs/Adobe*
          63. sudo rm -Rf /Library/Logs/CreativeCloud/*
          64. sudo rm -Rf /Library/Logs/CreativeCloud*
          65. sudo rm -Rf /Library/Logs/DiagnosticReports/Adobe*
          66. sudo rm -Rf /Library/Logs/DiagnosticReports/SpeedGrade*
          67. sudo rm -Rf /Library/PreferencePanes/Flash*
          68. sudo rm -Rf /Library/Preferences/com.Adobe*
          69. sudo rm -Rf /Library/Preferences/com.adobe*
          70. sudo rm -Rf /Library/PrivilegedHelperTools/com.adobe*
          71. sudo rm -Rf /Library/ScriptingAdditions/Adobe*
          72. sudo rm -Rf /private/var/root/Library/Logs/CreativeCloud/*
          73. sudo rm -Rf /private/var/root/Library/Logs/CreativeCloud*
          74. sudo rm -Rf /Users/Shared/Adobe*/*
          75. sudo rm -Rf /Users/Shared/Adobe*
          76. sudo rm -Rf /usr/local/bin/RemoteUpdateManager
          77. sudo rm -Rf /usr/local/remotedesktop/*
          78. sudo rm -Rf /usr/local/remotedesktop
          79.  
          80.  
          81. # Adobe Receipts entfernen
          82.  
          83. sudo rm -Rf /private/var/db/receipts/adobe*
          84. sudo rm -Rf /private/var/db/receipts/com.adobe*
          85.  
          86.  
          87. # Adobe-Programme entfernen
          88.  
          89. sudo rm -Rf /Applications/Adobe*/*
          90. sudo rm -Rf /Applications/Adobe*/
          91. sudo rm -Rf /Applications/Utilities/Adobe*/*
          92. sudo rm -Rf /Applications/Utilities/Adobe*/
          93.  
          94.  
          95. # Adobe Acrobat Pro und Zusatzprogramme beenden
          96.  
          97. sudo killall AdobeAcrobat
          98. sudo killall Distiller
          99. sudo killall Adobe\ FormsCentral
          100. sudo killall AdobeResourceSynchronizer
          101.  
          102.  
          103. # Adobe Creative Cloud App beenden
          104.  
          105. sudo killall Creative\ Cloud
          106. sudo killall AdobeCRDaemon
          107.  
          108.  
          109. # Weitere Adobe-Prozesse beenden
          110.  
          111. sudo killall Adobe\ Desktop\ Service
          112. sudo killall AdobeIPCBroker
          113.  
          114.  
          115. # Enddialog - Benutzerhinweis
          116.  
          117. osascript -e 'tell application "System Events" to display dialog "Alle Adobe-Programme wurden erfolgreich deinstalliert." & return & return & "Starten Sie nun Ihren Mac neu, bevor Sie Adobe-Software neu installieren." with title "Adobe CC Remover 1.0.2" buttons {"Abbrechen", "Neustart"} default button 2
          118. if button returned of result is "Abbrechen" then
          119.   return
          120. else
          121.   do shell script "sudo shutdown -r now"
          122. end if'
          123.  
          124.  
          125. exit 0
          ----------
          Christian, MacFix.
    • XnView n/t