Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

SystemInfo.MacProductName

Queries the product name of the Mac.

Component Version macOS Windows Linux Server iOS SDK
SystemInfo 15.4 ✅ Yes ❌ No ❌ No ✅ Yes, on macOS ❌ No
MBS( "SystemInfo.MacProductName" )

Parameters

none

Result

Returns text or error.

Description

Queries the product name of the Mac.
Only for Apple Silicon Macs.

Examples

Query product name on Macbook Pro M3:

MBS( "SystemInfo.MacProductName" )

Example result: MacBook Pro (16-inch, Nov 2023)

Query various names on MacBook Pro with M3 Max:

JSONFormatElements ( JSONSetElement ( "{}" ;
["MacModel" ; MBS("SystemInfo.MacModel") ; JSONString];
["MacProductName" ; MBS("SystemInfo.MacProductName") ; JSONString];
["MacProductSOCName" ; MBS("SystemInfo.MacProductSOCName") ; JSONString];
["ComputerName" ; MBS("SystemInfo.ComputerName") ; JSONString] ) )

Example result:
{ "ComputerName" : "MyMacM3", "MacModel" : "Mac15,9", "MacProductName" : "MacBook Pro (16-inch, Nov 2023)", "MacProductSOCName" : "Apple M3 Max" }

See also

Release notes

Blog Entries

This function is free to use.

Created 4th September 2025, last changed 4th September 2025


SystemInfo.MacModel - SystemInfo.MacProductSOCName