Click here to Skip to main content
Click here to Skip to main content

A brief discussion on how to use three of the network management functions

By , 2 May 2004
 

Introduction

This article is just a brief discussion on the use of three network management functions: NetShareEnum(), NetConnectionEnum(), and NetFileEnum(). The first two can be used together to get a list of shared resources on a given server, and then to get a list of connections made to each of those shares. The last one is used to get a list of open files on a server. You can see examples of these using the Computer Management snap-in.

Listing Shares

To get a listing of shared resources on a server, including ones on which the function is running, use NetShareEnum(). As the name implies, it enumerates network shares. It's used like:

DWORD          dwStatus,
               dwReadEntries,
               dwTotalEntries,
               dwIndex;
LPSHARE_INFO_2 pShareBuffer,
               pShareTemp;

dwStatus = NetShareEnum(_T("solomon"),
                        2,
                        (LPBYTE *) &pShareBuffer,
                        MAX_PREFERRED_LENGTH,
                        &dwReadEntries,
                        &dwTotalEntries,
                        NULL);
if (NERR_Success == dwStatus && dwSharesRead > 0)
{
    pShareTemp = pShareBuffer;
    for (dwIndex = 0; dwIndex < dwReadEntries; dwIndex++, pShareTemp++)
        ...

    NetApiBufferFree(pShareBuffer);
}

Something to note about this function, and the other two, is that the server name need not begin with \\. MSDN states that it must, but my testing found that either way was acceptable.

The fourth parameter, prefmaxlen, indicates how much data is to be returned. I couldn't find any reason to not use MAX_PREFERRED_LENGTH here. Maybe in times past with limited amounts of available RAM.

Listing Connections to Shares

To get a listing of connections to each of the shares gathered earlier, use NetConnectionEnum(). As the name implies, it enumerates connections to network shares. It's used like:

DWORD               dwStatus,
                    dwConnectionsRead,
                    dwTotalConnections;
LPCONNECTION_INFO_1 pConnBuffer,
                    pConnTemp;

dwStatus = NetConnectionEnum(_T("solomon"),
                             pShareTemp->shi2_netname,
                             1,
                             (LPBYTE *) &pConnBuffer,
                             MAX_PREFERRED_LENGTH,
                             &dwConnectionsRead,
                             &dwTotalConnections,
                             NULL);
if (NERR_Success == dwStatus && dwConnectionsRead > 0)
{
    pConnTemp = pConnBuffer; 
    while (dwConnectionsRead > 0)    
    {        
        ...        
        dwConnectionsRead--;        
        pConnTemp++;
    } 

    NetApiBufferFree(pConnBuffer);
} 

The second parameter, qualifier, is the name of a share returned by the previous call to NetShareEnum(). Putting these two functions together yields something like the following. I used a tree control so that the relationship between a share and its connection(s) could be seen.

Listing Open Files

To get a listing of open files on a server, use NetFileEnum(). As the name implies, it enumerates files on a network. It's used like:

DWORD         dwIndex,
              dwStatus,
              dwReadEntries,
              dwTotalEntries;
LPFILE_INFO_3 pBuffer,
              pCurrent;

dwStatus = NetFileEnum(_T("solomon"),
                       NULL,
                       NULL,
                       3,
                       (LPBYTE *) &pBuffer,
                       MAX_PREFERRED_LENGTH,
                       &dwReadEntries,
                       &dwTotalEntries,
                       NULL);
if (NERR_Success == dwStatus && dwReadEntries > 0)
{
    pCurrent = pBuffer;    

    for (dwIndex = 0; dwIndex < dwReadEntries; dwIndex++, pCurrent++)
        ... 
    
    NetApiBufferFree(pBuffer);
}

You can see what files are open and by whom. Something of interest regarding the fi3_permissions member of the FILE_INFO_3 structure is that it can have four more values than are noted by MSDN. Those values are ACCESS_EXEC, ACCESS_DELETE, ACCESS_ATRIB, and ACCESS_PERM.

The output of this function produces something like:

Notes

Each of these functions behave in accordance to the membership of the calling process. If the calling process is a member of the Administrators group, all is well. Otherwise, additional code will be necessary to mimic membership of such a group. Use OpenProcessToken() and AdjustTokenPrivileges() for this.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

DavidCrow
Software Developer (Senior) Pinnacle Business Systems
United States United States
Member

The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
 
HTTP 404 - File not found
Internet Information Services

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHow to differentiate the same user logged in from different computers Pinmemberpclearn17 May '11 - 4:55 
AnswerRe: How to differentiate the same user logged in from different computers PinmemberDavidCrow17 May '11 - 5:06 
GeneralRe: How to differentiate the same user logged in from different computers Pinmemberpclearn18 May '11 - 11:24 
GeneralRe: How to differentiate the same user logged in from different computers PinmemberDavidCrow18 May '11 - 16:44 
QuestionINTERNAL COMPILER ERROR & NetDemoDlg.sbr' [modified] Pinmemberjohn_172616 Oct '09 - 12:25 
QuestionRe: INTERNAL COMPILER ERROR & NetDemoDlg.sbr' Pinmemberjohn_172616 Oct '09 - 13:01 
AnswerRe: INTERNAL COMPILER ERROR & NetDemoDlg.sbr' PinmvpDavidCrow19 Oct '09 - 2:56 
QuestionRe: INTERNAL COMPILER ERROR & NetDemoDlg.sbr' [modified] Pinmemberjohn_172619 Oct '09 - 5:02 
DavidCrow wrote:
I have not tried compiling this with anything other than VS6.

 
Is there anywhere I can download a Microsoft Visual Studio 6 Express edition for C++?
 
