Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than netapi32, prefix the name with the module name and a period.
NetUserEnum (netapi32)
.
C# Signature:
[DllImport("Netapi32.dll")]
extern static int NetUserEnum([MarshalAs(UnmanagedType.LPWStr)]
string servername,
int level,
int filter,
out IntPtr bufptr,
int prefmaxlen,
out int entriesread,
out int totalentries,
out int resume_handle);
VB Signature:
Public Declare Function NetUserEnum Lib "Netapi32.dll" ( _
<MarshalAs(UnmanagedType.LPWStr)> ByVal servername As String, _
ByVal level As Integer, _
ByVal filter As Integer, _
ByRef bufptr As IntPtr, _
ByVal prefmaxlen As Integer, _
ByRef entriesread As Integer, _
ByRef totalentries As Integer, _
ByRef resume_handle As Integer) As Integer
User-Defined Types:
// Passing -1 as prefmaxlen makes the system allocate the buffer.
// LMCONS.h
const int MAX_PREFERRED_LENGTH = -1;
// You'll need these for the return values
// LMERR.h
const int NERR_Success = 0; /* Success */
const int NERR_BASE = 2100;
const int NERR_InvalidComputer = (NERR_BASE+251); /* This computer name is invalid. */
// WINERROR.h
const int ERROR_ACCESS_DENIED = 5;
const int ERROR_MORE_DATA = 234;
Notes:
[2005-06-15] VB sample contributed by Graeme Grant
[2006-03-09] VB sample fixed by Jaime Smith (can't cast Int32 to IntPtr, users and Users cannot both be used in the same scope in VB)
Dim _users As New ArrayList
Dim EntriesRead As Integer
Dim TotalEntries As Integer
Dim [Resume] As Integer
Dim bufPtr As IntPtr
NetUserEnum(server, 0, 2, bufPtr, -1, EntriesRead, TotalEntries, [Resume])
If EntriesRead > 0 Then
Dim Users(EntriesRead) As USER_INFO_0
Dim iter As IntPtr = bufPtr
Dim i As Integer
For i = 0 To EntriesRead - 1
Users(i) = CType(Marshal.PtrToStructure(iter, GetType(USER_INFO_0)), USER_INFO_0)
iter = New IntPtr(iter.ToInt32 + Marshal.SizeOf(GetType(USER_INFO_0)))
_users.Add(Users(i).Username)
Next i
NetApiBufferFree(bufPtr)
End If
[C#]
ArrayList users = new ArrayList();
int EntriesRead;
int TotalEntries;
int Resume;
IntPtr bufPtr;
NetUserEnum(server, 0, 2, out bufPtr, -1, out EntriesRead, out TotalEntries, out Resume);
if(EntriesRead> 0)
{
USER_INFO_0[] Users = new USER_INFO_0[EntriesRead];
IntPtr iter = bufPtr;
for(int i=0; i < EntriesRead; i++)
{
Users[i] = (USER_INFO_0)Marshal.PtrToStructure(iter, typeof(USER_INFO_0));
iter = (IntPtr)((int)iter + Marshal.SizeOf(typeof(USER_INFO_0)));
The NetUserEnum function provides information about all user accounts on a server.
2/14/2016 8:06:51 AM - -108.168.5.220
An IntPtr is a pointer to a memory location (unmanaged) that adapts to the platform it is running on (64-bit, etc.) UNLIKE a standard int/Integer. You should always use this type for unmanaged calls that require it, even though an int will appear to work on your development machine.
1/13/2008 4:00:13 AM - Damon Carr-72.43.165.29
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).