WinSysInfo

Returns system configuration information.

Syntax:

WinSysInfo( )

Parameters:

(none)

Returns:

(s) a TAB delimited list of system configuration information.

 

WinSysInfo returns a TAB-delimited list containing the following items:

1. computer name of the current system.

2. processor architecture.

3. page size (specifies granularity of page protection and commitment).

4. mask representing the set of processors configured into the system.

5. number of processors in the system.

6. processor type.

7. granularity in which memory will be allocated.

8. system's architecture-dependent processor level.

9. architecture-dependent processor revision.

 

Example:

sysinfo = WinSysInfo( )
computer = ItemExtract(1, sysinfo, @TAB)
processor = ItemExtract(6, sysinfo, @TAB)
Message(computer, "is a %processor%")

See Also:

SysParamInfo, WinMetrics, WinResources