modified on Monday, October 19, 2009 11:35 AM

AnswerRe: INTERNAL COMPILER ERROR & NetDemoDlg.sbr' PinmvpDavidCrow19 Oct '09 - 5:04 
AnswerRe: INTERNAL COMPILER ERROR & NetDemoDlg.sbr' [modified] Pinmemberjohn_172619 Oct '09 - 5:25 
QuestionCreating a new project: _AFXDLL error/entry point error Pinmemberjohn_172619 Oct '09 - 7:00 
AnswerRe: Creating a new project: _AFXDLL error/entry point error PinmvpDavidCrow19 Oct '09 - 7:08 
QuestionRe: Creating a new project: _AFXDLL error/entry point error Pinmemberjohn_172619 Oct '09 - 7:29 
AnswerRe: Creating a new project: _AFXDLL error/entry point error Pinmemberjohn_172619 Oct '09 - 10:14 
GeneralRe: Creating a new project: _AFXDLL error/entry point error Pinmemberjohn_172622 Oct '09 - 6:34 
GeneralRe: Creating a new project: _AFXDLL error/entry point error PinmvpDavidCrow22 Oct '09 - 7:04 
QuestionRe: Creating a new project: _AFXDLL error/entry point error Pinmemberjohn_172628 Oct '09 - 4:40 
AnswerRe: Creating a new project: _AFXDLL error/entry point error PinmvpDavidCrow28 Oct '09 - 4:46 
AnswerRe: Creating a new project: _AFXDLL error/entry point error Pinmemberjohn_172628 Oct '09 - 5:15 
GeneralNo opened files on Windows XP [modified] Pinmemberkvrnkiran26 Apr '07 - 20:22 
GeneralRe: No opened files on Windows XP PinmvpDavidCrow27 Apr '07 - 2:31 
GeneralRe: No opened files on Windows XP Pinmemberkvrnkiran27 Apr '07 - 6:16 
QuestionRe: No opened files on Windows XP PinmvpDavidCrow27 Apr '07 - 9:19 
AnswerRe: No opened files on Windows XP Pinmemberkvrnkiran5 May '07 - 16:04 
GeneralRe: No opened files on Windows XP PinmvpDavidCrow7 May '07 - 2:57 
GeneralRe: No opened files on Windows XP Pinmemberkvrnkiran7 May '07 - 3:49 
GeneralRe: No opened files on Windows XP Pinmemberkvrnkiran7 May '07 - 4:07 
QuestionRe: No opened files on Windows XP PinmvpDavidCrow7 May '07 - 4:07 
AnswerRe: No opened files on Windows XP Pinmemberkvrnkiran7 May '07 - 7:04 
QuestionNetFileEnum problem on XP SP1 Pinmemberintel9620 Nov '06 - 4:58 
QuestionRe: NetFileEnum problem on XP SP1 PinmemberDavidCrow20 Nov '06 - 5:13 
AnswerRe: NetFileEnum problem on XP SP1 Pinmemberintel9620 Nov '06 - 11:47 
QuestionRe: NetFileEnum problem on XP SP1 PinmemberDavidCrow21 Nov '06 - 2:56 
AnswerRe: NetFileEnum problem on XP SP1 Pinmemberintel9621 Nov '06 - 3:37 
GeneralRe: NetFileEnum problem on XP SP1 PinmemberDavidCrow21 Nov '06 - 5:27 
GeneralRe: NetFileEnum problem on XP SP1 [modified] Pinmemberintel9621 Nov '06 - 6:28 
GeneralAccess denied Error PinmemberWaqas Ur Rehman23 Aug '05 - 21:37 
GeneralRe: Access denied Error PinmemberDavidCrow24 Aug '05 - 2:48 
GeneralRe: Access denied Error Pinmemberspbrown26 Jun '06 - 18:42 
GeneralAdminstrative rights PinmemberAlex Evans11 Oct '04 - 19:07 
QuestionWhere can I find svrapi.lib? Pinmembermrbelles8 Jun '04 - 11:00 
AnswerRe: Where can I find svrapi.lib? PinmemberAnhNT807 Apr '05 - 21:09 
GeneralMIssing DLL Error Pinmemberwebmasterbstempin7 May '04 - 9:28 
GeneralRe: MIssing DLL Error PinmemberDavidCrow7 May '04 - 9:35 
GeneralI want to use this without Unicode mode PinmemberKmAshif3 May '04 - 3:17 
GeneralRe: I want to use this without Unicode mode PinmemberDavidCrow3 May '04 - 3:29 
GeneralRe: I want to use this without Unicode mode PinmemberKmAshif3 May '04 - 3:34 
GeneralRe: I want to use this without Unicode mode PinmemberDavidCrow3 May '04 - 3:40 
GeneralRe: I want to use this without Unicode mode PinmemberKmAshif3 May '04 - 5:14 
Generalcompile error PinmemberKmAshif3 May '04 - 2:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 3 May 2004
Article Copyright 2004 by DavidCrow
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid