Skip to main content
Question

Bash script uninstall Cirrato?

  • March 14, 2025
  • 3 replies
  • 14 views

Forum|alt.badge.img+7

Does anyone possibly have a bash script to uninstall Cirrato? I have tried many things without success.
I know that Cirrato isn’t a very common software, but I give it a try here anyway.

3 replies

AJPinto
Forum|alt.badge.img+26
  • Legendary Contributor
  • March 14, 2025

When I cant seem to find a clean way to uninstall something I will use Jamf Composer to take a snapshot before I install something. Then write a script that deletes everything that was installed by the installer. 


sdagley
Forum|alt.badge.img+25
  • Jamf Heroes
  • March 14, 2025

@jonros If the Cirrato installer was a .pkg you can dump the list of files that were installed by running the lsbom tool with the -s option on the BOM receipt for that package (which can be found in /private/var/db/receipts/) like this:

lsbom -s /private/var/db/receipts/com.vendor.appname.bom > ~/Desktop/appname\\ BOM\\ Paths\\ Dump.txt

That won't include any files/directories created by scripts run during install. If those need to be removed I'd recommend using Suspicious Package to examine those scripts.


Forum|alt.badge.img+7
  • Author
  • Contributor
  • March 14, 2025

So after many hours of testing I finally managed to solve it. :)

Thanks for your posts anyway.