Private Const SV_TYPE_WORKSTATION As Long = &H1
Private Const SV_TYPE_SERVER As Long = &H2
Private Const SV_TYPE_SQLSERVER As Long = &H4
Private Const SV_TYPE_DOMAIN_CTRL As Long = &H8
Private Const SV_TYPE_DOMAIN_BAKCTRL As Long = &H10
Private Const SV_TYPE_TIME_SOURCE As Long = &H20
Private Const SV_TYPE_AFP As Long = &H40
Private Const SV_TYPE_NOVELL As Long = &H80
Private Const SV_TYPE_DOMAIN_MEMBER As Long = &H100
Private Const SV_TYPE_PRINTQ_SERVER As Long = &H200
Private Const SV_TYPE_DIALIN_SERVER As Long = &H400
Private Const SV_TYPE_XENIX_SERVER As Long = &H800
Private Const SV_TYPE_SERVER_UNIX As Long = SV_TYPE_XENIX_SERVER
Private Const SV_TYPE_NT As Long = &H1000
Private Const SV_TYPE_WFW As Long = &H2000
Private Const SV_TYPE_SERVER_MFPN As Long = &H4000
Private Const SV_TYPE_SERVER_NT As Long = &H8000
Private Const SV_TYPE_POTENTIAL_BROWSER As Long = &H10000
Private Const SV_TYPE_BACKUP_BROWSER As Long = &H20000
Private Const SV_TYPE_MASTER_BROWSER As Long = &H40000
Private Const SV_TYPE_DOMAIN_MASTER As Long = &H80000
Private Const SV_TYPE_SERVER_OSF As Long = &H100000
Private Const SV_TYPE_SERVER_VMS As Long = &H200000
Private Const SV_TYPE_WINDOWS As Long = &H400000 'Windows95 +
Private Const SV_TYPE_DFS As Long = &H800000 'Root of a DFS
tree
Private Const SV_TYPE_CLUSTER_NT As Long = &H1000000 'NT Cluster
Private Const SV_TYPE_TERMINALSERVER As Long = &H2000000 'Terminal
Server
Private Const SV_TYPE_DCE As Long = &H10000000'IBM DSS
Private Const SV_TYPE_ALTERNATE_XPORT As Long = &H20000000'return
alternate transport
Private Const SV_TYPE_LOCAL_LIST_ONLY As Long = &H40000000'return local
only
Private Const SV_TYPE_DOMAIN_ENUM As Long = &H80000000
Private Const SV_TYPE_ALL As Long = &HFFFFFFFF
Private Const SV_PLATFORM_ID_OS2 As Long = 400
Private Const SV_PLATFORM_ID_NT As Long = 500
Private Const PLATFORM_ID_DOS As Long = 300
Private Const PLATFORM_ID_OS2 As Long = 400
Private Const PLATFORM_ID_NT As Long = 500
Private Const PLATFORM_ID_OSF As Long = 600
Private Const PLATFORM_ID_VMS As Long = 700
'Mask applied to svX_version_major in
'order to obtain the major version number
Private Const MAJOR_VERSION_MASK As Long = &HF
Private Type SERVER_INFO_101
sv101_platform_id As Long
sv101_name As Long
sv101_version_major As Long
sv101_version_minor As Long
sv101_type As Long
sv101_comment As Long
End Type
Private Declare Function NetServerEnum Lib "netapi32" _
(ByVal servername As Long, _
ByVal level As Long, _
buf As Any, _
ByVal prefmaxlen As Long, _
entriesread As Long, _
totalentries As Long, _
ByVal servertype As Long, _
ByVal domain As Long, _
resume_handle As Long) As Long
Private Declare Function NetApiBufferFree Lib "netapi32" _
(ByVal Buffer As Long) As Long
Private Declare Sub CopyMemory Lib "kernel32" _
Alias "RtlMoveMemory" _
(pTo As Any, uFrom As Any, _
ByVal lSize As Long)
Private Declare Function lstrlenW Lib "kernel32" _
(ByVal lpString As Long) As Long
Private Sub Form_Load()
Command1.Caption = "Net Server Enum"
With Combo1
.AddItem "All servers"
.ItemData(.NewIndex) = SV_TYPE_ALL
'os-specific
.AddItem "NT/2000 workstations or servers"
.ItemData(.NewIndex) = SV_TYPE_NT
.AddItem "Windows 95 or later"
.ItemData(.NewIndex) = SV_TYPE_WINDOWS
.AddItem "Servers running Windows for Workgroups"
.ItemData(.NewIndex) = SV_TYPE_WFW
.AddItem "Servers running Unix"
.ItemData(.NewIndex) = SV_TYPE_SERVER_UNIX
'function-specific
.AddItem "LAN Manager workstations"
.ItemData(.NewIndex) = SV_TYPE_WORKSTATION
.AddItem "LAN Manager servers"
.ItemData(.NewIndex) = SV_TYPE_SERVER
.AddItem "NT/2000 servers not domain controller"
.ItemData(.NewIndex) = SV_TYPE_SERVER_NT
.AddItem "Servers maintained by the browser"
.ItemData(.NewIndex) = SV_TYPE_LOCAL_LIST_ONLY
.AddItem "Primary Domain (ignore version info)"
.ItemData(.NewIndex) = SV_TYPE_DOMAIN_ENUM
.ListIndex = 0
End With
End Sub
Private Sub Combo1_Click()
Call GetServers(vbNullString)
End Sub
Private Sub Command1_Click()
Call GetServers(vbNullString)
End Sub
Private Function GetServers(sDomain As String) As Long
'lists all servers of the specified type
'that are visible in a domain.
Dim bufptr As Long
Dim dwEntriesread As Long
Dim dwTotalentries As Long
Dim dwResumehandle As Long
Dim dwServertype As Long
Dim se101 As SERVER_INFO_101
Dim success As Long
Dim nStructSize As Long
Dim cnt As Long
nStructSize = LenB(se101)
dwServertype = Combo1.ItemData(Combo1.ListIndex)
List1.Clear
'Call passing MAX_PREFERRED_LENGTH to have the
'API allocate required memory for the return values.
'
'The call is enumerating all machines on the
'network (SV_TYPE_ALL); however, by Or'ing
'specific bit masks for defined types you can
'customize the returned data. For example, a
'value of 0x00000003 combines the bit masks for
'SV_TYPE_WORKSTATION (0x00000001) and
'SV_TYPE_SERVER (0x00000002).
'
'dwServerName must be Null. The level parameter
'(101 here) specifies the data structure being
'used (in this case a SERVER_INFO_101 structure).
'
'The domain member is passed as Null, indicating
'machines on the primary domain are to be retrieved.
'If you decide to use this member, pass
'StrPtr("domain name"), not the string itself.
success = NetServerEnum(0&, _
101, _
bufptr, _
MAX_PREFERRED_LENGTH, _
dwEntriesread, _
dwTotalentries, _
dwServertype, _
0&, _
dwResumehandle)
'if all goes well
If success = NERR_SUCCESS And _
success <> ERROR_MORE_DATA Then
'loop through the returned data, adding each
'machine to the list
For cnt = 0 To dwEntriesread - 1
'get one chunk of data and cast
'into an SERVER_INFO_101 struct
'in order to add the name to a list
CopyMemory se101, ByVal bufptr + (nStructSize * cnt), nStructSize
List1.AddItem GetPointerToByteStringW(se101.sv101_name) & vbTab & _
GetPlatformString(se101.sv101_platform_id) & " " & _
(se101.sv101_version_major And MAJOR_VERSION_MASK) &
"." & _
se101.sv101_version_minor
Next
End If
'clean up, regardless of success
Call NetApiBufferFree(bufptr)
GetServers = dwEntriesread
End Function
Private Function GetPlatformString(ByVal dwPlatformID As Long) As String
Select Case dwPlatformID
Case PLATFORM_ID_DOS: GetPlatformString = "DOS"
Case PLATFORM_ID_OS2: GetPlatformString = "Windows"
Case PLATFORM_ID_NT: GetPlatformString = "Windows NT"
Case PLATFORM_ID_OSF: GetPlatformString = "OSF"
Case PLATFORM_ID_VMS: GetPlatformString = "VMS"
End Select
End Function
Private Function GetPointerToByteStringW(ByVal dwData As Long) As String
Dim tmp() As Byte
Dim tmplen As Long
If dwData <> 0 Then
tmplen = lstrlenW(dwData) * 2
If tmplen <> 0 Then
ReDim tmp(0 To (tmplen - 1)) As Byte
CopyMemory tmp(0), ByVal dwData, tmplen
GetPointerToByteStringW = tmp
End If
End If
End Function
J'ai *enfin* réussi! ...je ne suis encore qu'un débutant en .NET.. ;O)
'***
' Form1
Imports System.Runtime.InteropServices
Public Class Form1
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> Private Sub
InitializeComponent()
'
'Form1
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(292, 266)
Me.KeyPreview = True
Me.Name = "Form1"
Me.Text = "Form1"
End Sub
#End Region
' Déclarations pour les APIs
Public Enum eServerType
stNone = 0
stWorkStation = &H1
stServer = &H2
stSQLServer = &H4
stDomainCtrl = &H8
stDomainBAKCtrl = &H10
stTimeSource = &H20
stAFP = &H40
stNovell = &H80
stDomainMember = &H100
stPrintQServer = &H200
stDialInServer = &H400
stXenixServer = &H800
stServerUNIX = stXenixServer
stNT = &H1000
stWFW = &H2000
stServerMFPN = &H4000
stServerNT = &H8000
stPotentialBrowser = &H10000
stBackUpBroswer = &H20000
stMasterBrowser = &H40000
stDomainMaster = &H80000
stServerOSF = &H100000
stServerVMS = &H200000
stWindows = &H400000 ' Windows95 and above
stDFS = &H800000 ' Root of a DFS tree
stClusterNT = &H1000000 ' NT Cluster
stTerminalServer = &H2000000 ' Terminal Server
stDCE = &H10000000 ' IBM DSS
stAlternateXport = &H20000000 ' rtn alternate transport
stLocalListOnly = &H40000000 ' rtn local only
stDomainEnum = &H80000000
stAll = &HFFFFFFFF
End Enum
Private Const MAX_PREFERRED_LENGTH As Integer = -1
Private Const NERR_SUCCESS As Integer = 0
Private Const ERROR_MORE_DATA As Integer = 234
<StructLayout(LayoutKind.Sequential)> _
Private Structure SERVER_INFO_100
Public sv100_platform_id As IntPtr
Public sv100_name As IntPtr
End Structure
Private Declare Auto Sub NetApiBufferFree _
Lib "netapi32.dll" _
( _
ByVal lpBuffer As Integer _
)
Private Declare Auto Function NetServerEnum _
Lib "netapi32.dll" _
( _
ByVal servername As Integer, _
ByVal level As Integer, _
ByRef bufptr As IntPtr, _
ByVal prefmaxlen As Integer, _
ByRef entriesread As Integer, _
ByRef totalentries As Integer, _
ByVal servertype As Integer, _
ByVal domain As Integer, _
ByRef resume_handle As Integer _
) As Integer
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
EnumServers()
End Sub
Private Sub EnumServers()
Dim lpBuffer As IntPtr
Dim lpTmpBuffer As IntPtr
Dim dwEntriesRead As Integer
Dim dwTotalEntries As Integer
Dim dwResumeHandle As Integer
Dim se100 As SERVER_INFO_100
Dim iRet As Integer
Dim nStructSize As Integer
Dim i As Integer
nStructSize = Marshal.SizeOf(se100)
iRet = NetServerEnum(0, _
100, _
lpBuffer, _
MAX_PREFERRED_LENGTH, _
dwEntriesRead, _
dwTotalEntries, _
CInt(eServerType.stSQLServer), _
0, _
dwResumeHandle)
If iRet = NERR_SUCCESS And _
iRet <> ERROR_MORE_DATA Then
lpTmpBuffer = lpBuffer
For i = 0 To dwEntriesRead - 1
' Récupère la structure
se100 = Marshal.PtrToStructure(lpTmpBuffer, se100.GetType())
' Récupère le nom du serveur
Debug.WriteLine(Marshal.PtrToStringUni(se100.sv100_name))
' Passe à la structure suivante
lpTmpBuffer = New IntPtr(lpTmpBuffer.ToInt32() +
nStructSize)
Next i
Else
Debug.WriteLine("Error : " & iRet.ToString())
End If
If (lpBuffer.ToInt32() <> 0) Then
NetApiBufferFree(lpBuffer.ToInt32())
End If
End Sub
End Class
'***
--
Cordialement
Yanick Lefebvre - MVP pour Visual Basic classique
http://faq.vb.free.fr/?rubrique=0 - http://www.mvps.org/vbnet/
http://www.mentalis.org/agnet/apiguide.shtml - http://www.mztools.com/
Merci de poster les réponses au groupe afin d'en faire profiter à tous
Je te remercie et je pense que beaucoup d'autres personnes vont etre content
d'avoir enfin une version vb.net de cet exemple.
David
"Zoury" <yanick_lefebvre at hotmail dot com> a écrit dans le message de
news:uwPIIAgq...@TK2MSFTNGP11.phx.gbl...