我想从MBSA扫描生成的xml报告中提取下载URL。以前我想使用正则表达式,但是有些人劝阻我不要这样做,所以现在我正尝试使用XmlDocument类,但是在处理此问题时遇到了问题。
以下是MBSA扫描报告的一小部分:
<XMLOut>
<CatalogInfo>
<CreationDate>2018-07-10T10:38:04Z</CreationDate>
</CatalogInfo>
<Check ID="500" Grade="5" Type="5" Cat="1" Rank="1" Name="SQL Server Security Updates" URL1="Help/Check5311.html" URL2="Help/Check5311fix.html" GroupID="0a4c6c73-8887-4d7f-9cbe-d08fa8fa9d1e" GroupName="SQL Server">
<Advice>No security updates are missing.</Advice>
<Detail>
<UpdateData ID="MS06-061" GUID="07609d43-d518-4e77-856e-d1b316d1b8a8" BulletinID="MS06-061" KBID="925673" Type="1" IsInstalled="true" Severity="4" RestartRequired="false">
<Title>MSXML 6.0 RTM Security Update (925673)</Title>
<References>
<BulletinURL>http://www.microsoft.com/technet/security/bulletin/MS06-061.mspx</BulletinURL>
<InformationURL>http://support.microsoft.com/kb/925673</InformationURL>
<DownloadURL>http://www.download.windowsupdate.com/msdownload/update/v3-19990518/cabpool/msxml6-kb925673-enu-amd64_cc347d98b9fe1e417cb73f0ddf004d1f94a4bfcf.exe</DownloadURL>
</References>
<OtherIDs>
<OtherID Type="CVE">CVE-2006-4685</OtherID>
<OtherID Type="CVE">CVE-2006-4686</OtherID>
</OtherIDs>
</UpdateData>
</Detail>
</Check>
<Check ID="500" Grade="2" Type="5" Cat="1" Rank="1" Name="Windows Security Updates" URL1="Help/Check5311.html" URL2="Help/Check5311fix.html" GroupID="6964aab4-c5b5-43bd-a17d-ffb4346a8e1d" GroupName="Windows">
<Advice>141 security updates are missing. 4 service packs or update rollups are missing.</Advice>
<Detail>
<UpdateData ID="MS15-118" GUID="a0c35f05-9153-439f-a8e9-109d4324c750" BulletinID="MS15-118" KBID="3097989" Type="1" IsInstalled="false" Severity="3" RestartRequired="false">
<Title>Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3097989)</Title>
<References>
<BulletinURL>http://www.microsoft.com/technet/security/bulletin/MS15-118.mspx</BulletinURL>
<InformationURL>http://support.microsoft.com/kb/3097989</InformationURL>
<DownloadURL>http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/10/windows6.1-kb3097989-x64_892eaa91fcd986ed1249fceb875118bd63646266.cab</DownloadURL>
</References>
</UpdateData>
<UpdateData ID="MS14-046" GUID="ee136505-4841-4e95-9e60-ca2f84f60c12" BulletinID="MS14-046" KBID="2943357" Type="1" IsInstalled="false" Severity="3" RestartRequired="false">
<Title>Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2943357)</Title>
<References>
<BulletinURL>http://www.microsoft.com/technet/security/bulletin/MS14-046.mspx</BulletinURL>
<InformationURL>http://support.microsoft.com/kb/2943357</InformationURL>
<DownloadURL>http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/07/windows6.1-kb2943357-x64_dc59f4f51d16484d7b72cb38d8b8931f7e38e524.cab</DownloadURL>
</References>
</UpdateData>
<UpdateData ID="MS15-029" GUID="322e5906-e2ae-4fb0-b297-876725555c09" BulletinID="MS15-029" KBID="3035126" Type="1" IsInstalled="false" Severity="3" RestartRequired="false">
<Title>Security Update for Windows 7 for x64-based Systems (KB3035126)</Title>
<References>
<BulletinURL>http://www.microsoft.com/technet/security/bulletin/MS15-029.mspx</BulletinURL>
<InformationURL>http://support.microsoft.com/kb/3035126</InformationURL>
<DownloadURL>http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/02/windows6.1-kb3035126-x64_adbc52e8abd005e2e8b9e02325cfe45717a2b0ee.cab</DownloadURL>
</References>
</UpdateData>
MANY MANY MORE...
<UpdateData ID="MS11-100" GUID="57260dfe-227c-45e3-9ffc-2fc77a67f95a" BulletinID="MS11-100" KBID="2656356" Type="1" IsInstalled="false" Severity="4" RestartRequired="false">
<Title>Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2656356)</Title>
<References>
<BulletinURL>http://www.microsoft.com/technet/security/bulletin/MS11-100.mspx</BulletinURL>
<InformationURL>http://go.microsoft.com/fwlink/?LinkID=237378</InformationURL>
<DownloadURL>http://download.windowsupdate.com/msdownload/update/software/secu/2011/12/windows6.1-kb2656356-x64_01b0f5428ef6eb2782e6f2c617f06fba8bbf4460.cab</DownloadURL>
</References>
</UpdateData>
</Detail>
</Check>
<Check ID="180" Grade="4" Type="1" Cat="1" Rank="10" Name="Incomplete Updates" URL1="Help/Check5340.html" URL2="Help/Check5340fix.html" >
<Advice>No incomplete software update installations were found.</Advice>
</Check>
</XMLOut>
我只希望从名称为“ Windows安全更新”的“检查”节点下载URL。
到目前为止,我有以下代码:
[xml]$MBSAscann = Get-Content -Path "C:\Users\AAA\Desktop\results1.xml"
$WindowsSecuritUpdatesNode = $MBSAscann.SelectNodes("//Check") | ?{$_.Name -eq "Windows Security Updates"}
我试图用这种东西:
$WindowsSecuritUpdatesNode.Detail.UpdateData.References.DownloadURL
但是这不起作用(此命令仅在“ UpdateData”:$WindowsSecuritUpdatesNode.Detail.UpdateData
之前有效)。
我也尝试过
$WindowsSecuritUpdatesNode.SelectNodes("//DownloadURL")
但这返回了我从所有“检查”节点下载的URL,不仅是从这个名称为“ Windows安全更新”的节点下载的。
我卡住了,我缺乏解决该问题的想法。
答案 0 :(得分:1)
有时候 Select-Xml cmdlet可以更灵活地解析XML,甚至可能更快(但我尚未验证)
(Select-Xml -Content $XmlOut -XPath "XMLOut/Check[@Name='Windows Security Updates']/descendant::DownloadURL").node."#text"
$ XmlOut 包含您的XML。