Created
November 3, 2016 16:29
-
-
Save pudquick/5a9f5f02c53b3fa648c5704e34b1db8a to your computer and use it in GitHub Desktop.
Get nvram values via python and pyobjc on macOS
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
import objc | |
from Foundation import NSBundle | |
IOKit_bundle = NSBundle.bundleWithIdentifier_('com.apple.framework.IOKit') | |
functions = [ | |
("IORegistryEntryFromPath", b"II*"), | |
("IORegistryEntryCreateCFProperty", b"@I@@I"), | |
] | |
objc.loadBundleFunctions(IOKit_bundle, globals(), functions) | |
def nvram(keyname): | |
raw = IORegistryEntryCreateCFProperty(IORegistryEntryFromPath(0, "IODeviceTree:/options"), keyname, None, 0) | |
# This returns the raw bytes | |
# For string values, this will be what you're looking for | |
# For more complex/structured values, you may need to parse the bytes | |
return raw.bytes().tobytes() | |
# example usage: | |
# Look up a macOS device serial number via nvram | |
def serialnumber(): | |
return nvram("4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14:SSN") |
@n8felton Nice! That works for me too, on same build of Python 3 and ObjC. Time to update functions.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Chalcahuite This needs to be slightly modified to work with Python 3. I've updated my fork of this code over at https://gist.github.com/n8felton/649f66baf51c2c4c33d46b8c25433a7f and was tested working with Python 3.9.5 and objc 7.1