Detecting if a Mac is using Apple Silicon

Like this:

If TargetMacOS Then
  If SystemInformationMBS.isARM Then
    MsgBox "Running ARM version on ARM CPU."
  Elseif SystemInformationMBS.IsTranslated Then
    MsgBox "Running Intel version on ARM CPU."
  Else
    MsgBox "Running Intel version on Intel CPU."
  End If
End If
4 Likes