Platforms to show: All Mac Windows Linux Cross-Platform
Back to SystemInformationMBS module.
SystemInformationMBS.isWindows8(orHigher as boolean = false) as Boolean
Function:
Returns true if called on Windows 8.
Example:
Notes:
And False on Mac OS X, Linux, Windows 7/Vista/XP/2000/ME/98/95.
If orHigher, than it returns true if OS Version is newer.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 12.3 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Example:
msgbox str(SystemInformationMBS.isWindows8)
And False on Mac OS X, Linux, Windows 7/Vista/XP/2000/ME/98/95.
If orHigher, than it returns true if OS Version is newer.
Some examples using this method:
SystemInformationMBS.isWindows81(orHigher as boolean = false) as Boolean
Function:
Returns true if called on Windows 8.1
Example:
Notes:
And False on Mac OS X, Linux, Windows 7/Vista/XP/2000/ME/98/95/8/10.
If orHigher, than it returns true if OS Version is newer.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 15.1 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Example:
msgbox str(SystemInformationMBS.isWindows81)
And False on Mac OS X, Linux, Windows 7/Vista/XP/2000/ME/98/95/8/10.
If orHigher, than it returns true if OS Version is newer.
Some examples using this method:
SystemInformationMBS.isWindowsVista(orHigher as boolean = false) as Boolean Deprecated
Function:
Returns true if called on Windows Vista.
Example:
And False on Mac OS X, Linux, Windows 7/XP/2000/ME/98/95.
If orHigher, than it returns true if OS Version is newer.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.4 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Example:
msgbox str(SystemInformationMBS.isWindowsVista)
This item is deprecated and should no longer be used.
Notes:
And False on Mac OS X, Linux, Windows 7/XP/2000/ME/98/95.
If orHigher, than it returns true if OS Version is newer.
SystemInformationMBS.isWindowsXP(orHigher as boolean = false) as Boolean Deprecated
Function:
Returns true if called on Windows XP.
Example:
And False on Mac OS X, Linux, Windows 7/Vista/2000/ME/98/95.
If orHigher, than it returns true if OS Version is newer.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.4 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Example:
msgbox str(SystemInformationMBS.isWindowsXP)
This item is deprecated and should no longer be used.
Notes:
And False on Mac OS X, Linux, Windows 7/Vista/2000/ME/98/95.
If orHigher, than it returns true if OS Version is newer.
SystemInformationMBS.isYosemite(orHigher as boolean = true) as boolean
Function:
Whether the operation system is Mac OS X 10.10 Yosemite or newer.
Example:
Notes:
Returns true on Mac OS X 10.10 or newer.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 14.3 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Example:
MsgBox str(SystemInformationMBS.isYosemite)
Some examples using this method:
SystemInformationMBS.LogicalRAM as Double Deprecated
Function:
Returns the size of the logical installed memory.
Example:
On Windows the total virtual memory size.
On Linux always 4 GB.
In older plugins this function was named LogicalRAMMBS.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Example:
msgBox format(SystemInformationMBS.LogicalRAM/1024/1024,"0")+" MB of RAM built in."
This item is deprecated and should no longer be used.
Notes:
On Windows the total virtual memory size.
On Linux always 4 GB.
In older plugins this function was named LogicalRAMMBS.
SystemInformationMBS.MACAddress as string
Function:
Returns the hardware ethernet address of the first ethernet card.
Example:
Notes:
It returns a string with 6 bytes.
Works now with MBS Plugin 2.6 for Mac OS Classic, Carbon inside Classic and Mac OS X, but may not work for a Classic application running on Mac OS X. And may fail on some machines if no OpenTransport is running.
On Windows and Mac OS X you can have multiple ethernet cards and you should use a command line tool with the shell class to find what you need.
For example on Windows:
ipconfig /all
or on Mac OS X:
ifconfig -a
You can replace this function with usage of the NetworkInterface class in newer RB versions.
Added Linux support in version 16.4.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
msgBox SystemInformationMBS.MACAddress
It returns a string with 6 bytes.
Works now with MBS Plugin 2.6 for Mac OS Classic, Carbon inside Classic and Mac OS X, but may not work for a Classic application running on Mac OS X. And may fail on some machines if no OpenTransport is running.
On Windows and Mac OS X you can have multiple ethernet cards and you should use a command line tool with the shell class to find what you need.
For example on Windows:
ipconfig /all
or on Mac OS X:
ifconfig -a
You can replace this function with usage of the NetworkInterface class in newer RB versions.
Added Linux support in version 16.4.
SystemInformationMBS.MACAddressString as string
Function:
Returns the hardware ethernet address of the first ethernet card.
Example:
Notes:
Same as MACAddress, but with different format of output.
You can replace this function with usage of the NetworkInterface class in newer RB versions.
The plugin asks on Mac OS X the IOKit framework for the primary ethernet interface. We are not sure what Apple really defines for being the primary one, so let's test it:
Added Linux support in version 16.4.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
msgBox SystemInformationMBS.MACAddressString
Same as MACAddress, but with different format of output.
You can replace this function with usage of the NetworkInterface class in newer RB versions.
The plugin asks on Mac OS X the IOKit framework for the primary ethernet interface. We are not sure what Apple really defines for being the primary one, so let's test it:
- Ethernet on and Airport off -> Ethernet MAC Address
- Ethernet off and Airport on -> Ethernet MAC Address
Added Linux support in version 16.4.
Some examples using this method:
SystemInformationMBS.MacBoardID as string
Function:
Queries board-id for Mac.
Example:
Notes:
e.g. "Mac-1234567890123456"
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 19.4 | ✅ Yes | ❌ No | ❌ No | ❌ No | Desktop, Console & Web |
Example:
MsgBox SystemInformationMBS.MacBoardID
SystemInformationMBS.MacBugFixVersion as Integer
Function:
The BugFix part of the Mac OS version number.
Example:
Notes:
The bug fix system version number; in 10.4.17 this would be the decimal value 17.
Intel apps running in Rosetta on Apple M1 will report 10.16 instead of 11.x.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 10.3 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
Example:
MsgBox str(SystemInformationMBS.MacBugFixVersion)
The bug fix system version number; in 10.4.17 this would be the decimal value 17.
Intel apps running in Rosetta on Apple M1 will report 10.16 instead of 11.x.
Some examples using this method:
SystemInformationMBS.MacHasHardwareAcceleratedCoreImage as boolean
Function:
Queries whether hardware accerlation is used for CoreImage.
Example:
Notes:
Queries OpenGL whether programmable fragments are supported.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ❌ No | ❌ No | ❌ No | Desktop, Console & Web |
Example:
if SystemInformationMBS.MacHasHardwareAcceleratedCoreImage then
msgbox "CoreImage should be very fast."
else
msgbox "CoreImage may be slow."
end if
Some examples using this method:
SystemInformationMBS.MachineID(flags as Integer = 15) as string
Function:
Returns a Machine ID for the current computer.
Example:
Notes:
Returns a 32 byte long hex string with a Machine ID.
Example value: "EE537483656B25996B51B7F4C99F9083".
This ID is based on the results of the MacSerialNumber, MacModel, CPUBrandString and HardDiscSerial functions. If all 4 functions have no value, the result is always "A2254DEF74A74608D76D1BA49BD2E82A". Also the result could change in future if we fix a bug in one of the functions so that the result values differ.
It is not based on the MACAddressString function as your MAC Address can change when switching between wired and wireless networks. Also we do not check the PhysicalRAM as RAM is a typical thing which changes over time.
You can store this value in some prerences/license file and later compare it agains the current value to see if the machine may have changed. In that case ask user to revalidate license, for example by asking for the serial number.
It can happen that 2 PCs have the same MachineID, typical two virtual machines. So this ID is not unique. But it is very likely that two different computers produce different MachineIDs.
Added flags parameter in 14.1:
The Machine ID may be different if one of the components returns a different result. Result may be different in whether app runs as admin or not on Windows.
In Windows 8.1 it looks like WindowsWMIMBS.InitSecurity(false) must be called at app.open time as Xojo will do some things in background when opening first window which block our queries.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 10.3 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
// this is how we build it.
dim t as string = "MachineID"+SystemInformationMBS.HardDiscSerial+SystemInformationMBS.MacSerialNumber+SystemInformationMBS.MacModel+SystemInformationMBS.CPUBrandString
// you could extend it with SystemInformationMBS.WinProductKey
dim m as string = MD5StringMBS(t)
MsgBox "Machine ID: "+SystemInformationMBS.MachineID+EndOfLine+"My Machine ID: "+m
Returns a 32 byte long hex string with a Machine ID.
Example value: "EE537483656B25996B51B7F4C99F9083".
This ID is based on the results of the MacSerialNumber, MacModel, CPUBrandString and HardDiscSerial functions. If all 4 functions have no value, the result is always "A2254DEF74A74608D76D1BA49BD2E82A". Also the result could change in future if we fix a bug in one of the functions so that the result values differ.
It is not based on the MACAddressString function as your MAC Address can change when switching between wired and wireless networks. Also we do not check the PhysicalRAM as RAM is a typical thing which changes over time.
You can store this value in some prerences/license file and later compare it agains the current value to see if the machine may have changed. In that case ask user to revalidate license, for example by asking for the serial number.
It can happen that 2 PCs have the same MachineID, typical two virtual machines. So this ID is not unique. But it is very likely that two different computers produce different MachineIDs.
Added flags parameter in 14.1:
flagHardDiscSerial | 1 | Use hard disk serial. |
flagMacSerialNumber | 2 | Use Mac Serial number (on Mac) |
flagMacModel | 4 | Use Mac Model (on Mac) |
flagCPUBrandString | 8 | Use CPU Brand String. |
flagWinProductKey | 16 | Use Product Key (on Windows only) |
The Machine ID may be different if one of the components returns a different result. Result may be different in whether app runs as admin or not on Windows.
In Windows 8.1 it looks like WindowsWMIMBS.InitSecurity(false) must be called at app.open time as Xojo will do some things in background when opening first window which block our queries.
SystemInformationMBS.MacMajorVersion as Integer
Function:
The major Mac OS version number.
Example:
Notes:
The major system version number; in 10.4.17 this would be the decimal value 10.
On macOS Big Sur, this returns 11 in Apple Silicon application and 10 in Intel application.
On macOS Monterey this returns 12.
If your Intel application is build with older SDK (e.g. Xojo 2019), the result reported version will still be macOS 10.16.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 10.3 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
Example:
// show major version number
MsgBox str(SystemInformationMBS.MacMajorVersion)
// and show all three version numbers together:
MsgBox str(SystemInformationMBS.MacMajorVersion)+"."+str(SystemInformationMBS.MacMinorVersion)+"."+str(SystemInformationMBS.MacBugFixVersion)
The major system version number; in 10.4.17 this would be the decimal value 10.
On macOS Big Sur, this returns 11 in Apple Silicon application and 10 in Intel application.
On macOS Monterey this returns 12.
If your Intel application is build with older SDK (e.g. Xojo 2019), the result reported version will still be macOS 10.16.
Some examples using this method:
SystemInformationMBS.MacMinorVersion as Integer
Function:
The minor Mac OS version number.
Example:
Notes:
The minor system version number; in 10.4.17 this would be the decimal value 4.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 10.3 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
Example:
MsgBox str(SystemInformationMBS.MacMinorVersion)
Some examples using this method:
SystemInformationMBS.MacModel as string
Function:
Returns the Mac model string.
Example:
Notes:
for example "<powermac7,3>".
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ❌ No | ❌ No | ❌ No | Desktop, Console & Web |
Example:
msgbox SystemInformationMBS.MacModel
Some examples using this method:
SystemInformationMBS.MacROMBootVersion as string
Function:
Returns boot ROM version string.
Example:
Notes:
e.g. "220.270.99.0.0 (iBridge: 16.16.6571.0.0,0)"
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 19.4 | ✅ Yes | ❌ No | ❌ No | ❌ No | Desktop, Console & Web |
Example:
MsgBox SystemInformationMBS.MacROMBootVersion
SystemInformationMBS.MacSerialNumber as string
Function:
Returns the serial number of your local Mac.
Example:
Notes:
May return an empty string in case of an error.
(e.g. when being user on Windows or if the Mac does not know its serialnumber)
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ❌ No | ❌ No | ❌ No | Desktop, Console & Web |
Example:
msgbox SystemInformationMBS.MacSerialNumber
May return an empty string in case of an error.
(e.g. when being user on Windows or if the Mac does not know its serialnumber)
Some examples using this method:
SystemInformationMBS.MacUUID as string
Function:
Returns the unique identifier for the given Mac.
Example:
Notes:
Returns "" on any error.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ❌ No | ❌ No | ❌ No | Desktop, Console & Web |
Example:
msgbox SystemInformationMBS.MacUUID
Some examples using this method:
SystemInformationMBS.MacVRAMSize as Int64
Function:
Queries the size of the main video graphics memory size.
Example:
Notes:
Walks over the list of displays, asks on each display for its VRAM size and returns the first value found.
For some reason this seems not to return more than 256 MB of memory.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ❌ No | ❌ No | ❌ No | Desktop, Console & Web |
Example:
msgbox format(SystemInformationMBS.MacVRAMSize,"0")+" Bytes VRAM."
Walks over the list of displays, asks on each display for its VRAM size and returns the first value found.
For some reason this seems not to return more than 256 MB of memory.
Some examples using this method:
SystemInformationMBS.OSName as string
Function:
Returns a string to display which OS Version you have.
Example:
Notes:
Return values possible:
Windows NT
Windows 2000
Windows XP
Windows Vista
Mac OS
Mac OS X
Linux
and a few other Windows versions like 6.2 alias 8.
In older plugins this function was named OSNameMBS.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
msgBox SystemInformationMBS.OSName
' may show: Mac OS X
Return values possible:
Windows NT
Windows 2000
Windows XP
Windows Vista
Mac OS
Mac OS X
Linux
and a few other Windows versions like 6.2 alias 8.
In older plugins this function was named OSNameMBS.
Some examples using this method:
SystemInformationMBS.OSVersionString as string
Function:
Returns a string to display which OS Version you have.
Example:
Notes:
GetOSVersionStr returns the version string of the OS.
Some Possible values:
"System 7.5.3",
"MacOS 8",
"MacOS 9.1",
"MacOS X 10.4.1",
"Windows NT 3.5",
"Windows 2000 (Service Pack 3)".
In older plugins this function was named OSVersionStrMBS.
On macOS Big Sur, this returns 11.x in Apple Silicon application and 10.6 in Intel application.
On macOS Monterey this returns 12.x.
If your Intel application is build with older SDK (e.g. Xojo 2019), the result reported version will still be macOS 10.16.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
msgBox SystemInformationMBS.OSVersionString
' may show: Mac OS X 10.1.2
GetOSVersionStr returns the version string of the OS.
Some Possible values:
"System 7.5.3",
"MacOS 8",
"MacOS 9.1",
"MacOS X 10.4.1",
"Windows NT 3.5",
"Windows 2000 (Service Pack 3)".
In older plugins this function was named OSVersionStrMBS.
On macOS Big Sur, this returns 11.x in Apple Silicon application and 10.6 in Intel application.
On macOS Monterey this returns 12.x.
If your Intel application is build with older SDK (e.g. Xojo 2019), the result reported version will still be macOS 10.16.
Some examples using this method:
SystemInformationMBS.PhysicalRAM as Double
Function:
Returns the size of the physical installed memory.
Example:
Notes:
On old Windows versions some hundred KBs less for DOS.
Result changed from integer to double in plugin version 3.4 to return correct results on 2 GB RAM. In v5.2 changed to return correct values on Macs with more than 4 GB of RAM.
On Windows the total physical memory size.
In older plugins this function was named PhysicalRAMMBS.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
msgBox format(SystemInformationMBS.PhysicalRAM/1024/1024,"0")+" MB of RAM built in."
On old Windows versions some hundred KBs less for DOS.
Result changed from integer to double in plugin version 3.4 to return correct results on 2 GB RAM. In v5.2 changed to return correct values on Macs with more than 4 GB of RAM.
On Windows the total physical memory size.
In older plugins this function was named PhysicalRAMMBS.
Some examples using this method:
SystemInformationMBS.ProcessorCount(Mode as Integer = 0) as Integer
Function:
Returns the number of processors on the target system.
Example:
Notes:
With plugin version 18.0, we added mode parameter. Pass 2 for physical CPU (kProcessorCountPhysical) and 1 for logical CPU count (kProcessorCountLogical) on Mac/Win.
On Windows or Mac OS the number of cores.
On Linux the number of configured CPUs.
Returns 1 on any error.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.2 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
MsgBox _
str(SystemInformationMBS.ProcessorCount(SystemInformationMBS.kProcessorCountDefault ))+" default" + EndOfLine + _
str(SystemInformationMBS.ProcessorCount(SystemInformationMBS.kProcessorCountLogical ))+" logical" + EndOfLine + _
str(SystemInformationMBS.ProcessorCount(SystemInformationMBS.kProcessorCountPhysical))+" physical"
With plugin version 18.0, we added mode parameter. Pass 2 for physical CPU (kProcessorCountPhysical) and 1 for logical CPU count (kProcessorCountLogical) on Mac/Win.
On Windows or Mac OS the number of cores.
On Linux the number of configured CPUs.
Returns 1 on any error.
SystemInformationMBS.ShortUsername as string
Function:
Returns the short name of the current user.
Example:
Notes:
On Linux and Mac OS X the short user name.
On all other cases the same as UserName function.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Example:
msgbox "Welcome "+SystemInformationMBS.ShortUsername+"!"
On Linux and Mac OS X the short user name.
On all other cases the same as UserName function.
SystemInformationMBS.SystemFont as string
Function:
Returns the name of the used system font.
Example:
Notes:
On Windows the system function returns "System" for our tests. Please tell us if this function is not working for you correct on Windows.
On Linux something like "Sans 10" is returned.
In older plugins this function was named SystemFontMBS.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
msgbox "You are using the system font "+SystemInformationMBS.SystemFont+"."
On Windows the system function returns "System" for our tests. Please tell us if this function is not working for you correct on Windows.
On Linux something like "Sans 10" is returned.
In older plugins this function was named SystemFontMBS.
SystemInformationMBS.Username as string
Function:
Returns the name of the current user.
Example:
Notes:
Code for Multiple User on Mac OS 9 is build in, but I can't test it.
This is tried on Mac OS:
1. Mac OS X Username function.
2. AppleEvent to FileSharing.
3. Mulitple User Username (Mac OS 9)
4. System username from system resource.
In older plugins this function was named UserNameMBS.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 8.0 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | Desktop, Console & Web |
Example:
msgbox "Welcome "+SystemInformationMBS.Username+"!"
Code for Multiple User on Mac OS 9 is build in, but I can't test it.
This is tried on Mac OS:
1. Mac OS X Username function.
2. AppleEvent to FileSharing.
3. Mulitple User Username (Mac OS 9)
4. System username from system resource.
In older plugins this function was named UserNameMBS.
SystemInformationMBS.WinBuildNumber as Integer
Function:
The build number of the operating system.
Example:
Notes:
For example returns 2600 on Windows XP Build 2600.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 10.3 | ❌ No | ✅ Yes | ❌ No | ❌ No | Desktop, Console & Web |
Example:
MsgBox str(SystemInformationMBS.WinBuildNumber)
Some examples using this method:
SystemInformationMBS.WinCSDVersion as string Deprecated
Function:
A string, such as "Service Pack 3", that indicates the latest Service Pack installed on the system.
Example:
Shows here "Service Pack 3" on a Windows XP installation.
If no Service Pack has been installed, the string is empty.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 10.3 | ❌ No | ✅ Yes | ❌ No | ❌ No | Desktop, Console & Web |
Example:
MsgBox SystemInformationMBS.WinCSDVersion
This item is deprecated and should no longer be used.
Notes:
Shows here "Service Pack 3" on a Windows XP installation.
If no Service Pack has been installed, the string is empty.
SystemInformationMBS.WindowsAero as boolean Deprecated
Function:
Whether Windows is using the Aero Interface?
Example:
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 10.1 | ❌ No | ✅ Yes | ❌ No | ❌ No | All |
Example:
msgbox str(SystemInformationMBS.WindowsAero)
This item is deprecated and should no longer be used.
Notes:
True if aero is used. False if the status is unknown (e.g. on Windows XP) or Aero is not used.
SystemInformationMBS.WindowsNativeMachine as Integer
Function:
Queries the native machine type.
Notes: This may return ARM64 on a Windows with ARM CPU.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | System | MBS Util Plugin | 22.3 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Notes: This may return ARM64 on a Windows with ARM CPU.
The items on this page are in the following plugins: MBS Util Plugin.
