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 (installed)
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
# MacOS (DMG installed)
system_profiler SPApplicationsDataType
# Linux (Debian based)
dpkg --list | grep '^ii' | grep -vE 'lib|linux-headers|linux-image|linux-modules|base-files|util-linux|systemd'
# Linux (Red 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)'