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

  1. // **************************************************************************
  2. // Copyright (c)  Microsoft Corporation, All Rights Reserved
  3. //
  4. // File:  WmiPerfInst.mof
  5. //
  6. // Description:  WmiPerf instance 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          = "WmiPerfInst";
  18.     ClsId         = "{CA2AF3B4-C15E-412B-B453-557746675FB7}";
  19.     ClientLoadableCLSID = "{FCF7A6F2-3300-4386-9A4F-0DD4E3226507}";
  20.     HostingModel  = "LocalServiceHost";
  21. };
  22.  
  23. instance of __InstanceProviderRegistration
  24. {
  25.     Provider = $P;
  26.  
  27.     //read-only
  28.     SupportsGet = TRUE;
  29.     SupportsEnumeration = TRUE;
  30.  
  31. };
  32.  
  33.