From a811ed8f9e15878792e299f92da3812e528ab9f0 Mon Sep 17 00:00:00 2001 From: vrdse Date: Sat, 6 Jan 2018 23:40:42 +0100 Subject: [PATCH] 0.4.2 fix --- MeltdownSpectreReport.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MeltdownSpectreReport.ps1 b/MeltdownSpectreReport.ps1 index 90b1ca2..7df53f1 100644 --- a/MeltdownSpectreReport.ps1 +++ b/MeltdownSpectreReport.ps1 @@ -1104,16 +1104,16 @@ $GetMeltdownStatusInformation = { if ($SystemInformation.isEdge) { #KBs from https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/ADV180002 $EdgeUpdates = 'KB4056893', 'KB4056890', 'KB4056891', 'KB4056892', 'KB4056888' - $Installed = $SystemInformation.InstalledUpdates | Select-Object -ExpandProperty HotFixId - $EdgeMitigated = IsHotfixInstalled $EdgeUpdates $Installed + $Hotfixes = $SystemInformation.InstalledUpdates | Select-Object -ExpandProperty HotFixId + $EdgeMitigated = IsHotfixInstalled $EdgeUpdates $Hotfixes } # Internet Explorer if ($SystemInformation.isIE) { # KBs from https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/ADV180002 $IEUpdates = 'KB4056890', 'KB4056895', 'KB4056894', 'KB4056568', 'KB4056893', 'KB4056891', 'KB4056892' - $Installed = $SystemInformation.InstalledUpdates | Select-Object -ExpandProperty HotFixId - $IEMitigated = IsHotfixInstalled $IEUpdates $Installed + $Hotfixes = $SystemInformation.InstalledUpdates | Select-Object -ExpandProperty HotFixId + $IEMitigated = IsHotfixInstalled $IEUpdates $Hotfixes } # Firefox