<?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: How to catch is an Application Installed in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559380#M92523</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/176730"&gt;@a_n&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if you use the Splunk Windows TA on your Windows servers and enable the application discovery, you'll have the list of all installed applications, with the installation date, so you can check the newly installed ones.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Wed, 14 Jul 2021 09:34:34 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2021-07-14T09:34:34Z</dc:date>
    <item>
      <title>How to catch is an Application Installed</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559362#M92521</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I have Splunk on windows network, and collecting data using UF from clients.&lt;/P&gt;&lt;P&gt;I need to make a report for newly installed application on clients.&lt;/P&gt;&lt;P&gt;I am searching for event id 11707 and also 1033, but it seems these event are being logged only if we use Windows Installer.&lt;/P&gt;&lt;P&gt;For example, we installed Notepad++ on a client, and we do not have any event for that.&lt;/P&gt;&lt;P&gt;Can someone please advise?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 07:29:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559362#M92521</guid>
      <dc:creator>a_n</dc:creator>
      <dc:date>2021-07-14T07:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch is an Application Installed</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559380#M92523</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/176730"&gt;@a_n&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if you use the Splunk Windows TA on your Windows servers and enable the application discovery, you'll have the list of all installed applications, with the installation date, so you can check the newly installed ones.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 09:34:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559380#M92523</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-14T09:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch is an Application Installed</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559546#M92538</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank you, I have Windows TA but in the config I have&amp;nbsp;[WinEventLog://Application], would you please advise about Discovery? and how to enable/use it?&lt;BR /&gt;Or a reference please?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Appreciate your advise.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 07:47:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559546#M92538</guid>
      <dc:creator>a_n</dc:creator>
      <dc:date>2021-07-15T07:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch is an Application Installed</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559554#M92539</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/176730"&gt;@a_n&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;see in in your logs you have&lt;/P&gt;&lt;P&gt;&amp;nbsp;the following data:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=windows sourcetype=WinHostMon Type=Application&lt;/LI-CODE&gt;&lt;P&gt;If yes, you can run a simple search like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=windows sourcetype=WinHostMon Type=Application
| eval host=upper(host)
| dedup Name 
| sort Name 
| eval InstallDate=strftime(strptime(InstallDate,"%Y%m%d"),"%d/%m/%Y")
| table Name Vendor Version SerialNumber InstallDate InstallLocation&lt;/LI-CODE&gt;&lt;P&gt;If you haven't those data, you have to add to your TA-Windows a script containing this command:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Get-WmiObject -Class Win32_Product * &lt;/LI-CODE&gt;&lt;P&gt;and launch it from inputs.conf e.g. one time a day.&lt;/P&gt;&lt;P&gt;To know how to use a scripted input see at&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/ScriptSetup" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/ScriptSetup&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 08:09:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559554#M92539</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-15T08:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch is an Application Installed</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559560#M92540</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Appreciate your advices.&lt;/P&gt;&lt;P&gt;When I try&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sourcetype=WinHostMon Type=Application&lt;/LI-CODE&gt;&lt;P&gt;I do not have data back.&lt;BR /&gt;when I run&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Get-WmiObject -Class Win32_Product * &lt;/LI-CODE&gt;&lt;P&gt;in powershell it gets data , but nothing on install date.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 434px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/15101iDBE06C0BD97C8A54/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;BR /&gt;I tried to modify the inputs.conf and add:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[WinHostMon://application]
type = application
interval = 60&lt;/LI-CODE&gt;&lt;P&gt;but no data ingested.&lt;BR /&gt;Unfortunately I got lost with the scripting method.&lt;BR /&gt;Isn't it possible just to modify the inputs.conf?&lt;BR /&gt;Thank you again.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 09:18:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559560#M92540</guid>
      <dc:creator>a_n</dc:creator>
      <dc:date>2021-07-15T09:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch is an Application Installed</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559561#M92541</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/176730"&gt;@a_n&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;the first method I described was used until last year, but then Microsoft changed something so it isn't possible to have those data.&lt;/P&gt;&lt;P&gt;The only way is a powershell script like the one I described.&lt;/P&gt;&lt;P&gt;I'm not a powershell expert so I cannot help you in this (infact the above script was done by one of my colleagues), see in that direction because it's the right way..&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 09:23:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559561#M92541</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-15T09:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch is an Application Installed</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559563#M92542</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Appreciate your support ad assistance.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 09:25:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-catch-is-an-Application-Installed/m-p/559563#M92542</guid>
      <dc:creator>a_n</dc:creator>
      <dc:date>2021-07-15T09:25:28Z</dc:date>
    </item>
  </channel>
</rss>

