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.

10 lines
417 B

  1. // Note how this example automatically includes the current
  2. // WMI instance in the global namespace; we can make reference
  3. // to "Size" and "FreeSpace" parameters on the object without
  4. // qualification.
  5. var value = Size - FreeSpace;
  6. var fso = new ActiveXObject("Scripting.FileSystemObject");
  7. var logFile = fso.CreateTextFile("hosttest.log",true);
  8. logFile.WriteLine ("The value of UsedSpace is " + value);