记一下C:\Windows\System32\Wbem\wmic.exe不定时弹窗的问题
Windows系统总是弹出这个程序窗口,so boring..
# 解决办法:
执行环境更新
- 更新 NodeJS 版本 > 8.8.0
- 可以选择从官网下载版本安装,安装前如果有项目在运行需要先执行pm2 kill把进程停掉,不然会影响安装
- 更新 pm2 到最新版本
npm install -g pm2@latest
- 更新内存中的 pm2
pm2 update
代码修改
涉及child_process的操作要传入选项 {windowsHide: true}
const { spawn, exec, execFile } = require('child_process')
spawn(cmd, args, { windowsHide : true })