Created
July 5, 2024 01:04
-
-
Save chilcote/b59c4ae51b91926c90bdba1fd8cb334c to your computer and use it in GitHub Desktop.
return error strings for software update failures
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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