Expand Minimize
This topic has not yet been rated - Rate this topic

NetUserGetInfo

Windows Server 2003

The NetUserGetInfo function retrieves information about a particular user account on a server.


NET_API_STATUS NetUserGetInfo(
  LPCWSTR servername,
  LPCWSTR username,
  DWORD level,
  LPBYTE* bufptr );

Parameters

servername
[in]

Pointer to a constant string that specifies the DNS or NetBIOS name of the remote server on which the function is to execute. If this parameter is NULL, the local computer is used.

Windows NT:  This string must begin with \\.
username
[in]

Pointer to a constant string that specifies the name of the user account for which to return information. For more information, see the following Remarks section.

level
[in]

Specifies the information level of the data. This parameter can be one of the following values.

Value Meaning
0

Return the user account name. The bufptr parameter points to a USER_INFO_0 structure.

1

Return detailed information about the user account. The bufptr parameter points to a USER_INFO_1 structure.

2

Return level one information and additional attributes about the user account. The bufptr parameter points to a USER_INFO_2 structure.

3

Return level two information and additional attributes about the user account. This level is valid only on servers. The bufptr parameter points to a USER_INFO_3 structure. Note that it is recommended that you use USER_INFO_4 instead.

4

Return level two information and additional attributes about the user account. This level is valid only on servers. The bufptr parameter points to a USER_INFO_4 structure.

Windows 2000/NT:  This level is not supported.
10

Return user and account names and comments. The bufptr parameter points to a USER_INFO_10 structure.

11

Return detailed information about the user account. The bufptr parameter points to a USER_INFO_11 structure.

20

Return the user's name and identifier and various account attributes. The bufptr parameter points to a USER_INFO_20 structure. Note that on Windows XP and later, it is recommended that you use USER_INFO_23 instead.

23

Return the user's name and identifier and various account attributes. The bufptr parameter points to a USER_INFO_23 structure.

Windows 2000/NT:  This level is not supported.
bufptr
[out]

Pointer to the buffer that receives the data. The format of this data depends on the value of the level parameter. This buffer is allocated by the system and must be freed using the NetApiBufferFree function. For more information, see Network Management Function Buffers and Network Management Function Buffer Lengths.

Return Values

If the function succeeds, the return value is NERR_Success.

If the function fails, the return value can be one of the following error codes.

Return code Description
ERROR_ACCESS_DENIED

The user does not have access to the requested information.

NERR_InvalidComputer

The computer name is invalid.

NERR_UserNotFound

The user name could not be found.

Remarks

If you are programming for Active Directory, you may be able to call certain Active Directory Service Interface (ADSI) methods to achieve the same functionality you can achieve by calling the network management user functions. For more information, see IADsUser and IADsComputer.

If you call this function on a domain controller that is running Active Directory, access is allowed or denied based on the access control list (ACL) for the securable object. The default ACL permits all authenticated users and members of the "Pre-Windows 2000 compatible access" group to view the information. If you call this function on a member server or workstation, all authenticated users can view the information. For information about anonymous access and restricting anonymous access on these platforms, see Security Requirements for the Network Management Functions. For more information on ACLs, ACEs, and access tokens, see Access Control Model.

Windows NT:  No special group membership is required to successfully execute the NetUserGetInfo function. This is a change from LAN Manager, which required membership in the Administrators or Account Operators local group to call this function at information levels above 0 (except for the user's own account, which could use level 11).

The security descriptor of the User object is used to perform the access check for this function.

User account names are limited to 20 characters and group names are limited to 256 characters. In addition, account names cannot be terminated by a period and they cannot include commas or any of the following printable characters: ", /, \, [, ], :, |, <, >, +, =, ;, ?, *. Names also cannot include characters in the range 1-31, which are nonprintable.

Windows NT 4.0:  Calls to this function fail if an account name does not meet the criteria outlined previously.

Example Code

The following code sample demonstrates how to retrieve information about a particular user account with a call to the NetUserGetInfo function. The sample calls NetUserGetInfo, specifying information level 10 ( USER_INFO_10). If the call succeeds, the code prints information about the user account. Finally, the sample frees the memory allocated for the information buffer.

 #ifndef UNICODE
#define UNICODE
#endif

#include <stdio.h>
#include <windows.h> 
#include <lm.h>

int wmain(int argc, wchar_t *argv[])
{
   DWORD dwLevel = 10;
   LPUSER_INFO_10 pBuf = NULL;
   NET_API_STATUS nStatus;

   if (argc != 3)
   {
      fwprintf(stderr, L"Usage: %s \\\\ServerName UserName\n", argv[0]);
      exit(1);
   }
   //
   // Call the NetUserGetInfo function; specify level 10.
   //
   nStatus = NetUserGetInfo(argv[1],
                            argv[2],
                            dwLevel,
                            (LPBYTE *)&pBuf);
   //
   // If the call succeeds, print the user information.
   //
   if (nStatus == NERR_Success)
   {
    if (pBuf != NULL)
      {
         wprintf(L"\n\tAccount:      %s\n", pBuf->usri10_name);
         wprintf(L"\tComment:      %s\n", pBuf->usri10_comment);
         wprintf(L"\tUser comment: %s\n", pBuf->usri10_usr_comment);
         wprintf(L"\tFull name:    %s\n", pBuf->usri10_full_name);
      }
   }
   // Otherwise, print the system error.
   //
   else
      fprintf(stderr, "A system error has occurred: %d\n", nStatus);
   //
   // Free the allocated memory.
   //
   if (pBuf != NULL)
      NetApiBufferFree(pBuf);

   return 0;
}

Requirements

ClientRequires Windows Vista™, Windows XP, Windows 2000 Professional, or Windows NT Workstation.
ServerRequires Windows Server 2008 operating system, Windows Server 2003, Windows 2000 Server, or Windows NT Server.
Header

Declared in Lmaccess.h; include Lm.h.

Library

Link to Netapi32.lib.

DLLRequires Netapi32.dll.

See Also

Network Management Overview, Network Management Functions, User Functions, NetUserSetInfo, NetUserGetGroups, NetUserEnum, USER_INFO_0, USER_INFO_1, USER_INFO_2, USER_INFO_4, USER_INFO_10, USER_INFO_11, USER_INFO_23

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.