<?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: Modifying Script for Advanced Settings in VMware PowerCLI Discussions</title>
    <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297212#M81397</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect and many thanks &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Sep 2020 11:58:31 GMT</pubDate>
    <dc:creator>SCharchouf</dc:creator>
    <dc:date>2020-09-08T11:58:31Z</dc:date>
    <item>
      <title>Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297203#M81388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the below script and it's good, it Modify VM Advanced settings on an multiple VM, capture the VM Advanced setting details before and after VM setting changes for future comparison with the timestamp in .csv format.&lt;/P&gt;&lt;P style="color: #000000; font-family: 'Segoe UI', Verdana, Arial; font-size: 13.008px;"&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: 'Segoe UI', Verdana, Arial; font-size: 13.008px;"&gt;I need assistance in order to modify the script and just to connect only via vCenter without preparing the ServerList file as the ENV is very huge and it's changing&lt;/P&gt;&lt;P style="color: #000000; font-family: 'Segoe UI', Verdana, Arial; font-size: 13.008px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="powerShell__cmdlets" style="color: #006699; font-weight: bold;"&gt;Add-PSSnapin&lt;/SPAN&gt; VMware.VimAutomation.Core &lt;/P&gt;&lt;P&gt;Connect&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;VIServer &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Server vcenter.local &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;User username &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Password Password &lt;/P&gt;&lt;P&gt;&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$ServerListFile&lt;/SPAN&gt; = &lt;SPAN class="powerShell__string" style="color: blue;"&gt;"ServerList.txt"&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$ServerList&lt;/SPAN&gt; = &lt;SPAN class="powerShell__cmdlets" style="color: #006699; font-weight: bold;"&gt;Get-Content&lt;/SPAN&gt; &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$ServerListFile&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="powerShell__keyword" style="color: #006699; font-weight: bold;"&gt;Foreach&lt;/SPAN&gt; (&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__keyword" style="color: #006699; font-weight: bold;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$ServerList&lt;/SPAN&gt;) &lt;/P&gt;&lt;P&gt;{ &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$date&lt;/SPAN&gt;=&lt;SPAN class="powerShell__cmdlets" style="color: #006699; font-weight: bold;"&gt;get-Date&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;format &lt;SPAN class="powerShell__string" style="color: blue;"&gt;"ddMMyy_HHmm"&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;VM &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt;&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;|&lt;/SPAN&gt; Get&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;|&lt;/SPAN&gt; &lt;SPAN class="powerShell__alias" style="color: #006699; font-weight: bold;"&gt;Select&lt;/SPAN&gt; Name, Value &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;|&lt;/SPAN&gt; &lt;SPAN class="powerShell__cmdlets" style="color: #006699; font-weight: bold;"&gt;Export-CSV&lt;/SPAN&gt; &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt;&lt;SPAN class="powerShell__string" style="color: blue;"&gt;"_Before_$date.csv"&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name vmci0.unrestricted &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name RemoteDisplay.maxConnections &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value &lt;SPAN class="powerShell__string" style="color: blue;"&gt;'1'&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name tools.setInfo.sizeLimit &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value &lt;SPAN class="powerShell__string" style="color: blue;"&gt;'1048576'&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name floppyX.present &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name serialX.present &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name parallelX.present &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name ideX:Y.present &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name isolation.device.connectable.disable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value TRUE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name isolation.device.edit.disable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value TRUE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name isolation.tools.unity.push.update.disable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value TRUE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name isolation.tools.ghi.autologon.disable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value TRUE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name isolation.bios.bbs.disable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value TRUE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name vmsafe.enable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name isolation.tools.copy.disable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value TRUE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name isolation.tools.paste.disable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value TRUE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name isolation.tools.autoInstall.disable &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value TRUE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; New&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Name tools.guestlib.enableHostInfo &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$False&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$True&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$date&lt;/SPAN&gt;=&lt;SPAN class="powerShell__cmdlets" style="color: #006699; font-weight: bold;"&gt;get-Date&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;format &lt;SPAN class="powerShell__string" style="color: blue;"&gt;"ddMMyy_HHmm"&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;VM &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt;&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;|&lt;/SPAN&gt; Get&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;AdvancedSetting &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;|&lt;/SPAN&gt; &lt;SPAN class="powerShell__alias" style="color: #006699; font-weight: bold;"&gt;Select&lt;/SPAN&gt; Name, Value &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;|&lt;/SPAN&gt; &lt;SPAN class="powerShell__cmdlets" style="color: #006699; font-weight: bold;"&gt;Export-CSV&lt;/SPAN&gt; &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt;&lt;SPAN class="powerShell__string" style="color: blue;"&gt;"_After_$date.csv"&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Start&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;VM &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;VM &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$vm&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;} &lt;/P&gt;&lt;P&gt;&lt;SPAN class="powerShell__cmdlets" style="color: #006699; font-weight: bold;"&gt;New-Item&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;ErrorAction Ignore &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;ItemType directory &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Path Report &lt;/P&gt;&lt;P&gt;&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$path&lt;/SPAN&gt;=&lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$&lt;/SPAN&gt;(&lt;SPAN class="powerShell__cmdlets" style="color: #006699; font-weight: bold;"&gt;get-location&lt;/SPAN&gt;).Path&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;+&lt;/SPAN&gt;"\report\" &lt;/P&gt;&lt;P&gt;Move&lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Item &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;*&lt;/SPAN&gt;.csv &lt;SPAN class="powerShell__variable" style="color: #aa7700;"&gt;$path&lt;/SPAN&gt; &lt;SPAN class="powerShell__operator" style="color: gray;"&gt;-&lt;/SPAN&gt;Force &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2020 11:42:00 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297203#M81388</guid>
      <dc:creator>SCharchouf</dc:creator>
      <dc:date>2020-09-07T11:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297204#M81389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand your question correctly, you want to run the report for all VMs in a vCenter?&lt;/P&gt;&lt;P&gt;In that case, you could change the start of the script to the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS1: I sincerely hope that you are not using such an old PowerCLI version that you need PSSnapin?&lt;/P&gt;&lt;P&gt;PS2: there is a Start-VM at the end of the script. Is that needed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Connect-VIServer&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Server vcenter.local &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;User username &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Password Password &lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #4b69c6;"&gt;Foreach&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;($&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #4b69c6;"&gt;in&lt;/SPAN&gt; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-VM&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;date&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-Date&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;format &lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;ddMMyy_HHmm&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-AdvancedSetting&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;|&lt;/SPAN&gt; Select Name&lt;SPAN style="color: #777777;"&gt;,&lt;/SPAN&gt; Value &lt;SPAN style="color: #777777;"&gt;|&lt;/SPAN&gt; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Export-CSV&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;_Before_&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;date&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;.csv&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;New-AdvancedSetting&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Name vmci0.unrestricted &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #9c5d27;"&gt;False&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #9c5d27;"&gt;True&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2020 16:41:51 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297204#M81389</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2020-09-07T16:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297205#M81390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks LucD as usualy you are the best &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS:1 we have only this version of PowerCLI installed &lt;STRONG&gt;VMware vSphere PowerCLI 6.3 Release 1 build 3737840&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;PS2&lt;STRONG&gt;: &lt;SPAN lang="en"&gt;Thanks for the information, I haven't seen it &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="en"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;I will start the script as mentioned and keep you posted &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2020 07:37:04 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297205#M81390</guid>
      <dc:creator>SCharchouf</dc:creator>
      <dc:date>2020-09-08T07:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297206#M81391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;below the Script modified:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Connect-VIServer -Server vCenter.local&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Foreach ($vm in Get-VM)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $date=Get-Date -format "ddMMyy_HHmm"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get-AdvancedSetting -Entity$vm | Select Name, Value | Export-CSV $vm"_Before_$date.csv"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; New-AdvancedSetting -Entity $vm -Name isolation.tools.copy.disable -Value TRUE -Confirm:$False -Force:$True | select @{N='VM';E={$_.Entity.Name}},Name,Value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; New-AdvancedSetting -Entity $vm -Name isolation.tools.paste.disable -Value TRUE -Confirm:$False -Force:$True | select @{N='VM';E={$_.Entity.Name}},Name,Value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New-Item -ErrorAction Ignore -ItemType directory -Path Report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$path=$(get-location).Path+"\Reports\"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move-Item *.csv $path -Force&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Issue:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;the folder Reports it's created once I run the report but without any files&lt;/LI&gt;&lt;LI&gt;got this message when I run the script:&amp;nbsp; &lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Get-AdvancedSetting : A parameter cannot be found that matches parameter name 'Entity$vm'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;At .\AdvancedSettings_V1.ps1:9 char:25&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get-AdvancedSetting -Entity$vm | Select Name, Value | Export-CSV&amp;nbsp; ...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&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;&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;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + CategoryInfo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : InvalidArgument: (:) [Get-AdvancedSetting], ParameterBindingException&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : NamedParameterNotFound,VMware.VimAutomation.ViCore.Cmdlets.Commands.GetAdvancedSetting&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PS: it's possible to get the Report in the same CSV that show value before &amp;amp; after?&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2020 08:28:19 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297206#M81391</guid>
      <dc:creator>SCharchouf</dc:creator>
      <dc:date>2020-09-08T08:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297207#M81392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops, a typo.&lt;BR /&gt;There was a space missing between Entity and $vm.&lt;BR /&gt;I corrected the code above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2020 09:10:23 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297207#M81392</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2020-09-08T09:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297208#M81393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks LucD &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just one thing, it's possible to have the a single reports that contain the value before and the value after?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2020 10:34:16 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297208#M81393</guid>
      <dc:creator>SCharchouf</dc:creator>
      <dc:date>2020-09-08T10:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297209#M81394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could store the settings at the start in a hash table.&lt;/P&gt;&lt;P&gt;And then do something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Connect-VIServer&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Server vcenter.local &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;User username &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Password Password&lt;P&gt;&lt;SPAN style="color: #4b69c6;"&gt;Foreach&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;($&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #4b69c6;"&gt;in&lt;/SPAN&gt; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-VM&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;tab&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #4b69c6;"&gt;@&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;{}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;date&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-Date&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;format &lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;ddMMyy_HHmm&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-AdvancedSetting&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;|&lt;/SPAN&gt; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;ForEach-Object&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Process &lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;tab.Add&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;($&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Name&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;,$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Value&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;New-AdvancedSetting&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Name vmci0.unrestricted &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #9c5d27;"&gt;False&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #9c5d27;"&gt;True&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aaaaaa; font-style: italic;"&gt;# repeat for other settings&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-AdvancedSetting&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;|&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Select Name&lt;SPAN style="color: #777777;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #4b69c6;"&gt;@&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;N&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;OldValue&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;E&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;={$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;tab&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;[$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Name&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;]}},&lt;/SPAN&gt;&lt;SPAN style="color: #4b69c6;"&gt;@&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;N&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;NewValue&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;E&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;={$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Value&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;}}&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;|&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Export-Csv&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Path &lt;SPAN style="color: #777777;"&gt;"$($&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm.Name&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;_Settings_&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;$($&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;date&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;.csv&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;NoTypeInformation &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;UseCulture&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2020 11:14:33 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297209#M81394</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2020-09-08T11:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297210#M81395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks LucD, but in that way, it will provide a report for each VM separately &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;imagine 12000 VMs &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2020 11:28:14 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297210#M81395</guid>
      <dc:creator>SCharchouf</dc:creator>
      <dc:date>2020-09-08T11:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297211#M81396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since the original script was also doing that, I assumed you wanted it that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But we can easily place everything in 1 CSV file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Connect-VIServer&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Server vcenter.local &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;User username &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Password Password &lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;report&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #4b69c6;"&gt;@&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;()&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #4b69c6;"&gt;Foreach&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;($&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #4b69c6;"&gt;in&lt;/SPAN&gt; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-VM&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;tab&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #4b69c6;"&gt;@&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;{}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;date&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-Date&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;format &lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;ddMMyy_HHmm&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-AdvancedSetting&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;|&lt;/SPAN&gt; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;ForEach-Object&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Process &lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;tab.Add&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;($&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Name&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;,$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Value&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;New-AdvancedSetting&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Name vmci0.unrestricted &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Value FALSE &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Confirm:&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #9c5d27;"&gt;False&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Force:&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #9c5d27;"&gt;True&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #aaaaaa; font-style: italic;"&gt;# repeat for other settings&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;report&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;+=&lt;/SPAN&gt; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Get-AdvancedSetting&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Entity &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;|&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Select &lt;SPAN style="color: #4b69c6;"&gt;@&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;N&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;VM&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;E&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;={$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;vm.Name&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;}},&lt;/SPAN&gt;Name&lt;SPAN style="color: #777777;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #4b69c6;"&gt;@&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;N&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;OldValue&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;E&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;={$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;tab&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;[$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Name&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;]}},&lt;/SPAN&gt;&lt;SPAN style="color: #4b69c6;"&gt;@&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;N&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;NewValue&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;E&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;={$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Value&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;}}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;report&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;|&lt;/SPAN&gt; &lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Export-Csv&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Path &lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;Settings_&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;$($&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;date&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;.csv&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;NoTypeInformation &lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;UseCulture&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2020 11:39:08 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297211#M81396</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2020-09-08T11:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Script for Advanced Settings</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297212#M81397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect and many thanks &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2020 11:58:31 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Modifying-Script-for-Advanced-Settings/m-p/2297212#M81397</guid>
      <dc:creator>SCharchouf</dc:creator>
      <dc:date>2020-09-08T11:58:31Z</dc:date>
    </item>
  </channel>
</rss>

