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.
22 lines
523 B
22 lines
523 B
var S = GetObject("winmgmts:root/default");
|
|
|
|
var C = S.Get();
|
|
C.Path_.Class = "PUTCLASSTEST00";
|
|
var P = C.Properties_.Add ("p", 19);
|
|
P.Qualifiers_.Add ("key", true);
|
|
C.Put_();
|
|
|
|
var C = GetObject("winmgmts:root/default:PUTCLASSTEST00");
|
|
|
|
var I = C.SpawnInstance_ ();
|
|
|
|
WScript.Echo ("Relpath of new instance is", I.Path_.Relpath);
|
|
I.Properties_("p") = 11;
|
|
WScript.Echo ("Relpath of new instance is", I.Path_.Relpath);
|
|
|
|
var NewPath = I.Put_();
|
|
WScript.Echo ("path of new instance is", NewPath.path);
|
|
|
|
|
|
|
|
|