2.2.5.2 WKSTA_INFO_101

The WKSTA_INFO_101 structure specifies details about a computer environment, including platform-specific information, the names of the domain and local computer, and the operating system.

 typedef struct _WKSTA_INFO_101 {
   unsigned long wki101_platform_id;
   [string] wchar_t* wki101_computername;
   [string] wchar_t* wki101_langroup;
   unsigned long wki101_ver_major;
   unsigned long wki101_ver_minor;
   [string] wchar_t* wki101_lanroot;
 } WKSTA_INFO_101,
  *PWKSTA_INFO_101,
  *LPWKSTA_INFO_101;

wki101_platform_id: The type of operating system (section 2.2.5.1).

wki101_computername: A null-terminated, Internet host name or NetBIOS name [RFC1001] of the local computer.

wki101_langroup: A null-terminated, fully qualified domain name (FQDN) (2) of the domain to which the computer belongs.

wki101_ver_major: The major version number of the operating system running on the computer.

wki101_ver_minor: The minor version number of the operating system running on the computer.

wki101_lanroot: A value that is not used and MUST be returned as NULL by the server (2).