Skip to main content
Solved

Uninstall App using JAMF that was installed manually

  • February 21, 2022
  • 3 replies
  • 113 views

Forum|alt.badge.img+6

Is this possible? I need to bulk uninstall an app that was installed manually but not sure if it's possible to do it with JAMF if it was not initially deployed with it?

Thanks

Best answer by ljcacioppo

It is definitely possible, but depending on the app itself, the process to uninstall may vary depending on what resources it may have installed on the machine

If the app has an uninstaller on the computer, that can be called via a jamf policy as one option. Running a command to just remove the app (like a rm -rf /path/to/application) might work depending on the app as well.

3 replies

ljcacioppo
Forum|alt.badge.img+17
  • Jamf Heroes
  • Answer
  • February 21, 2022

It is definitely possible, but depending on the app itself, the process to uninstall may vary depending on what resources it may have installed on the machine

If the app has an uninstaller on the computer, that can be called via a jamf policy as one option. Running a command to just remove the app (like a rm -rf /path/to/application) might work depending on the app as well.


Forum|alt.badge.img+6
  • Author
  • Contributor
  • February 21, 2022

It is definitely possible, but depending on the app itself, the process to uninstall may vary depending on what resources it may have installed on the machine

If the app has an uninstaller on the computer, that can be called via a jamf policy as one option. Running a command to just remove the app (like a rm -rf /path/to/application) might work depending on the app as well.


The app I'm trying to remove is Filemaker Pro v18.0.3 (in order to then install v19). I see it sits as an actual folder in my Applications so I don't only need to remove just the app but all the contents of that folder I'm guessing (there are extensions and FMI Runtime resources within it)


Tangentism
Forum|alt.badge.img+10
  • Honored Contributor
  • February 22, 2022

The app I'm trying to remove is Filemaker Pro v18.0.3 (in order to then install v19). I see it sits as an actual folder in my Applications so I don't only need to remove just the app but all the contents of that folder I'm guessing (there are extensions and FMI Runtime resources within it)


If you want to completely remove the app and all application & preference files it installs, you'll have to dig around to find them all.

If you have it installed on your device (or one you have access to) you can download 'App Cleaner' (source: https://freemacsoft.net/appcleaner/ ) then drop the main /Applications/Filemaker Pro v18.0.3.app on to it and it will locate all the child files.

Make a note of them then add to a script so it looks something like (but obviously dont use this!):

 

 

#!/bin/bash currentUser=$(stat -f%Su /dev/console) rm "/Applications/Filemaker Pro v18.0.3.app" rm /Library/Preferences/com.application.FilemakerPro.plist # user domain rm -rf "/Users/$currentUser/Library/Application Support/Filemake Pro"