How to use mole CLI to uninstall apps under /System/Applications? #1142
-
|
I would like to script mole to uninstall |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
I do not think this is something Mole should try to handle as a normal uninstall case. GarageBand is different because it is a removable app under the regular applications area. Apps under: are part of the sealed/protected macOS system area. Apple treats many of those built-in apps as system components, so they are not the same kind of target as a normal third-party app or something installed from the App Store. So my understanding is:
There are ways people try to remove or hide system apps by disabling macOS protections or modifying the sealed system volume, but I would not recommend that as an uninstall workflow. It can break updates, be reverted by macOS updates, or leave the system in an unsupported state. For scripting, the safer options are probably: So the short answer is: Mole can uninstall normal removable apps, but I would not expect it to uninstall protected apps from |
Beta Was this translation helpful? Give feedback.
I do not think this is something Mole should try to handle as a normal uninstall case.
GarageBand is different because it is a removable app under the regular applications area. Apps under:
are part of the sealed/protected macOS system area. Apple treats many of those built-in apps as system components, so they are not the same kind of target as a normal third-party app or something installed from the App Store.
So my understanding is:
/System/Applications: probably not supported, and not something I would ex…