Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are several terminal commands to retrieve the numerical / abbreviated Model Identifier for Mac hardware.

  • sysctl hw.model
  • system_profiler SPHardwareDataType

These dump a string with the hardware name and x,y versioning. Currently we have to maintain a table to convert these identifiers into the full english machine description.

Is there an API, or better a command line tool that can produce the more human friendly names that match Apple's documentation MacBook Pro 15-inch, Mid 2009 instead of the more abbreviated MacBookPro5,3 Model Identifier?enter image description here

Quite simply, how does System Profiler get the nice full names of Macs and can I exploit that information systematically via script or program?

share|improve this question

2 Answers

up vote 6 down vote accepted

ServerKit.framework has a property list within its resources that can help you with model identifier <-> model name string translation:

/System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/Resources/English.lproj/XSMachineAttributes.plist

share|improve this answer
1  
In new version of SDK, it's in /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Resourc‌​es/English.lproj/SIMachineAttributes.plist – Itachi May 13 at 9:42

Did check the network traffic. System Information is connecting to

http://support-sp.apple.com

A full query looks like:

http://support-sp.apple.com/sp/product?cc=DJWR&lang=de_DE

Where 'DJWR' are the last four characters of the serial number

More info here: http://blog.coriolis.ch/2011/08/01/get-your-apple-device-model-name-in-a-readable-format/

share|improve this answer
Wow - now that is a cool API. I would comment that this API does seem to expose some shift in serial numbers by Apple. Either the last 3 characters or the last 4 characters are to be sent. In my case, my iPad (TZ39) and MacBook Pro (J64B) cause errors, but work when I send the last three. I seem to recall hearing that the serial number encoding scheme changed to differentiate between 2009 / 2010 / 2011 manufacture earlier in the string, but I'll just use this API to send 4 and then re-try with 3 if I get an error. Great answer and alternate to the PrivateFramework plist. – bmike Nov 22 '11 at 15:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.