6 lines
196 B
JavaScript
6 lines
196 B
JavaScript
const {getInstalledApps} = require('get-installed-apps')
|
|
getInstalledApps().then(apps => {
|
|
apps.forEach(element => {
|
|
console.log(element["appName"] + "\t" + element["DisplayIcon"] )
|
|
});
|
|
}) |