Skip to content

OS installed software importer

Versio.io can import, historize and process the installed software of the host your OneImporter is running on.

Configuration

You can find the configuration option in Versio.io at Environment settings > OneImporter > Configurations > OS installed software.

No configuration is required for this module (zero configuration). As soon as the module is selected for a OneImporter, the data is captured fully automatically.

Commands: Executed commands for inventory

Versio.io runs the following commands on your host to inventory it:

# Windows (PowerShell)
Get-ItemProperty HKLM:\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\*, HKLM:\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Sort-Object DisplayName | Format-List

# Windows (AppSTore)
Get-AppPackage

# Linux (Debian based)
dpkg --list | grep '^ii' | grep -vE 'lib|linux-headers|linux-image|linux-modules|base-files|util-linux|systemd'

# Linux (Rad Hat based)
rpm -qa | grep -vE '^(kernel|lib|systemd|basesystem|filesystem|glibc|setup)'

# Linux (Arch based)
pacman -Q | grep -vE '^(linux|glibc|filesystem|bash|systemd|util-linux)'

# Linux (SUSE based)
zypper se --installed-only | grep -vE '^(kernel|lib|systemd|basesystem|filesystem|glibc|setup)'