<?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: Simple installation script for Universal Forwarder in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21534#M3228</link>
    <description>&lt;P&gt;Anyone else have an issue with the deployment server not being set after the deployment on the forwarder? &lt;/P&gt;</description>
    <pubDate>Thu, 04 Feb 2016 22:25:36 GMT</pubDate>
    <dc:creator>kuja</dc:creator>
    <dc:date>2016-02-04T22:25:36Z</dc:date>
    <item>
      <title>Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21517#M3211</link>
      <description>&lt;P&gt;When you have more than a few forwarders to maintain, it becomes tedious (and error-prone) to install them one-by-one.  Using the Deployment Server is great for keeping the configurations up-to-date and consistent.&lt;/P&gt;

&lt;P&gt;But I want to script the installation.  This isn't really a Splunk problem, it's more of a scripting problem.&lt;/P&gt;

&lt;P&gt;Any great scripts out there? All answers welcome, especially Linux and Windows.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2011 19:08:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21517#M3211</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2011-11-22T19:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21518#M3212</link>
      <description>&lt;P&gt;With some updates that were created (and tested!) by &lt;A href="http://splunk-base.splunk.com/users/404/rroberts"&gt;rroberts&lt;/A&gt;. Thanks Mr R; you &lt;EM&gt;are&lt;/EM&gt; the best!&lt;BR /&gt;
If you cut-and-paste this script - &lt;STRONG&gt;watch out for the line wraps!&lt;/STRONG&gt; You will need to correct these before your script will run.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#!/bin/sh

# This EXAMPLE script shows how to deploy the Splunk universal forwarder
# to many remote hosts via ssh and common Unix commands.
# For "real" use, this script needs ERROR DETECTION AND LOGGING!!

# --Variables that you must set -----

# Populate this file with a list of hosts that this script should install to,
# with one host per line. This must be specified in the form that should
# be used for the ssh login, ie. username@host
#
# Example file contents:
# splunkuser@10.20.13.4
# splunkker@10.20.13.5
HOSTS_FILE="$HOME/whereToInstallUF"

# This should be a WGET command that was *carefully* copied from splunk.com!!
# Sign into splunk.com and go to the download page, then look for the wget
# link near the top of the page (once you have selected your platform)
# copy and paste your wget command between the ""
WGET_CMD="wget -O splunkforwarder..."

# Set the install file name to the name of the file that wget downloads
# (the second argument to wget)
INSTALL_FILE="splunkforwarder..."

# After installation, the forwarder will become a deployment client of this
# host.  Specify the host and management (not web) port of the deployment server
# that will be managing these forwarder instances.
DEPLOY_SERVER="xxx.xxx.xxx.xxx:8089"

# Set the new Splunk admin password
PASSWORD="newpassword"

# ----------- End of user settings -----------

# create script to run remotely. Watch out for line wraps, esp. in the "set deploy-poll" line below.  
# the remote script assumes that 'splunkuser' (the login account) has permissions to write to the
# /opt directory (this is not generally the default in Linux)
REMOTE_SCRIPT="
cd /opt
$WGET_CMD
tar -xzf $INSTALL_FILE
# /opt/splunkforwarder/bin/splunk enable boot-start -user splunkusername
/opt/splunkforwarder/bin/splunk start --accept-license --answer-yes --auto-ports --no-prompt
/opt/splunkforwarder/bin/splunk set deploy-poll \"$DEPLOY_SERVER\" --accept-license --answer-yes --auto-ports --no-prompt  -auth admin:changeme
/opt/splunkforwarder/bin/splunk edit user admin -password $PASSWORD -auth admin:changeme
/opt/splunkforwarder/bin/splunk restart
"    
echo "In 5 seconds, will run the following script on each remote host:"
echo
echo "===================="
echo "$REMOTE_SCRIPT"
echo "===================="
echo
sleep 5
echo "Reading host logins from $HOSTS_FILE"
echo
echo "Starting."

for DST in `cat "$HOSTS_FILE"`; do
  if [ -z "$DST" ]; then
    continue;
  fi
  echo "---------------------------"
  echo "Installing to $DST"

  # run script on remote host - you will be prompted for the password
  ssh "$DST" "$REMOTE_SCRIPT"

done  
echo "---------------------------"
echo "Done"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Nov 2011 19:09:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21518#M3212</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2011-11-22T19:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21519#M3213</link>
      <description>&lt;P&gt;This was the shortest script that I could come up with that wasn't completely lame.  It is based on a much more sophisticated script that is now part of the documentation.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2011 19:10:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21519#M3213</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2011-11-22T19:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21520#M3214</link>
      <description>&lt;P&gt;If you cut-and-paste this script, watch out for the line wrap on the lines that start with &lt;BR /&gt;
/opt/splunkforwarder&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2011 19:12:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21520#M3214</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2011-11-22T19:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21521#M3215</link>
      <description>&lt;P&gt;Documentation &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Deploy/Introducingtheuniversalforwarder"&gt;here&lt;/A&gt;, including another example script...&lt;/P&gt;</description>
      <pubDate>Sun, 27 Nov 2011 20:49:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21521#M3215</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2011-11-27T20:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21522#M3216</link>
      <description>&lt;P&gt;Thanks, the above script is a proof of the splunk inability to create easy to install and deploy products. I just hope that they will fix the current silly URL download tricks and provide a solution like this, maybe even RPM and DEB repositories.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 18:32:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21522#M3216</guid>
      <dc:creator>ssbarnea</dc:creator>
      <dc:date>2012-03-21T18:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21523#M3217</link>
      <description>&lt;P&gt;ssbarnea, that's a bit harsh. We're talking about on the fly configuration, which is not trivial, and this kind of script is very helpful (at least to oldschoolers like myself). Thanks lguinn, this one answers 3-4 questions I had while writing something similar.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Mar 2012 14:42:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21523#M3217</guid>
      <dc:creator>bilhays</dc:creator>
      <dc:date>2012-03-30T14:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21524#M3218</link>
      <description>&lt;P&gt;A couple of comments:&lt;/P&gt;

&lt;P&gt;[1]  Nothing keeps you from running a purely-internal yum repository to distribute Splunk install images to your servers.  Then, "yum update" even works...&lt;BR /&gt;
[2]  Rather than setting the admin password directly, there's always user-seed.conf, which works well for that purpose.&lt;BR /&gt;
[3]  It's not terribly difficult to spin out your own RPM that includes splunk as a dependency - let that RPM (and its included scriplets) deal with post-install configuration&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2012 02:59:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21524#M3218</guid>
      <dc:creator>dwaddle</dc:creator>
      <dc:date>2012-06-14T02:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21525#M3219</link>
      <description>&lt;P&gt;Thanks for the script.&lt;/P&gt;

&lt;P&gt;We have found Splunk incredibly easy to install and upgrade.  Much easier that most products.  We have UF's installed on 3000+ servers.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2013 11:48:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21525#M3219</guid>
      <dc:creator>rmorlen</dc:creator>
      <dc:date>2013-01-10T11:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21526#M3220</link>
      <description>&lt;P&gt;BTW, if you want to learn more about the Deployment Server and how to distribute configuration files (like &lt;CODE&gt;inputs.conf&lt;/CODE&gt;), take a look at the Distributed Deployment Manual, especially here:&lt;/P&gt;

&lt;P&gt;5.x  &lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/Deploy/Aboutdeploymentserver"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/Deploy/Aboutdeploymentserver&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;6.0   &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0/Updating/Aboutdeploymentserver"&gt;http://docs.splunk.com/Documentation/Splunk/6.0/Updating/Aboutdeploymentserver&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2013 17:56:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21526#M3220</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-04-15T17:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21527#M3221</link>
      <description>&lt;P&gt;Do I need to create a share for this?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2013 22:31:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21527#M3221</guid>
      <dc:creator>jviteka</dc:creator>
      <dc:date>2013-10-16T22:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21528#M3222</link>
      <description>&lt;P&gt;&lt;EM&gt;Windows Comments&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;I work in a rather large corporation and the politics/ paperwork usually prevent me from going the official route. It is just easier to tackle the installs myself using Old school utilities that most people forget about. &lt;/P&gt;

&lt;P&gt;For me, all I do is prep the server by coping down the binaries to the server. This directories contains the install.cmd file with the command line options you want to include.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;xcopy /e/s /i \\&amp;lt;sourceServer&amp;gt;\&amp;lt;sharename&amp;gt;\SplunkUF\*.* \\&amp;lt;destserver&amp;gt;\&amp;lt;Drive&amp;gt;$\Software\SplunkUF
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Once the server is prepped all I do is run psexec from Sysinterals (Microsoft Utility)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;psexec \\&amp;lt;servername&amp;gt; &amp;lt;local path to file&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Detailed example&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;xcopy /e/s /i \\Splunk\Software\SplunkUF\*.* \\ServerA\D$\Software\SplunkUF 
psexec \\servera D:\software\SplunkUF\Install.cmd
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You will have to play around with the options. Adjust to your liking! Example PSexec will wait until the install is finished before moving on. If you simply want to have 20 servers install at once put a -d that will tell psexec not to wait. &lt;/P&gt;

&lt;P&gt;Now if you use a deployment server to manage the configuration. You can specify the server in the install.cmd and life is good. &lt;/P&gt;

&lt;P&gt;However, you should consider taking a different approach with the Deployment server and make an app for the deployment server and copy down that directory to etc/apps folder.  Maybe include that as part of your simple install.cmd. &lt;/P&gt;

&lt;P&gt;When I did my testing, i found that it put the deployment server in etc/system/local which hard coded it and I wont be able to change the server via deployment server. When it is in the apps folder I can just send out another app to update the location if I need to move it to another server. Example if I had to move from a VM to a physical server. &lt;/P&gt;

&lt;P&gt;Just my 2 Cents&lt;/P&gt;

&lt;P&gt;PS NOTEPAD++ is a must with splunk &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;  &lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2013 23:38:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21528#M3222</guid>
      <dc:creator>MartinMcNutt</dc:creator>
      <dc:date>2013-10-16T23:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21529#M3223</link>
      <description>&lt;P&gt;Thanks Martin, for adding to this discussion!&lt;/P&gt;</description>
      <pubDate>Sun, 20 Oct 2013 03:26:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21529#M3223</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-10-20T03:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21530#M3224</link>
      <description>&lt;P&gt;Another script posting - also good&lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/100989/forwarder-installation-script"&gt;Forwarder Installation Script&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2014 23:59:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21530#M3224</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-05-21T23:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21531#M3225</link>
      <description>&lt;P&gt;What does DST mean in this scrip and what does it do?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2015 18:21:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21531#M3225</guid>
      <dc:creator>rwells</dc:creator>
      <dc:date>2015-09-04T18:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21532#M3226</link>
      <description>&lt;P&gt;DST is a variable. On each iteration of the loop, DST is set to the next host in the HOSTS_FILE.&lt;BR /&gt;
So at any given point, DST should contain the IP address where the universal forwarder is to be installed.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2015 20:44:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21532#M3226</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2015-09-04T20:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21533#M3227</link>
      <description>&lt;P&gt;Thanks Iguinn, tweaked this a bit for non-root user account... and this works!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; #!/bin/sh

 HOSTS_FILE="/opt/forwarderlist"
 WGET_CMD="wget -O splunkforwarder..."
 INSTALL_FILE="splunkforwarder-6....tgz"
 DEPLOY_SERVER="xx.xx.xx.xx:8089"
 PASSWORD="newpassword"

 REMOTE_SCRIPT="
 cd /opt
 sudo $WGET_CMD
 sudo tar -xzf $INSTALL_FILE

 sudo useradd -m -r splunk
 sudo chown -R splunk:splunk /opt/splunkforwarder

 ### /opt/splunkforwarder/bin/splunk enable boot-start -user splunk
 sudo -u splunk /opt/splunkforwarder/bin/splunk start --accept-license --answer-yes --auto-ports --no-prompt
 sudo -u splunk /opt/splunkforwarder/bin/splunk set deploy-poll \"$DEPLOY_SERVER\" --accept-license --answer-yes --auto-ports --no-prompt  -auth admin:changeme
 sudo -u splunk /opt/splunkforwarder/bin/splunk edit user admin -password $PASSWORD -auth admin:changeme
 sudo -u splunk /opt/splunkforwarder/bin/splunk restart
 "    

 echo "In 5 seconds, will run the following script on each remote host:"
 echo
 echo "===================="
 echo "$REMOTE_SCRIPT"
 echo "===================="
 echo
 sleep 5
 echo "Reading host logins from $HOSTS_FILE"
 echo
 echo "Starting."
 for DST in `cat "$HOSTS_FILE"`; do
   if [ -z "$DST" ]; then
     continue;
   fi
   echo "---------------------------"
   echo "Installing to $DST"
   sudo ssh -t "$DST" "$REMOTE_SCRIPT"
 done  
 echo "---------------------------"
 echo "Done"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Nov 2015 19:33:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21533#M3227</guid>
      <dc:creator>tv5</dc:creator>
      <dc:date>2015-11-19T19:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21534#M3228</link>
      <description>&lt;P&gt;Anyone else have an issue with the deployment server not being set after the deployment on the forwarder? &lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:25:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21534#M3228</guid>
      <dc:creator>kuja</dc:creator>
      <dc:date>2016-02-04T22:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21535#M3229</link>
      <description>&lt;P&gt;I am.. did you ever find out what the issue was? &lt;/P&gt;</description>
      <pubDate>Sun, 14 Aug 2016 14:31:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21535#M3229</guid>
      <dc:creator>mansel_scheffel</dc:creator>
      <dc:date>2016-08-14T14:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Simple installation script for Universal Forwarder</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21536#M3230</link>
      <description>&lt;P&gt;Can I get similar kind of thing for Windows Universal Forwarder remote installation. I mean, like very straight forward solution.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Feb 2017 06:40:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Simple-installation-script-for-Universal-Forwarder/m-p/21536#M3230</guid>
      <dc:creator>princemanto2580</dc:creator>
      <dc:date>2017-02-19T06:40:11Z</dc:date>
    </item>
  </channel>
</rss>

