node-wmi icon indicating copy to clipboard operation
node-wmi copied to clipboard

Querying Win32_PNPAllocatedResource returns empty objects

Open purpl3F0x opened this issue 7 years ago • 0 comments

Hello, I try to query Win32_PNPAllocatedResource like this:

wmi.Query({
    class: 'Win32_PNPAllocatedResource',
    //where: "Dependent LIKE '%'"
}, function(err, resource) {
    console.log(resource);
});

It just returns an array of empty objects. I'm on local-host, node 10.1.1 LTS , WIndows 10 October Update

purpl3F0x avatar Feb 03 '19 07:02 purpl3F0x