How to find the Mac OSX serial number.
Sometimes it is required to get serial number of a mac, and you validate on that.
I needed the same, few years back, when I developed a plugin for OsiriX. I was asked to release it in such a way, only few systems can use that plugin.
If we get any better solution than this, that will be quite helpful for all of us.
In About This MacFrom the Apple menu in the corner of your screen, choose About This Mac. You should see an overview of your Mac, including its model name and serial number.
If your computer is turned off or won't turn on, you can flip your Mac over and find the serial number physically printed on the hardware. Look for the text beginning with "Designed by Apple in California," and then look at the lowest line of writing, where you'll find the serial number.
Unfortunately, despite there being some misleading information online, it is NOT possible to track your Mac using the serial number alone – your Mac MUST have 'Find my Mac' switched on, or you must be using an active tracking app.
Use a Mac Terminal Command To find your serial number using this method, open Terminal from the Applications folder or typing Terminal in Spotlight. Next, input the following command “system_profiler SPHardwareDataType | grep Serial” and press the Enter key. Your serial number should appear on the succeeding line.
The following code is mainly copied from Technical Note TN1103,
with small modifications to return an NSString
and to make it compile with ARC:
#include <IOKit/IOKitLib.h>
- (NSString *)getSerialNumber
{
NSString *serial = nil;
io_service_t platformExpert = IOServiceGetMatchingService(kIOMasterPortDefault,
IOServiceMatching("IOPlatformExpertDevice"));
if (platformExpert) {
CFTypeRef serialNumberAsCFString =
IORegistryEntryCreateCFProperty(platformExpert,
CFSTR(kIOPlatformSerialNumberKey),
kCFAllocatorDefault, 0);
if (serialNumberAsCFString) {
serial = CFBridgingRelease(serialNumberAsCFString);
}
IOObjectRelease(platformExpert);
}
return serial;
}
You have to add the IOKit.framework to your build settings.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With