Find Mac OS X Serial number programmatically in Unity3D

Does anyone know if there is a way to get the serial number of the Mac OS X computer running a Unity app? I already have a script written to find the UUID of an iPad, but I want to do the same thing for a Mac computer and grab the device serial. Serial for the Mac OS X would be the number you see in the “About This Mac” window. If this is not practical, is there an equivalent on a Mac OS X computer to an iPad UUID?

Any leads would be appreciated.

Thanks!!

I found the answer to this (sorta)… I dont know about the actual OS X serial number, but you can use the following to get the Hardware UUID:

SystemInfo.deviceUniqueIdentifier

property to grab something unique to the machine.

Thanks