3

Both software update in the Preferences Pane and the manual software update are hanging.

enter image description here

enter image description here

What could be the problem?

OSX 10.15.7

1 Answers1

1

Try this:

sudo /bin/launchctl kickstart -k system/com.apple.softwareupdated && softwareupdate -l

..and enter your admin password when prompted.

You might also need to remove the contents of /Library/Updates/.

da4
  • 5,675
  • 1
    What does this do? – lhf Aug 02 '22 at 16:55
  • launchctl is a macOS built-in binary to manage LaunchAgents and LaunchDaemons; the first half of the command is telling the OS to restart the LaunchDaemon which initiates a software update check. By running it under sudo the process is elevated and can interact with system-level processes. The softwareupdate (after the &&) is simply the command-line interface to Software Update. (Both commands have extensive man entries.) – da4 Aug 03 '22 at 14:18