Hi all, well... the title says all. I wanna check if a pc exists on my network, for example "JOAN-PC".
Now I'm doing something like this:
Works good, but is slow...
Somebody of you know a fast way to do it?
Thanks in advance. :)
Now I'm doing something like this:
Code:
Dim oShell As Object
Set oShell = CreateObject("Shell.Application")
MsgBox Not CBool(oShell.NameSpace(CVar("\\JOAN-PC")) Is Nothing)
Somebody of you know a fast way to do it?
Thanks in advance. :)