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.
 
 
 
 
 
 

17 lines
498 B

var Disk = GetObject ('winmgmts:{impersonationLevel=impersonate}!Win32_LogicalDisk="C:"');
var Keys = Disk.Path_.Keys;
var e = new Enumerator (Keys);
for (;!e.atEnd();e.moveNext ())
{
var y = e.item ();
WScript.Echo ("Key has name", y.Name, "and value", y.Value);
}
var Names = new ActiveXObject("WbemScripting.SWbemNamedValueSet");
var Value = Names.Add ("fred", 25);
WScript.Echo ("Named Value Set contains a value called", Value.Name,
"which is set to", Value.Value);