How can I list all updates installed on Mac OS X?
15 Answers
The list of all installed updates is located in /Library/Receipts/InstallHistory.plistif you don't want to use the Software Update preference pane.
System Prefs > Software Update > Installed Software.
Sort by date.
1Open the System Information application which can be found in /Applications/Utilities. Then go to Software -> Installations and there you have it.
This solution works on old and new versions of OS X (I've tested it on 10.8.2).
Use the following command:
/usr/sbin/system_profiler SPInstallHistoryDataTypeWhich is the command line alternative to "System Profile"
Do not rely on AppStore to tell you if you have the latest updates installed. It will lie to you.
Open the Terminal application and type the following and hit enter:
softwareupdate --history
Shows the Mac OS install history, including updates. By default, only displays updates installed by softwareupdate. To see all installs including Applications type the following and hit enter:
softwareupdate --history --all
Not sure if this works on older MacOS releases, but it works for High Sierra as of 10.13.4.