<?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 Horizon Client Download Options in Workspace ONE Discussions</title>
    <link>https://communities.vmware.com/t5/Workspace-ONE-Discussions/Horizon-Client-Download-Options/m-p/1759444#M4970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know of any other options as far as where the "Install the Horizon Client" Link takes users? Is it possible to send that hyperlink to a different URL?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Untitled.png"&gt;&lt;img src="https://communities.vmware.com/t5/image/serverpage/image-id/70978i4F977F13203EE161/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Mar 2017 20:27:34 GMT</pubDate>
    <dc:creator>atoerper</dc:creator>
    <dc:date>2017-03-02T20:27:34Z</dc:date>
    <item>
      <title>Horizon Client Download Options</title>
      <link>https://communities.vmware.com/t5/Workspace-ONE-Discussions/Horizon-Client-Download-Options/m-p/1759444#M4970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know of any other options as far as where the "Install the Horizon Client" Link takes users? Is it possible to send that hyperlink to a different URL?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Untitled.png"&gt;&lt;img src="https://communities.vmware.com/t5/image/serverpage/image-id/70978i4F977F13203EE161/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2017 20:27:34 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Workspace-ONE-Discussions/Horizon-Client-Download-Options/m-p/1759444#M4970</guid>
      <dc:creator>atoerper</dc:creator>
      <dc:date>2017-03-02T20:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon Client Download Options</title>
      <link>https://communities.vmware.com/t5/Workspace-ONE-Discussions/Horizon-Client-Download-Options/m-p/1759445#M4971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is definitely possible.&amp;nbsp; I had to press VMware support to get the right places to change it.&amp;nbsp; I was able to make the change in a 2.6.1 environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG style=": ; text-decoration: underline; font-size: 11.0pt; font-family: 'Calibri',sans-serif;"&gt;Please snapshot the vIDM machine before modification&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri',sans-serif;"&gt;&lt;BR /&gt; &lt;BR /&gt; Below are the steps for changing this URL. Commands to be entered begin with '$'. Note that the new link must be a URL (ex. &lt;A href="https://download.mysite.org/"&gt;https://download.mysite.org&lt;/A&gt;). I was not able to get a network share set as the link (This will not work "&lt;A href="https://communities.vmware.com/"&gt;\\MyServer\Share\client&lt;/A&gt;")&lt;BR /&gt; &lt;BR /&gt; NOTE: I had to reboot the appliance to get the new link to take effect.&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG&gt;---METHOD 1---&lt;/STRONG&gt;&lt;BR /&gt; Run the following command to return a list of files that need to be modified:&lt;BR /&gt; &lt;BR /&gt;&lt;SPAN&gt; $ grep -irl '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.vmware.com/go/viewclients" rel="nofollow"&gt;http://www.vmware.com/go/viewclients&lt;/A&gt;&lt;SPAN&gt;' /opt/vmware/horizon/workspace/webapps&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; Each of these files contains a line that resembles this:&lt;BR /&gt; &lt;BR /&gt; "_ViewDownloadUrl_":"&lt;A href="http://www.vmware.com/go/viewclients"&gt;http://www.vmware.com/go/viewclients&lt;/A&gt;",&lt;BR /&gt; &lt;BR /&gt; Change the URL to the destination of your choice.&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG&gt;---METHOD 2---&lt;/STRONG&gt;&lt;BR /&gt; This is a way to automate METHOD 1, since doing it by hand would take quite a bit of time&lt;BR /&gt; &lt;BR /&gt; $ OLD_LINK="&lt;A href="http://www.vmware.com/go/viewclients"&gt;http://www.vmware.com/go/viewclients&lt;/A&gt;" # Leave this variable as is&lt;BR /&gt; $ NEW_LINK="&lt;A href="https://download.mysite.org/"&gt;https://download.mysite.org&lt;/A&gt;" # Set this variable to the download link of your choice&lt;BR /&gt; $ &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial',sans-serif;"&gt;grep -irl "$OLD_LINK" /opt/vmware/horizon/workspace/webapps/ | xargs sed -i.bak "s|$OLD_LINK|$NEW_LINK|g" {} 2&amp;gt;/dev/null&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri',sans-serif;"&gt;&lt;SPAN&gt;The final command searches for all files in '/opt/vmware/horizon/workspace/webapps/' that contain '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.vmware.com/go/viewclients" rel="nofollow"&gt;http://www.vmware.com/go/viewclients&lt;/A&gt;&lt;SPAN&gt;', it then passes that list to 'sed' which replaces the old URL with the newly defined URL in all of those files. The sed option '-i.bak' creates a backup of any files that will be changed.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 19:06:55 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Workspace-ONE-Discussions/Horizon-Client-Download-Options/m-p/1759445#M4971</guid>
      <dc:creator>David1Black</dc:creator>
      <dc:date>2017-03-15T19:06:55Z</dc:date>
    </item>
  </channel>
</rss>

