Posted on 06-25-2014 08:30 AM
I have a dmg that installs an application. The application is just the .app that gets placed into Applications. I know that if I index the dog in Casper Admin I can then remove the application from the client stations.
Here is my question. If a user updates the software on their station but it is named the same thing, will the indexing of my dmg still allow me to remove the application from the client's station? Does the removal just go my file name or my some other indicator?
Solved! Go to Solution.
Posted on 06-25-2014 08:57 AM
I believe it just uses file names and paths, so if all that is happening is the app is getting updated, you should be OK in my experience. OTOH, I've seen some cases of apps that, upon running the first time, create or dump a whole bunch of extra files and folders on disk (see Office for a perfect example) and the Uninstall process will not see these extra files and folders since they aren't part of the original installation. So in some cases, you can get left with remnants of the application's support files.
Again, for simple drag and drop apps, it should be OK. but for more complex apps/installs, you'd be better off looking at a custom uninstall script.
Posted on 06-25-2014 08:57 AM
I believe it just uses file names and paths, so if all that is happening is the app is getting updated, you should be OK in my experience. OTOH, I've seen some cases of apps that, upon running the first time, create or dump a whole bunch of extra files and folders on disk (see Office for a perfect example) and the Uninstall process will not see these extra files and folders since they aren't part of the original installation. So in some cases, you can get left with remnants of the application's support files.
Again, for simple drag and drop apps, it should be OK. but for more complex apps/installs, you'd be better off looking at a custom uninstall script.
Posted on 06-25-2014 06:56 PM
I've had really good experiences uninstalling .dmg's created with Composer. The index seems to use the filename and path mm2270 mentions.
I also have a personal policy to making sure that I keep older packages around just for those situations where an update has dramatically changed locations of files. Generally these are major rev packages. Something like Firefox or Skype will probably never give you an issue if you plan on leaving your users settings alone during an uninstall.
Posted on 06-27-2014 12:47 PM
Thanks for the help, just wanted to make sure.