I can view a remotly connected pc from this article:Remote Desktop using c-net . but i dont need it. I just have to connect with that pc and get the free space data of C drive. How could i do this? I can connect to a remote desktop. I can get driveInfo using IO namespace. but how to combine them?
Getting drive info from a remote computer
24.7k Views Asked by AudioBubble At
3
There are 3 best solutions below
1

After losing a full day trying to make WMI work remotely without success I discovered an alternative using performance counters. Simply check the Free Megabytes
counter in the LogicalDisk
category using the desired drive letter (appended by ":") as the instance name to get an updated reading of the drive's available free space:
"LogicalDisk(C:)\Free Megabytes"
You can access it programmatically in C# through the PerformanceCounter Class.
For accessing it remotely you'll need to specify the server name to the performance counter class constructor and the impersonated account must be added to the "Performance Monitor Users" group:
net localgroup "Performance Monitor Users" %username% /add
0

Here is the vb.net equivalent in case you need to translate it.
Dim path = New ManagementPath With {.NamespacePath = "root\cimv2",
.Server = "<REMOTE HOST OR IP>"}
Dim scope = New ManagementScope(path)
Dim condition = "DriveLetter = 'C:'"
Dim selectedProperties = {"FreeSpace"}
Dim query = New SelectQuery("Win32_Volume", condition, selectedProperties)
Dim searcher = New ManagementObjectSearcher(scope, query)
Dim results = searcher.Get()
Dim volume = results.Cast(Of ManagementObject).SingleOrDefault()
If volume IsNot Nothing Then
Dim freeSpace As ULong = volume.GetPropertyValue("FreeSpace")
End If
Use the
System.Management
namespace andWin32_Volume
WMI class for this. You can query for an instance with aDriveLetter
ofC:
and retrieve itsFreeSpace
property as follows:There is also a
Capacity
property that stores the total size of the volume.