0.1.3 • Published 1 year ago

get-win-software v0.1.3

Weekly downloads
-
License
gpl-3.0
Repository
github
Last release
1 year ago

get-win-software

Install | Functions | Roadmap | Example | Updates

Если можете помочь с правильным переводом на английский язык, буду премного благодарен. Использовался Google Translate

Obtaining information about installed programs of the Windows operating system.

Install

npm i get-win-software

Functions

Name of FunctionDescription
GetWinSoftware.getAIS()Getting an array of objects with a description of installed programs. Each element contains DisplayName, Publisher, DisplayVersion. If there is InstallLocation data.
GetWinSoftware.getAISCustom()Function for custom data output.
GetWinSoftware.saveToFile()Function for save data to a file.

Roadmap

  • Add information about Google Chrome
  • Optimize script performance
  • Push package to NPM

Example

Example 1 - With custom properties

const gws = require('get-win-software')

gws.getAIS([ 'uninstall', 'UninstallString' ]).then(res => { console.log(res0) })

> **Example 2** - Get all installed software
```javascript
const gws = require('get-win-software')

gws.getAIS().then(res => {
    console.log(res[0])
})

Updates

DateVersionDecription
12/16/20220.1.3Added savetoFile() function to save data to a file.
12/15/20220.1.2Changed directory structure. Renamed function names (getAllInstalledSoftware() > getAIS()). Added getAISCustom() function for custom data output.