<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Monitoring Windows Updates from Splunk in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44149#M8258</link>
    <description>&lt;P&gt;I know this is old but we just addressed this at work for remote networks that cannot (for a variety of reasons) utilize the windows app. The following query will work to check KB numbers on a Windows box:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=WinEventLog:System EventCode=19 | eval Date=strftime(_time, "%Y/%m/%d")| rex "\WKB(?&amp;lt;KB&amp;gt;.\d+)\W" |stats count by Date, host, KB
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Posted originally here: &lt;A href="http://gosplunk.com/verify-windows-updates-have-been-applied/"&gt;http://gosplunk.com/verify-windows-updates-have-been-applied/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Apr 2015 23:24:21 GMT</pubDate>
    <dc:creator>hagjos43</dc:creator>
    <dc:date>2015-04-20T23:24:21Z</dc:date>
    <item>
      <title>Monitoring Windows Updates from Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44144#M8253</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;Is there a way to monitor windows updates from Splunk?  I have a VBScript that queries a remote machine for update history but for security reasons, our remote registry is turned off on these machines.  &lt;/P&gt;

&lt;P&gt;Is there a way to simply monitor this history on Splunk?  My goal is to match up some of the file system changes that I see on my windows machines to Windows Update timing.  I do not want to have to check the update consoles to see what is approved (and this doesn't tell me when they were actually applied).&lt;/P&gt;

&lt;P&gt;Thanks for any help.&lt;/P&gt;

&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2011 00:46:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44144#M8253</guid>
      <dc:creator>kholleran</dc:creator>
      <dc:date>2011-02-15T00:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring Windows Updates from Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44145#M8254</link>
      <description>&lt;P&gt;This is covered by the Windows app, out of the box.  It even contains dashboards and reports to track this for you.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2011 01:55:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44145#M8254</guid>
      <dc:creator>Ron_Naken</dc:creator>
      <dc:date>2011-02-15T01:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring Windows Updates from Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44146#M8255</link>
      <description>&lt;P&gt;You can use the Splunk Windows app. It works by collecting the WindowsUpdate.log file (located in the windows\system32 folder I believe) and parsing out the information that's available from there.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2011 02:34:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44146#M8255</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2011-02-15T02:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring Windows Updates from Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44147#M8256</link>
      <description>&lt;P&gt;BUT what about remote computers? The only way I see is to copy the windowsupdate.log from each remote computer and have splunk index it.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2011 15:43:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44147#M8256</guid>
      <dc:creator>MBerikcurtis</dc:creator>
      <dc:date>2011-11-02T15:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring Windows Updates from Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44148#M8257</link>
      <description>&lt;P&gt;You could put the Splunk Universal Forwarder on each remote Windows computer and have it forward the update logs.  That would be beter than copying them.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2011 16:13:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44148#M8257</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2011-11-02T16:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring Windows Updates from Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44149#M8258</link>
      <description>&lt;P&gt;I know this is old but we just addressed this at work for remote networks that cannot (for a variety of reasons) utilize the windows app. The following query will work to check KB numbers on a Windows box:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=WinEventLog:System EventCode=19 | eval Date=strftime(_time, "%Y/%m/%d")| rex "\WKB(?&amp;lt;KB&amp;gt;.\d+)\W" |stats count by Date, host, KB
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Posted originally here: &lt;A href="http://gosplunk.com/verify-windows-updates-have-been-applied/"&gt;http://gosplunk.com/verify-windows-updates-have-been-applied/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2015 23:24:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44149#M8258</guid>
      <dc:creator>hagjos43</dc:creator>
      <dc:date>2015-04-20T23:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring Windows Updates from Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44150#M8259</link>
      <description>&lt;P&gt;I need to change any settings on the remote machines? I installed Universal Forward on each remote Windows machine but the Windows Update logs didn't come.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 12:12:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Monitoring-Windows-Updates-from-Splunk/m-p/44150#M8259</guid>
      <dc:creator>tiagomiranda</dc:creator>
      <dc:date>2016-03-02T12:12:49Z</dc:date>
    </item>
  </channel>
</rss>

