Where is systeminfo.plist ? I could not find it withis there a way to safely edit the systeminfo.plist
sudo find /Library -iname "*systeminfo*"
or sudo find /System/Library -iname "*systeminfo*"
is there a way to safely edit the systeminfo.plist with TextEdit to reflect actual current installs and not include items that were uninstalled?
if so, where would I find it?
noAre you talking about the list of packages included in the output of "pkgutil --pkgs"?
Perhaps you could enlighten us with the exact path to the file in question as several people on here don't seem to have the same file you are referencing.
What is plutil? Is that part of Xcode? Or is it for use in Terminal? And for XML editor, perhaps BBEdit?However you referenced "current installs" which are normally managed by pkgutil/etc (which are not great but...).
Also what is your definition of "safely"? As I assume you already know based on your question about editing a .plist file, you can use "plutil" to convert a binary .plist file to one in XML format, which of course can then be edited with TextEdit. Manually editing an XML file isn't usually considered "safe", but it isn't usually catastrophic (e.g. related program just errors out). There are XML editors that can ensure conformance though that would be outside of TextEdit.
The "defaults" command can be used to change the entries in preferences-related plist files relatively safely but not sure if the file you mention falls under that category.
True.Otherwise the only "officially supported" or "safe" way to edit a plist file is by using the program that created it but of course I am sure you wouldn't be asking about editing a plist file with TextEdit if that option worked for you.
Thanks for this link. There is an app that is specific for uninstalling audio plugs that I use.UninstallPKG https://www.corecode.io/uninstallpkg/
"PKG uninstaller made on a zsh shell script" https://forums.macrumors.com/threads/pkg-uninstaller-made-on-a-zsh-shell-script.2423127/
There is a plist: /Library/Receipts/InstallHistory.plistI can't, I just assume that it exists (coz there's a plist for everything in the OS), and I'd like to edit it to reflect reality.