В JScript.NET следующий фрагмент:JScript.NET: коллекции Enumerating WMI
wmi.js
------
var wmi = GetObject("winmgmts:{impersonationLevel=impersonate}!\\\\.\\root\\cimv2"),
col =null, prc=null;
col=wmi.ExecQuery("SELECT * From Win32_Process", "WQL", 32);
//col=wmi.InstancesOf("Win32_Process");
var e = new Enumerator(col);
for (; !e.atEnd(); e.moveNext()){
prc = e.item();
print(prc.CommandLine);
}
компилируется:
%windir%\Microsoft.NET\Framework64\v4.0.30319\jsc.exe /platform:x64 wmi.js
и выполняет, но изменения WMI
вызова с:
col=wmi.ExecQuery("SELECT * From Win32_Process", "WQL", 32);
сборник все еще работает, а исполнение дает:
Unhandled Exception: System.InvalidCastException:
Unable to cast COM object of type 'System.__ComObject' to interface type 'System.Collections.IEnumerable'.
This operation failed because the QueryInterface call on the COM component for the interface with IID '{496B0ABE-CDEE-11D3-88E8-00902754C43A}' failed due to the following error:
'No such interface supported (Exception from HRESULT: 0x80004002
Я не понимаю, почему, так как для InstancesOf и ExecQuery документация говорит:
If successful, the method returns an SWbemObjectSet
Кроме того, WSH JScript можно перечислить как InstancesOf
сбор и ExecQuery
.