<?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 VMWare Tools Advanced Option in vSphere Update Manager PowerCLI Discussions</title>
    <link>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338000#M356</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use Power CLI to query VMware tools to see if a certain driver such as the SVGA Driver or VMCI Driver is installed ? Ive been looking at Get-View with VMware.vim.virtualmachineconfigspec which shows the status of the tools etc but doesn't seem to be able to delve to the level im after. Any one else managed to query these options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 May 2015 11:12:34 GMT</pubDate>
    <dc:creator>Sam239</dc:creator>
    <dc:date>2015-05-12T11:12:34Z</dc:date>
    <item>
      <title>VMWare Tools Advanced Option</title>
      <link>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338000#M356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use Power CLI to query VMware tools to see if a certain driver such as the SVGA Driver or VMCI Driver is installed ? Ive been looking at Get-View with VMware.vim.virtualmachineconfigspec which shows the status of the tools etc but doesn't seem to be able to delve to the level im after. Any one else managed to query these options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 11:12:34 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338000#M356</guid>
      <dc:creator>Sam239</dc:creator>
      <dc:date>2015-05-12T11:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: VMWare Tools Advanced Option</title>
      <link>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338001#M357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the &lt;A href="https://www.vmware.com/support/developer/PowerCLI/PowerCLI58R1/html/Invoke-VMScript.html"&gt;Invoke-VMScript&lt;/A&gt; cmdlet and query the WMI inside the guest OS.&lt;/P&gt;&lt;P&gt;Something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="text-align: Left; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 12; color: #000000;"&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 16;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$vmName&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; color: #8b0000;"&gt;&lt;SPAN&gt;'MyVM'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier New; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: Lucida Console; color: #ff4500;"&gt;&lt;SPAN&gt;$cmd&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Lucida Console; color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Lucida Console; color: #a9a9a9;"&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Lucida Console; color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;@"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier New; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;Get-WmiObject -Query 'Select * from Win32_SoftwareFeature Where ProductName LIKE "VMware Tools%" and InstallState=3'|&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier New; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;Select Caption&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: Courier New; color: #8b0000;"&gt;&lt;SPAN&gt;"@&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;Invoke-VMScript&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN&gt;-VM&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$vmName&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN&gt;-ScriptType&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; color: #8a2be2;"&gt;&lt;SPAN&gt;Powershell&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN&gt;-ScriptText&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$cmd &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 17:43:59 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338001#M357</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2015-05-12T17:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: VMWare Tools Advanced Option</title>
      <link>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338002#M358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks LucD ive got a script working using similer to what you had in your reply which gives me what im after however Ill need to add a rule to any server with the firewall on to allow WMI to run on the guests have you has that problem ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 16:08:47 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338002#M358</guid>
      <dc:creator>Sam239</dc:creator>
      <dc:date>2015-05-13T16:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: VMWare Tools Advanced Option</title>
      <link>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338003#M359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I didn't have that.&lt;/P&gt;&lt;P&gt;But it is strange, the WMI call is made within the guest OS.&lt;/P&gt;&lt;P&gt;Normally the FW shouldn't interfere in that. &lt;/P&gt;&lt;P&gt;Which rule did you have to add ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 16:32:20 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338003#M359</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2015-05-13T16:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: VMWare Tools Advanced Option</title>
      <link>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338004#M360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Found that the issue was I was running the below command from my management server not in an invoke command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ive now added it to my script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get-WmiObject -Class Win32_SystemDriver -Filter "name='vsepflt'" | Select Caption&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to format the output ? Or query it so if the driver is found I can print success or not found not found ? Im looking to wrap an if command round it to run through several machines&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 10:44:36 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338004#M360</guid>
      <dc:creator>Sam239</dc:creator>
      <dc:date>2015-05-14T10:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: VMWare Tools Advanced Option</title>
      <link>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338005#M361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="text-align: Left; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 12; color: #000000;"&gt;&lt;P style="font-family: Courier New; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 16;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Lucida Console; color: #ff4500;"&gt;&lt;SPAN&gt;$cmd&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Lucida Console; color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Lucida Console; color: #a9a9a9;"&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Lucida Console; color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;@"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier New; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;Get-WmiObject -Query 'Select * from Win32_SoftwareFeature Where ProductName LIKE "VMware Tools%" and InstallState=3'|&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier New; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;Select Caption&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: Courier New; color: #8b0000;"&gt;&lt;SPAN&gt;"@&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;Get-VM&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;|&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;%&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$result&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;Invoke-VMScript&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN&gt;-VM&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$_&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN&gt;-ScriptType&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; color: #8a2be2;"&gt;&lt;SPAN&gt;Powershell&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080;"&gt;&lt;SPAN&gt;-ScriptText&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$cmd&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #00008b;"&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$result&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;ScriptOutput&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;-match&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; color: #8b0000;"&gt;&lt;SPAN&gt;"vShield Drivers"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;){&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;Write-Output&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; color: #8b0000;"&gt;&lt;SPAN&gt;"vShield drivers installed on &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$_&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;Name)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; color: #8b0000;"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #00008b;"&gt;&lt;SPAN&gt;else&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;Write-Output&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #f5deb3;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; color: #8b0000;"&gt;&lt;SPAN&gt;"vShield drivers not installed on &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&gt;&lt;SPAN&gt;$_&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;Name)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; color: #8b0000;"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;} &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 17:48:38 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Update-Manager-PowerCLI/VMWare-Tools-Advanced-Option/m-p/1338005#M361</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2015-05-14T17:48:38Z</dc:date>
    </item>
  </channel>
</rss>

