Dim $hideupdates[7]
$hideupdates[0] = "Microsoft Security Essentials - KB2267621"
$hideupdates[1] = "Microsoft Security Essentials - KB2691894"
$hideupdates[2] = "Bing Desktop"
$hideupdates[3] = "Windows Internet Explorer 9 for Windows 7"
$hideupdates[4] = "Windows Internet Explorer 9 for Windows 7 for x64-based Systems"
$hideupdates[5] = "KB971033"
$hideupdates[6] = "Update for Windows 7 for x64-based Systems (KB971033)"
$hideupdates[7] = "KB2483139"
Dim $updateSession, $updateSearcher, $searchResult, $i, $j, $update
$updateSession = CreateObject("Microsoft.Update.Session")
$updateSearcher = $updateSession.CreateupdateSearcher()
$searchResult = $updateSearcher.Search("IsInstalled=0 and Type='Software'")
For $i=0 To $searchResult.Updates.Count-1
  $update = $searchResult.Updates.Item($i)
  For $j=0 To UBound($hideupdates) 
    ;$=MessageBox($hideupdates[$j],"Info")
    If NOT Instr($update.Title, $hideupdates[$j])
      ;? "No match found for " + $hideupdates[$j]
    Else
      ? "Hiding " + $hideupdates[$j]
      $update.IsHidden = 1
    EndIf
  Next
Next