• 授权协议:MIT
  • 开发厂商:-
  • 软件语言:JavaScript
  • 更新日期:2017-06-25
Wmic.js

Wmic.js 是 Windows Management Instrumentation CLI 的 Node.js 接口。

Wmic.js WMIC 的 Node.js 接口 项目简介

Wmic.js 是 Windows Management Instrumentation CLI(WMIC) 的 Node.js 接口。使用方法:1. 启动 WMIC:sc start winmgmt // Start WMI Service
sc query winmgmt // Check if the service is running2. 使用 Wmic.js:wmic().alias('NICConfig').where('Index', 1);
// Equals to
wmic().alias('NICConfig').where('Index', '=', 1);
// You can also use other operators
wmic().alias('NICConfig').where('Description', 'LIKE', '%WAN%');
// Use orWhere to give an alternative condition
wmic().alias('NICConfig').where('Description', 'LIKE', '%WAN%').orWhere('Description', 'LIKE', '%LAN%');

Wmic.js WMIC 的 Node.js 接口 评论内容