Hi i'm developing a file back-up utility, version one was a stand alone verson version 2 is an enterprise version by this the sever will back up files for each machine on the network. What i wish to be able to do is for the sever to interate throught the dirves on the client machine. yes esay on a stand alone

Code:
Dim objFso as new filesystemobjects
Dim objDrives As Drives

Set objDrives = objFso.Drives
Dim objDrive As Drive

For Each objDrive In objDrives
MsgBox objDrive.Path
Next

but how do you achive this for a remote machine.

Also how can i tell howmany machines are on a network. Thanks