can anybody tell how to get system properties of a remote computer in a network ?

i would like write a code in c#

link|improve this question
2  
And what are "system properties"? – Greg Beech Dec 16 '09 at 10:16
Sounds like an admin question. Should be on serverfault – Oded Dec 16 '09 at 10:18
properties like OS using,which all processes are running,disk spaces. i would like to code in c# – akbar Dec 16 '09 at 10:26
@akbar: you should provide more information regarding what you are trying to do, which lang(C#, java) or OS/ platform you are using. Also sample code will do. – PRR Dec 16 '09 at 11:25
feedback

migrated from stackoverflow.com Dec 17 '09 at 15:44

This question came from our site for professional and enthusiast programmers.

3 Answers

It's hard to tell from your post what you're looking for, but this might be it:

EDIT Added link to WMI in .NET reference pages.

link|improve this answer
i just want to get properties like OS using,which all processes are running........ – akbar Dec 16 '09 at 10:20
also disk spaces... – akbar Dec 16 '09 at 10:21
i would like to code for these using c# – akbar Dec 16 '09 at 10:23
Take a look at the link I posted. You should be able to use it to get system information from a remote Windows machine. – Adam Luchjenbroers Dec 16 '09 at 10:23
how can we get it??? – akbar Dec 16 '09 at 11:03
show 1 more comment
feedback

Microsoft System Center Operations Manager (SCOM) periodically collects performance metrics from remote systems, and provides has a set of .NET APIs. It's overkill if you have just a few boxes, but it can be a good central solution if you'd like to monitor 20+ boxes.

link|improve this answer
feedback

WMI Code Creator will do most of the work for you, if you intend to use WMI.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown