How to show disk space of a specific computer on the network

  • Thread starter Thread starter Lidia
  • Start date Start date
L

Lidia

Input: A computer name on the internal network
Out: Disk space total and remaining on all drives.
 
I doubt there's any solution directly integrated into .NET to support this
for network drives, thought it might be possible if the drive itself is
mapped locally on the computer.

Failing that, your best bet is probably to investigate WMI and try to run a
remote WMI query on the computers in the network.

-Alex
 
Input: A computer name on the internal network
Out: Disk space total and remaining on all drives.

create a web service, set credentials,
something like this:
http://www.siccolo.com/Articles/Cod..._Method_To_NT_Service_Path_To_Executable.html
or this:
http://www.siccolo.com/Articles/Cod..._To_Display_Server_Logical_Disks_Remotly.html

then, using WMI
something like this:
http://www.siccolo.com/Articles/Cod...work_Browser/Build_Local_Network_Browser.html


see more at http://www.siccolo.com/articles.asp
 
Back
Top