Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB

  1. ///////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright(C) 1999-2000 Microsoft Corporation all rights reserved.
  4. //
  5. // Module: Set Date-Time WMI Provider
  6. //
  7. // Description: Appliance Manager WMI classes
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #pragma namespace("\\\\.\\root")
  11. instance of __Namespace
  12. {
  13. Name = "registry";
  14. };
  15. #pragma namespace("//./root/cimv2")
  16. // Instance provider
  17. instance of __Win32Provider as $InstProv
  18. {
  19. Name = "RegProv" ;
  20. ClsId = "{fe9af5c0-d3b6-11ce-a5b6-00aa00680c3f}" ;
  21. };
  22. instance of __InstanceProviderRegistration
  23. {
  24. Provider = "__Win32Provider.Name=\"RegProv\"";
  25. SupportsPut = TRUE;
  26. SupportsGet = TRUE;
  27. SupportsDelete = FALSE;
  28. SupportsEnumeration = TRUE;
  29. };
  30. [dynamic, provider("RegProv"), ClassContext("local|hkey_local_machine\\System\\CurrentControlSet\\Control")]
  31. class ProviderDateTimeAdjust
  32. {
  33. [key] string TimeZoneInformation;
  34. [PropertyContext("DisableAutoDaylightTimeSet")] uint32 DisableAutoDaylightTimeSet;
  35. };