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.

61 lines
1.9 KiB

  1. '***************************************************************************
  2. 'This script tests the manipulation of property values, in the case that the
  3. 'property is a not an array type
  4. '***************************************************************************
  5. On Error Resume Next
  6. while true
  7. Set Service = GetObject("winmgmts:root/default")
  8. Set Class = Service.Get()
  9. Class.Path_.Class = "SIMPLEPROPTEST00"
  10. Set Property = Class.Properties_.Add ("p1", 19)
  11. Property.Value = 12567
  12. WScript.Echo "The initial value of p1 is [12567]:", Class.Properties_("p1")
  13. '****************************************
  14. 'First pass of tests works on non-dot API
  15. '****************************************
  16. WScript.Echo ""
  17. WScript.Echo "PASS 1 - Use Non-Dot Notation"
  18. WScript.Echo ""
  19. 'Verify we can report the value of an element of the property value
  20. v = Class.Properties_("p1")
  21. WScript.Echo "By indirection p1 has value [12567]:",v
  22. 'Verify we can report the value directly
  23. WScript.Echo "By direct access p1 has value [12567]:", Class.Properties_("p1")
  24. 'Verify we can set the value of a single property value element
  25. Class.Properties_("p1") = 234
  26. WScript.Echo "After direct assignment p1 has value [234]:", Class.Properties_("p1")
  27. '****************************************
  28. 'Second pass of tests works on dot API
  29. '****************************************
  30. WScript.Echo ""
  31. WScript.Echo "PASS 2 - Use Dot Notation"
  32. WScript.Echo ""
  33. 'Verify we can report the value of a property using the "dot" notation
  34. WScript.Echo "By direct access p1 has value [234]:", Class.p1
  35. 'Verify we can report the value of a property using the "dot" notation
  36. v = Class.p1
  37. WScript.Echo "By indirect access p1 has value [234]:", v
  38. 'Verify we can set the value using dot notation
  39. Class.p1 = -1
  40. WScript.Echo "By direct access via the dot notation p1 has been set to [-1]:", Class.p1
  41. Class.Put_ ()
  42. if Err <> 0 Then
  43. WScript.Echo Err.Description
  44. Err.Clear
  45. End if
  46. wend