记一下C:\Windows\System32\Wbem\wmic.exe不定时弹窗的问题
Windows系统总是弹出这个程序窗口,so boring..
本地node版本
执行环境更新
npm install -g pm2@latest
pm2 update
更新后版本示例
代码修改 涉及child_process的操作要传入选项 {windowsHide: true}
const { spawn, exec, execFile } = require('child_process')
spawn(cmd, args, { windowsHide : true })