Does anybody know how I can get infomation about what logical disks that exists on a remote server and how much space/free space there is?
Best Regards Henrik
Look in the System.Management namespace for classes like the
ManagementObjectSearcher. This class let's you perform a WMI query,
which looks a bit like a SQL query:
select * from Win32_LogicalDisk
Doing this for a remote server might face some security hurdles,
however. You will probably need to impersonate a domain user.