home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 5 / Windows / System32 / wbem / WmiPerfClass.mof < prev    next >
Encoding:
Text File  |  2006-09-18  |  980 b   |  41 lines

  1. // **************************************************************************
  2. // Copyright (c)  Microsoft Corporation, All Rights Reserved
  3. //
  4. // File:  WmiPerfClass.mof
  5. //
  6. // Description:  WmiPerf class provider registration
  7. //
  8. // History:
  9. //
  10. // **************************************************************************
  11.  
  12. #pragma autorecover
  13. #pragma namespace("\\\\.\\root\\cimv2")
  14.  
  15. instance of __Win32Provider as $P
  16. {
  17.     Name          = "WmiPerfClass";
  18.     ClsId         = "{661FF7F6-F4D1-4593-B59D-4C54C1ECE68B}";
  19.     UnloadTimeout = "00000000001500.000000:000";
  20.     HostingModel  = "LocalSystemHost";
  21.     Version       = 3;
  22. };
  23.  
  24. instance of __ClassProviderRegistration
  25. {
  26.     Provider = $P;
  27.  
  28.     //read-only
  29.     SupportsPut = FALSE;
  30.     SupportsDelete = FALSE;
  31.     SupportsGet = TRUE;
  32.     SupportsEnumeration = TRUE;
  33.  
  34.     ResultSetQueries = {
  35.         "select * from meta_class where __Dynasty = 'CIM_StatisticalInformation'"
  36.     };
  37.  
  38. };
  39.  
  40.  
  41.