Re: how to cleanup Disabled Software
Not sure if searching for files will fix this:
sudo find / -path /System/Volumes -prune -false -o -iname "*paragon*" -print 2>/dev/null
/private/var/folders/6n/n5pjs40j65l6yxkj9kknpm080000gn/C/com.paragon-software.extfs.uninstaller
/private/var/folders/6n/n5pjs40j65l6yxkj9kknpm080000gn/C/com.paragon-software.ntfs.uninstaller
This seems to be stored here:
pwd
/var/db/SystemPolicyConfiguration
sudo sqlite3 KextPolicy
SQLite version 3.32.3 2020-06-18 14:16:19
Enter ".help" for usage hints.
sqlite> .tables
deprecation_alert_history kext_policy_mdm
kext_load_history_v3 settings
kext_policy
sqlite> select * from kext_policy;
LSJ6YVK468|com.paragon-software.lvm-for-mac|0|Paragon Software GmbH|52
LSJ6YVK468|com.paragon-software.filesystems.extfs|0|Paragon Software GmbH|32
Apple Software|com.apple.nke.rvi|1|Apple Inc.|4
The question is how to delete it. Obviously delete from kext_policy doesn't work. I tried also in Recovery Mode but in Recovery Mode the folder /private/var/db/SystemPolicyConfiguration is empty.