tomas / wmic

Wrapper around the Windows WMIC interface for Node.js.
12 stars 15 forks source link

Multiple WMIC Requests are executed serially #6

Open marcelcremer opened 6 years ago

marcelcremer commented 6 years ago

Hello everyone,

when you try to execute many wmic commands, they are processed serially instead of parallel. Thats because the async.queue has no amount of workers specified (default 1). Maybe it should be set to 100 or something to make the request asynchronously.

The affected line is line 233 in index.js.

Best Regards Marcel