WMIC 的 Node.js 接口 Wmic.js

码农软件 · 软件分类 · Node.js 扩展 · 2019-04-14 06:57:40

软件介绍

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 running

2. 使用 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%');

本文地址:https://www.codercto.com/soft/d/3536.html

面向模式的软件体系结构(卷1) (平装)

面向模式的软件体系结构(卷1) (平装)

Frank Buschmann、Regine meunier、Hans Rohnert、Peter Sommerlad、Michael Stal / 贲可荣、郭福亮 / 机械工业出版社 / 2003-1 / 45.0

一起来看看 《面向模式的软件体系结构(卷1) (平装)》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具