<?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 How to create a list of servers with applications missing on a server in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302284#M90960</link>
    <description>&lt;P&gt;Hello! &lt;/P&gt;

&lt;P&gt;On a server we need to have X mandatory applications insalled. &lt;BR /&gt;
I would like to create a list of servers with applications missing on a server but I don't know how to do it.&lt;/P&gt;

&lt;P&gt;For example:&lt;BR /&gt;
When I want the list of servers where VMWARE Tools is installed:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=windows sourcetype=Script:InstalledApps host=*  | search DisplayName="VMware Tools" | table host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I would like a list of servers where VMWARE Tools is missing but I don't find how to.&lt;/P&gt;

&lt;P&gt;Someone can help me about that? please&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Stephane&lt;/P&gt;</description>
    <pubDate>Fri, 25 Aug 2017 23:03:23 GMT</pubDate>
    <dc:creator>ADPSTT</dc:creator>
    <dc:date>2017-08-25T23:03:23Z</dc:date>
    <item>
      <title>How to create a list of servers with applications missing on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302284#M90960</link>
      <description>&lt;P&gt;Hello! &lt;/P&gt;

&lt;P&gt;On a server we need to have X mandatory applications insalled. &lt;BR /&gt;
I would like to create a list of servers with applications missing on a server but I don't know how to do it.&lt;/P&gt;

&lt;P&gt;For example:&lt;BR /&gt;
When I want the list of servers where VMWARE Tools is installed:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=windows sourcetype=Script:InstalledApps host=*  | search DisplayName="VMware Tools" | table host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I would like a list of servers where VMWARE Tools is missing but I don't find how to.&lt;/P&gt;

&lt;P&gt;Someone can help me about that? please&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Stephane&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2017 23:03:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302284#M90960</guid>
      <dc:creator>ADPSTT</dc:creator>
      <dc:date>2017-08-25T23:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a list of servers with applications missing on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302285#M90961</link>
      <description>&lt;P&gt;@ADPSTT using this search &lt;CODE&gt;index=windows sourcetype=Script:InstalledApps host=*  | search DisplayName="VMware Tools" | table host&lt;/CODE&gt; would get you all servers with "VMWare Tools" the string would match exactly that installed.&lt;/P&gt;

&lt;P&gt;One thing to verify is that the DisplayName is exactly "VMWare Tools" if its not then you can use Wild Cards "VMWare Tools*" or something like that to match multiple different names for the tools ex "VMWare Tools version 6.4". If you were to use the following search you would also get those results dropping the first pipe, since you can remove more events/servers right off the bat and not have to store those for the next pipe  &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index=windows sourcetype=Script:InstalledApps DisplayName="VMware Tools*" | table host&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;if you have multiple entrys for the same server then you can do a dedup before the host &lt;CODE&gt;your search | dedup host | table host&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Aug 2017 00:39:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302285#M90961</guid>
      <dc:creator>Grumpalot</dc:creator>
      <dc:date>2017-08-26T00:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a list of servers with applications missing on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302286#M90962</link>
      <description>&lt;P&gt;How about something like this?&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index=windows sourcetype=Script:InstalledApps host=*  NOT DisplayName="VMware Tools" | stats values(host) AS host&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Aug 2017 00:40:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302286#M90962</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2017-08-26T00:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a list of servers with applications missing on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302287#M90963</link>
      <description>&lt;P&gt;Short question: How do you get the data for Script:InstalledApps in?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jul 2018 08:13:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-list-of-servers-with-applications-missing-on-a/m-p/302287#M90963</guid>
      <dc:creator>MOberschelp</dc:creator>
      <dc:date>2018-07-13T08:13:11Z</dc:date>
    </item>
  </channel>
</rss>

