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
239 B

  1. var Service = GetObject("winmgmts://./root/default");
  2. var Class = Service.Get ();
  3. Class.Path_.Class = "SINGLETONTEST00";
  4. Class.Qualifiers_.Add ("singleton", false);
  5. Class.Qualifiers_("singleton").Value = true;
  6. Class.Put_ ();