diff --git a/images/linux/scripts/SoftwareReport/SoftwareReport.Common.psm1 b/images/linux/scripts/SoftwareReport/SoftwareReport.Common.psm1 index c23d1d6d5..562f029d2 100644 --- a/images/linux/scripts/SoftwareReport/SoftwareReport.Common.psm1 +++ b/images/linux/scripts/SoftwareReport/SoftwareReport.Common.psm1 @@ -322,7 +322,7 @@ function Get-CachedDockerImagesTableData { function Get-AptPackages { $apt = (Get-ToolsetContent).Apt $output = @() - ForEach ($pkg in ($apt.common_packages + $apt.cmd_packages)) { + ForEach ($pkg in ($apt.vital_packages + $apt.common_packages + $apt.cmd_packages)) { $version = $(dpkg-query -W -f '${Version}' $pkg) if ($Null -eq $version) { $version = $(dpkg-query -W -f '${Version}' "$pkg*")