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.

20 lines
841 B

  1. //***************************************************************************
  2. //This script tests the manipulation of context values, in the case that the
  3. //context value is a not an array type
  4. //***************************************************************************
  5. var Context = new ActiveXObject("WbemScripting.SWbemNamedValueSet");
  6. Context.Add ("n1", 327);
  7. WScript.Echo ("The initial value of n1 is [327]:", Context("n1"));
  8. //Verify we can report the context value
  9. var v = Context("n1");
  10. WScript.Echo ("By indirection n1 has value [327]:",v);
  11. //Verify we can report the value directly
  12. WScript.Echo ("By direct access n1 has value [327]:", Context("n1"));
  13. //Verify we can set the value of a single named value
  14. Context("n1") = 234;
  15. WScript.Echo ("After direct assignment n1 has value [234]:", Context("n1"));