Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

MBSACLI report and download URLs to localized patches?

Featured Replies

Hi folks,

I've been experimenting with a simple vbs scripts that would use MBSACLI to create a XML report of missing updates. Thats the easier part. I need also to download several localized versions of the patches (enu + few other languages), so does anyone know a way to get/generate the download URLs for those localised versions?

A simple version to start working with is here:

Option Explicit
Dim xml,nodes,item
Dim report,Severities,SeveritiesArray

If WScript.Arguments.Count > 0 Then
report = WScript.Arguments(0)
Else
report = "C:\Documents and Settings\Administrator\My Documents\MBSA_testreport.xml"
end If

Set xml = CreateObject("MSXML2.DOMDocument")
xml.async = False

xml.Load report

If xml.parseError.errorCode Then
Wscript.Echo "Parse Error: " & vbCRLF & _
" Reason = " & xml.parseError.reason & vbCRLF & _
" Line = " & xml.parseError.line & vbCRLF & _
" linePos = " & xml.parseError.linePos & vbCRLF & _
" srcText = " & xml.parseError.srcText & vbCRLF & _
" ErrorCode = " & xml.parseError.ErrorCode & vbCRLF

WScript.quit
End If

set nodes = xml.SelectNodes("//UpdateData[@IsInstalled='false']")

Severities = "No severity rating,Low severity,Moderate severity,Important severity,Critical severity"
SeveritiesArray = Split(Severities, ",")

for each item in nodes
WScript.Echo "===================================================="
WScript.Echo "ITEM: " & item.Attributes.GetNamedItem("BulletinID").text & ": " & item.SelectSingleNode("Title").text
WScript.Echo " " & SeveritiesArray(item.GetAttribute("Severity")) & " (" & item.GetAttribute("Severity") & ")"
WScript.Echo " " & item.SelectSingleNode("References/DownloadURL").text
next
WScript.Echo "===================================================="

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.