Diskinformation on remote servers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top