[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [SAGE] Question regarding Windows 2003 Server MMC Performance Monitor



On 29 Aug 2007, at 14:32, Aaron Wen wrote:
>                                                        If not, any one
> can suggest a good monitor tool running on Windows 2003 Server? I need
> monitor several Windows 2003 servers for their performance like
> processors usage, Hard Disk I/O, network bandwidth, etc.

Windows Server 2003 (and XP, I believe) has a command line  
typeperf.exe program that ties into the performance monitoring system.

	http://www.microsoft.com/resources/documentation/windows/xp/all/ 
proddocs/en-us/nt_command_typeperf.mspx?mfr=true

Here's an example command that returns after one poll.

	typeperf "\processor(_total)\% processor time" "\system\system up  
time" "\PhysicalDisk(0 C: D:)\Disk Transfers/sec" "\PhysicalDisk(0 C:  
D:)\% Idle Time" -sc 1

If you need infrequent numbers, set up a monitor that runs this  
command periodically from a monitor system.  If you don't need to  
centralize, you could even append the output of this command to a  
file using the Windows Scheduler service.

Jacob