Skip to content

Instantly share code, notes, and snippets.

@chilcote
Created July 5, 2024 01:04
Show Gist options
  • Save chilcote/b59c4ae51b91926c90bdba1fd8cb334c to your computer and use it in GitHub Desktop.
Save chilcote/b59c4ae51b91926c90bdba1fd8cb334c to your computer and use it in GitHub Desktop.
return error strings for software update failures
#!/usr/bin/python3
import plistlib, sys
plist = "/System/Library/PrivateFrameworks/SoftwareUpdateMacController.framework/Versions/A/Resources/SUMacControllerError.loctable"
with open(plist, 'rb') as f:
d = plistlib.load(f)['en']
if len(sys.argv) == 1:
for k, v in sorted(d.items()):
print("%s: %s" % (k, v))
exit(0)
for i in sys.argv[1:]:
try:
print("%s: %s" % (i, d[i]))
except KeyError:
print("Error: Cannot find code: %s" % i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment