<?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>ntrippcig Tracker</title>
    <link>https://communities.vmware.com/wbsdv95928/tracker</link>
    <description>ntrippcig Tracker</description>
    <pubDate>Fri, 24 Nov 2023 06:32:35 GMT</pubDate>
    <dc:date>2023-11-24T06:32:35Z</dc:date>
    <item>
      <title>AppVolumes - Logs off if error</title>
      <link>https://communities.vmware.com/t5/App-Volumes/AppVolumes-Logs-off-if-error/m-p/2893301#M8752</link>
      <description>&lt;P&gt;I am running into a scenario where I don't want app volumes to mount to particular machines. I excluded them but even though the system logs shows it is skipped it I get a pop up that appvolumes might be mounted to another machine. If I click ok it logs me off.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running 2103.&amp;nbsp; How do I let the user stay logged on if there are errors?&lt;/P&gt;&lt;P&gt;Also it's excluded so why is it complaining?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Feb 2022 20:42:43 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/App-Volumes/AppVolumes-Logs-off-if-error/m-p/2893301#M8752</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2022-02-11T20:42:43Z</dc:date>
    </item>
    <item>
      <title>Horizon Agent Silent Install on Physical Machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-Agent-Silent-Install-on-Physical-Machines/m-p/2891158#M96161</link>
      <description>&lt;P&gt;We are using Horizon on some physical machines. They are already registered (required admin of horizon to install with registration switch).&amp;nbsp; Shouldn't we be able to bulk deploy? We use SCCM. Works great for VDI but physical machines keep failing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 16:54:17 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-Agent-Silent-Install-on-Physical-Machines/m-p/2891158#M96161</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2022-01-31T16:54:17Z</dc:date>
    </item>
    <item>
      <title>Windows Hello Horizon</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Windows-Hello-Horizon/m-p/2879590#M95425</link>
      <description>&lt;P&gt;Is there a way to get Windows Hello working with face recognition with Horizon 2106? Windows in my VDI reports my camera is not supported but it is a supported Surface camera.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 15:49:24 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Windows-Hello-Horizon/m-p/2879590#M95425</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-23T15:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2877808#M95327</link>
      <description>&lt;P&gt;I have the registration working but assigning users is failing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$desktop = Invoke-RestMethod "$($connectionservers)/rest/external/v1/virtual-machines?vcenter_id=$($vcenter_id)" -Method 'GET' -Headers $headers 
$desktop = $desktop | where-object {$_.name -eq $computer}
$pools = Invoke-RestMethod "$($connectionservers)/rest/inventory/v1/desktop-pools" -Method 'GET' -Headers $headers 
$pool_id = ($pools | Where-Object {$_.name -like $pool}).id
$desktopJ = "[
    $($desktop.id | ConvertTo-Json)
    ]"
$machineRegister = Invoke-RestMethod "$($connectionservers)/rest/inventory/v1/desktop-pools/$($pool_id)/action/add-machines" -Method "POST" -Headers $headers -Body ($desktopJ)
Invoke-RestMethod "$($connectionservers)/rest/inventory/v1/machines/$($machineRegister.id)/action/assign-users" -Method "POST" -Body "[`"XXXXXXXXXXXXXXXXXXXXX`"]"&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Invoke-RestMethod: 
VMware Horizon
        function toggleError()
        {
            var errorElement = document.getElementById('errorDetails');
            if (errorElement &amp;amp;&amp;amp; errorElement.style.display == 'none')
            {
                errorElement.style.display="block";
            }
            else
            {
                errorElement.style.display="none";
            }
        }
        function escapeHTML (str)
        {
            var div = document.createElement('div');
            var text = document.createTextNode(str);
            div.appendChild(text);
            return div.innerHTML;
        }







Error: Unsupported Media Type
The page you requested is not available.
        var url = escapeHTML(location.href);
        if (url.indexOf("http:") == 0 &amp;amp;&amp;amp; 415 == "404") {
                document.write(" Try HTTPS instead.");
        }
Show Details
    Error code: 415&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 12 Nov 2021 19:28:02 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2877808#M95327</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-12T19:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2876565#M95295</link>
      <description>&lt;P&gt;Says I do not have perms to upload images. Desktops -&amp;gt; manual pool -&amp;gt; add&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 15:40:46 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2876565#M95295</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-05T15:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2876394#M95290</link>
      <description>&lt;P&gt;Agent is installed. The machines don't show in Inventory or Registered machines. I can Add from GUI so I am looking for the REST call to replicate that GUI function.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Nov 2021 20:42:46 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2876394#M95290</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-04T20:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2876336#M95288</link>
      <description>&lt;P&gt;VMWare VMs in vcenter the connection servers are connected to&lt;/P&gt;</description>
      <pubDate>Thu, 04 Nov 2021 16:28:50 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2876336#M95288</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-04T16:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2876063#M95272</link>
      <description>&lt;P&gt;That does return list of machines, but only ones that are already registered in pools.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 13:53:06 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2876063#M95272</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-03T13:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2875937#M95265</link>
      <description>&lt;P&gt;I just tried the add-machines call and that is complaining that the machine is not found in the VC:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"id"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"XXX"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"status_code"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;404&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"error_messages"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;[&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Could&amp;nbsp;not&amp;nbsp;find&amp;nbsp;machine&amp;nbsp;on&amp;nbsp;VC"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"timestamp"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;1635870204537&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I've tried by VM name and by the VM ID in vcenter. Is there some other designation I should be using? When I click add in vcenter they are there.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 02 Nov 2021 21:25:37 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2875937#M95265</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-02T21:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2875933#M95262</link>
      <description>&lt;P&gt;it's a manual persistent pool.&amp;nbsp; Users have been connecting to these desktops remotely over vpn/rdp and want to keep the desktop but start using Horizon.&amp;nbsp; They are entitled to the pool by group but I want to add the machine and assign a user to a specific machine because that's where their profiles and apps are.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 21:17:55 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2875933#M95262</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-02T21:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2875930#M95259</link>
      <description>&lt;P&gt;How about add-machines-by-name:&lt;/P&gt;&lt;P&gt;/inventory/v1/desktop-pools/{id}/action/add-machines-by-name&lt;/P&gt;&lt;P&gt;That's actually what I was trying first.&amp;nbsp; I don't see any other calls that can do the user assignment.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 21:07:16 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2875930#M95259</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-02T21:07:16Z</dc:date>
    </item>
    <item>
      <title>Horizon REST Call: /inventory/v1/desktop-pools/{id}/action/add-machines</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2875653#M95244</link>
      <description>&lt;P&gt;Making a call and I have the pool ID correct and post the body in JSON:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"name"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"XXXXXXXXX"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"user_id"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"S-XXXXXXXXXXXX"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;get this response:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"status"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"BAD_REQUEST"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"timestamp"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;1635764411101&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"error_message"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Desktop&amp;nbsp;pool&amp;nbsp;should&amp;nbsp;be&amp;nbsp;specified&amp;nbsp;naming&amp;nbsp;type"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Documentation says to send exactly what I am sending. What gives? what is this "Desktop pool should be specified naming type"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 01 Nov 2021 16:09:13 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Horizon-REST-Call-inventory-v1-desktop-pools-id-action-add/m-p/2875653#M95244</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-11-01T16:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: New-ContentlibraryItem from template and include advanced configuration</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/New-ContentlibraryItem-from-template-and-include-advanced/m-p/2874738#M103946</link>
      <description>&lt;P&gt;Not looking for manual workarounds though&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 12:54:44 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/New-ContentlibraryItem-from-template-and-include-advanced/m-p/2874738#M103946</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-10-27T12:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: New-ContentlibraryItem from template and include advanced configuration</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/New-ContentlibraryItem-from-template-and-include-advanced/m-p/2874635#M103941</link>
      <description>&lt;P&gt;I want to script it, if it's already in vsphere why would I need to upload the files ...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 01:03:17 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/New-ContentlibraryItem-from-template-and-include-advanced/m-p/2874635#M103941</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-10-27T01:03:17Z</dc:date>
    </item>
    <item>
      <title>Outlook Redirect OST DEM admx setting not taking affect</title>
      <link>https://communities.vmware.com/t5/Dynamic-Environment-Manager/Outlook-Redirect-OST-DEM-admx-setting-not-taking-affect/m-p/2874551#M7262</link>
      <description>&lt;P&gt;I have set an admx setting to redirect the OST for Outlook but it is not taking affect.&amp;nbsp; Why wouldn't this be working?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ntrippcig_0-1635265569440.png" style="width: 400px;"&gt;&lt;img src="https://communities.vmware.com/t5/image/serverpage/image-id/91735iA886020C7B48E978/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="ntrippcig_0-1635265569440.png" alt="ntrippcig_0-1635265569440.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 16:26:23 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Dynamic-Environment-Manager/Outlook-Redirect-OST-DEM-admx-setting-not-taking-affect/m-p/2874551#M7262</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-10-26T16:26:23Z</dc:date>
    </item>
    <item>
      <title>New-ContentlibraryItem from template and include advanced configuration</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/New-ContentlibraryItem-from-template-and-include-advanced/m-p/2869369#M103494</link>
      <description>&lt;P&gt;New-ContentlibraryItem from template and include advanced configuration. In the GUI it's just a check box but in powercli I cannot find a parameter to keep the template advanced configuration properties.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 19:11:29 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/New-ContentlibraryItem-from-template-and-include-advanced/m-p/2869369#M103494</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-09-29T19:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Client Drive Redirection is Slow to Start</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Client-Drive-Redirection-is-Slow-to-Start/m-p/2867991#M94909</link>
      <description>&lt;P&gt;Unfortunately no change.&amp;nbsp; I have an SR case open but they have had it for weeks now and nothing has come from it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 13:10:05 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Client-Drive-Redirection-is-Slow-to-Start/m-p/2867991#M94909</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-09-22T13:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Client Drive Redirection is Slow to Start</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Client-Drive-Redirection-is-Slow-to-Start/m-p/2867595#M94887</link>
      <description>&lt;P&gt;It can take forever with just a single small file.&lt;/P&gt;&lt;P&gt;I have tried direct to connection server without UAG.&amp;nbsp; Tunnel is off on connection servers (it has to be to use UAG).&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested RDP vs Blast and even PCoIP. RDP works fine.&amp;nbsp; Blast and PCoIP trash.&lt;/P&gt;&lt;P&gt;RDP through the UAG was also good.&amp;nbsp; Whatever VMWare is doing in their implementation is causing the issue&lt;/P&gt;</description>
      <pubDate>Mon, 20 Sep 2021 13:06:46 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Client-Drive-Redirection-is-Slow-to-Start/m-p/2867595#M94887</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-09-20T13:06:46Z</dc:date>
    </item>
    <item>
      <title>Client Drive Redirection is Slow to Start</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Client-Drive-Redirection-is-Slow-to-Start/m-p/2866160#M94789</link>
      <description>&lt;P&gt;Have a new Horizon environment and seeing some strange behavior.&amp;nbsp; When using client drive redirection we are often seeing the file copy process take 10 - 20 minutes to even start.&amp;nbsp; Once started the copy speed appears in normal range.&amp;nbsp; VMWare claims that they just tunnel the RDP client drive redirection protocol and support has not had anything useful.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am able to reproduce using both a UAG on internal network and connecting through only connection servers.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I RDP directly to the VDI machine the issue does not happen.&lt;/P&gt;&lt;P&gt;If I use RDP protocol through horizon client the issue does not happen.&lt;/P&gt;&lt;P&gt;We have seen this with UAG 2106 and 2103 (we had to downgrade because of a TCP deadlock bug). Connection servers are on 2103 (just brokering) and Horizon Agent 8.1,8.2,8.3.&amp;nbsp; Using Horizon client 8.00 and also tested latest&amp;nbsp; 8.3&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 13:42:19 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Client-Drive-Redirection-is-Slow-to-Start/m-p/2866160#M94789</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-09-09T13:42:19Z</dc:date>
    </item>
    <item>
      <title>VDIs using Instant clone and OSOT Tool - Explorer needs manual refresh</title>
      <link>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/VDIs-using-Instant-clone-and-OSOT-Tool-Explorer-needs-manual/m-p/2865195#M94744</link>
      <description>&lt;P&gt;Basically when users copy files around using explorer they need to manually refresh to see the files.&amp;nbsp; What setting needs to be re-enabled? This is super annoying and def not behavior I want.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 14:20:52 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/VDIs-using-Instant-clone-and-OSOT-Tool-Explorer-needs-manual/m-p/2865195#M94744</guid>
      <dc:creator>ntrippcig</dc:creator>
      <dc:date>2021-09-03T14:20:52Z</dc:date>
    </item>
  </channel>
</rss>

