alibek писал(а):Что является критерием включенности компа?
Удачный пинг?
Const SOCKET_ERROR = 0
Private Type WSAdata
wVersion As Integer
wHighVersion As Integer
szDescription(0 To 255) As Byte
szSystemStatus(0 To 128) As Byte
iMaxSockets As Integer
iMaxUdpDg As Integer
lpVendorInfo As Long
End Type
Private Type Hostent
h_name As Long
h_aliases As Long
h_addrtype As Integer
h_length As Integer
h_addr_list As Long
End Type
Private Type IP_OPTION_INFORMATION
TTL As Byte
Tos As Byte
Flags As Byte
OptionsSize As Long
OptionsData As String * 128
End Type
Private Type IP_ECHO_REPLY
Address(0 To 3) As Byte
Status As Long
RoundTripTime As Long
DataSize As Integer
Reserved As Integer
data As Long
Options As IP_OPTION_INFORMATION
End Type
Private Declare Function GetHostByName Lib "wsock32.dll" Alias "gethostbyname" (ByVal HostName As String) As Long
Private Declare Function WSAStartup Lib "wsock32.dll" (ByVal wVersionRequired&, lpWSAdata As WSAdata) As Long
Private Declare Function WSACleanup Lib "wsock32.dll" () As Long
Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)
Private Declare Function IcmpCreateFile Lib "icmp.dll" () As Long
Private Declare Function IcmpCloseHandle Lib "icmp.dll" (ByVal HANDLE As Long) As Boolean
Private Declare Function IcmpSendEcho Lib "ICMP" (ByVal IcmpHandle As Long, ByVal DestAddress As Long, ByVal RequestData As String, ByVal RequestSize As Integer, RequestOptns As IP_OPTION_INFORMATION, ReplyBuffer As IP_ECHO_REPLY, ByVal ReplySize As Long, ByVal TimeOut As Long) As Boolean
Private Sub Command1_Click()
Dim hFile As Long, lpWSAdata As WSAdata
Dim hHostent As Hostent, AddrList As Long
Dim Address As Long, rIP As String
Dim OptInfo As IP_OPTION_INFORMATION
Dim EchoReply As IP_ECHO_REPLY
Call WSAStartup(&H101, lpWSAdata)
HostName = Text1.Text
If GetHostByName(HostName + String(64 - Len(HostName), 0)) <> SOCKET_ERROR Then
CopyMemory hHostent.h_name, ByVal GetHostByName(HostName + String(64 - Len(HostName), 0)), Len(hHostent)
CopyMemory AddrList, ByVal hHostent.h_addr_list, 4
CopyMemory Address, ByVal AddrList, 4
End If
hFile = IcmpCreateFile()
If hFile = 0 Then
MsgBox "Unable to Create File Handle"
Exit Sub
End If
OptInfo.TTL = 255
If IcmpSendEcho(hFile, Address, String(32, "A"), 32, OptInfo, EchoReply, Len(EchoReply) + 8, 2000) Then
rIP = CStr(EchoReply.Address(0)) + "." + CStr(EchoReply.Address(1)) + "." + CStr(EchoReply.Address(2)) + "." + CStr(EchoReply.Address(3))
MsgBox "есть "CStr(EchoReply.Address(0)) + "." + CStr(EchoReply.Address(1)) + "." + CStr(EchoReply.Address(2)) + "." + CStr(EchoReply.Address(3))
Else
MsgBox "не отвечает"
End If
If EchoReply.Status = 0 Then
MsgBox "Reply from " + HostName + " (" + rIP + ") recieved after " + Trim$(CStr(EchoReply.RoundTripTime)) + "ms"
MsgBox HostName + " есть в сети"
Else
MsgBox HostName + " не отвечает"
End If
Call IcmpCloseHandle(hFile)
Call WSACleanup
End Sub
Private Sub CommandButton1_Click()
On Error Resume Next
uz = 1
For i = 2 To Worksheets("user").Range("A1")
uz = uz + 1
Dim hFile As Long, lpWSAdata As WSAdata
Dim hHostent As Hostent, AddrList As Long
Dim Address As Long, rIP As String
Dim OptInfo As IP_OPTION_INFORMATION
Dim EchoReply As IP_ECHO_REPLY
Call WSAStartup(&H101, lpWSAdata)
HostName = Worksheets("user").Range("A" & uz) '---------------------------------
If GetHostByName(HostName + String(64 - Len(HostName), 0)) <> SOCKET_ERROR Then
CopyMemory hHostent.h_name, ByVal GetHostByName(HostName + String(64 - Len(HostName), 0)), Len(hHostent)
CopyMemory AddrList, ByVal hHostent.h_addr_list, 4
CopyMemory Address, ByVal AddrList, 4
End If
hFile = IcmpCreateFile()
If hFile = 0 Then
MsgBox "Unable to Create File Handle"
Exit Sub
End If
OptInfo.TTL = 255
If IcmpSendEcho(hFile, Address, String(32, "A"), 32, OptInfo, EchoReply, Len(EchoReply) + 8, 2000) Then
rIP = CStr(EchoReply.Address(0)) + "." + CStr(EchoReply.Address(1)) + "." + CStr(EchoReply.Address(2)) + "." + CStr(EchoReply.Address(3))
'åñòü"
Else
'íå îòâå÷àåò"
End If
If EchoReply.Status = 0 Then
' åñòü â ñåòè"
Set fs = CreateObject("Scripting.FileSystemObject")
Set d = fs.GetDrive(fs.GetDriveName("\\" + HostName + "\c$")) '----------------- äèñê c:
si = d.FreeSpace
Worksheets("l1").Range("A" & i).FormulaR1C1 = HostName 'çàïèñü äàííûõ â ÿ÷åéêó
Worksheets("l1").Range("B" & i).FormulaR1C1 = "C:\"
Worksheets("l1").Range("C" & i).FormulaR1C1 = Round(si / 1048576, 2)
Worksheets("l1").Range("D" & i).FormulaR1C1 = Date & " " & Time
Worksheets("l1").Range("E" & i).FormulaR1C1 = "OnLine"
Set fs = CreateObject("Scripting.FileSystemObject")
Set d = fs.GetDrive(fs.GetDriveName("\\" + HostName + "\d$")) '----------------- äèñê d:
si = d.FreeSpace
i = i + 1
Worksheets("l1").Range("A" & i).FormulaR1C1 = "---" 'çàïèñü äàííûõ â ÿ÷åéêó
Worksheets("l1").Range("B" & i).FormulaR1C1 = "D:\"
Worksheets("l1").Range("C" & i).FormulaR1C1 = Round(si / 1048576, 2)
Else
Worksheets("l1").Range("A" & i).FormulaR1C1 = HostName
Worksheets("l1").Range("B" & i).FormulaR1C1 = "C:\"
' HostName + " íå îòâå÷àåò"
Worksheets("l1").Range("E" & i).FormulaR1C1 = "OffLine"
Worksheets("l1").Range("D" & i).FormulaR1C1 = Date & " " & Time
i = i + 1
Worksheets("l1").Range("A" & i).FormulaR1C1 = "---" 'çàïèñü äàííûõ â ÿ÷åéêó
Worksheets("l1").Range("B" & i).FormulaR1C1 = "D:\"
End If
Call IcmpCloseHandle(hFile)
Call WSACleanup
Next i
End Sub
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 140