有没有办法从我的应用程序中检索和执行预安装的应用程序?
就像我想从我的应用程序中执行 Photoshop 一样。
我正在寻找的是列出操作系统上所有已安装的应用程序,并在单击它们时打开它们。有点像“开始菜单”。
安装应用程序 使用 Node.js 获取安装的应用程序,支持 Windows 和 macOS。
👨u200d💻安装
npm install get-installed-apps
🔌用法 ES6 模块
import {getInstalledApps} from 'get-installed-apps'
getInstalledApps().then(apps => {
console.log(apps)
})
CommonJS
const {getInstalledApps} = require('get-installed-apps')
getInstalledApps().then(apps => {
console.log(apps)
})
我认为您正在寻找类似的东西
child_process.exec(cmd,function(error,stdout,stderr){}));
例如:
child_process.exec('cmd.exe');