The NetServerGetInfo function retrieves information about the specified server.
Security Requirements
Only the Administrators or Accounts Operators local group, or those with Communication, Print, or Server operator group membership can successfully execute NetServerGetInfo at level 102 or higher. No special group membership is required for level 100 or level 101 calls.
NET_API_STATUS NetServerGetInfo(
LPTSTR servername, | |
DWORD level, | |
LPBYTE *bufptr | |
); |
Parameters
servername
Pointer to a Unicode string containing the name of the remote server on which the function is to execute. A NULL pointer or string specifies the local computer.
level
Specifies one of the following values to return the level of information provided.
Value | Meaning |
100 | The bufptr parameter points to an array of SERVER_INFO_100 structures. |
101 | The bufptr parameter points to an array of SERVER_INFO_101 structures. |
102 | The bufptr parameter points to an array of SERVER_INFO_102 structures. |
The preceding levels are valid for all platforms. The following levels are valid only for the appropriate platforms.
Value | Meaning |
402 | The buf parameter points to an array of SERVER_INFO_402 structures. |
403 | The buf parameter points to an array of SERVER_INFO_403 structures. |
502 | The buf parameter points to an array of SERVER_INFO_502 structures. |
503 | The buf parameter points to an array of SERVER_INFO_503 structures. |
bufptr
Pointer to the buffer in which the data requested with the level parameter is stored.
See Also
NetServerSetInfo, SERVER_INFO_100, SERVER_INFO_101, SERVER_INFO_102, SERVER_INFO_402, SERVER_INFO_403, SERVER_INFO_502, SERVER_INFO_503