how do i monitor windows 2003 with wmi script

  • Thread starter Thread starter tony
  • Start date Start date
Well you could start by saying what you want to monitor exactly.

Regards
Mark Dormer
 
pretty much anything from

disk space
memory
cpu

especially event log errors, application halts and login failure alert by
email
 
You can write wmi scripts to query from classes like
Win32_MemoryDevice for memory, Win32_Processor for CPU and
Win32_LogicalDisk where drivetype = 3 for Hard disk. All these classes
are from root\cimv2
 
Back
Top