<?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: Create new array from existing array data in VMware PowerCLI Discussions</title>
    <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293994#M81034</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the Where method on the $bigList variable.&lt;/P&gt;&lt;P&gt;Something like this.&lt;/P&gt;&lt;P&gt;I forced an array (although not really needed) should there be only 1 row passing the Where-clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;smallList&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;bigList.Where&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;({$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.PowerState&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;PoweredOff&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-and&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Status&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;Decommissioned&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;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;smallList&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 c:\Temp\smallList.csv&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Sep 2020 18:02:32 GMT</pubDate>
    <dc:creator>LucD</dc:creator>
    <dc:date>2020-09-02T18:02:32Z</dc:date>
    <item>
      <title>Create new array from existing array data</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293993#M81033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an array, $bigList = @()&lt;/P&gt;&lt;P&gt;it contains for example&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #c6c6c6; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;VMname&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;PowerState&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;Owner&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;Status&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;MyServer1&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;PoweredOn&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;J.Bloggs&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;Installed&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;MyServer2&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;PoweredOff&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;M.Smythe&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;Decommissioned&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;MyServer3&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;PoweredOff&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;M.Smythe&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;Installed&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a second array if PowerState=PoweredOff and Status=Decommissioned&lt;/P&gt;&lt;P&gt;The second Array contents will be output as a .CSV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i've come up with is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$smallList = @()&lt;/P&gt;&lt;P&gt;foreach ($row in $bigList){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(($bigList.PowerState -match 'PoweredOff') and ($bigList.Status -match 'Decommissioned)){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $smallListProperty = [ordered] @{&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; 'VM Name' = $bigList.VMname&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; 'Owner' = $bigList.Owner&lt;/P&gt;&lt;P&gt;&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; $smallList += new-object -TypeName psobject -Property $smallListProperty&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;$smallList | export-CSV -path c:\Temp\smallList.csv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It kind of works but the output i'm getting is&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #c6c6c6; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;VM Name&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;Owner&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;System.Object[]&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;System.Object[]&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2020 17:22:20 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293993#M81033</guid>
      <dc:creator>piercj2</dc:creator>
      <dc:date>2020-09-02T17:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Create new array from existing array data</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293994#M81034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the Where method on the $bigList variable.&lt;/P&gt;&lt;P&gt;Something like this.&lt;/P&gt;&lt;P&gt;I forced an array (although not really needed) should there be only 1 row passing the Where-clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;smallList&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;bigList.Where&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;({$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.PowerState&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;PoweredOff&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-and&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Status&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;Decommissioned&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;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;smallList&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 c:\Temp\smallList.csv&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2020 18:02:32 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293994#M81034</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2020-09-02T18:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create new array from existing array data</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293995#M81035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;that's really close but, if the conditions are met, i.e.&amp;nbsp; PowerState=PoweredOff and Status=Decommissioned, that entire row is copied from $bigList to $smallList.&lt;/P&gt;&lt;P&gt;I'm trying to include only specific columns in $smallList. e.g. VMName and PowerState or, VMName and Status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;smallList&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;bigList.Where&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;({$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.PowerState&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;PoweredOff&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-and&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Status&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;Decommissioned&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;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;smallList&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;| select $smallList.VMname, $smallList.PowerState&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 c:\Temp\smallList.csv&lt;/P&gt;&lt;P&gt;but it fails&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've also tried&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;smallList&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;bigList.Where&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;({$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.PowerState&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;PoweredOff&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-and&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Status&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;Decommissioned&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;' select $_.'VM Name', $_.'CI Status'&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;SPAN style="color: #7a3e9d;"&gt;smallList&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;| select $smallList.VMname, $smallList.PowerState&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #aa3731; font-weight: bold;"&gt;Export-Csv&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #777777;"&gt;-&lt;/SPAN&gt;Path c:\Temp\smallList.csv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But that REALLY fails&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2020 21:29:49 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293995#M81035</guid>
      <dc:creator>piercj2</dc:creator>
      <dc:date>2020-09-02T21:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create new array from existing array data</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293996#M81036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;smallList&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;bigList.Where&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;({$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.PowerState&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;PoweredOff&lt;/SPAN&gt;&lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-and&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="color: #7a3e9d;"&gt;_.Status&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;-match&lt;/SPAN&gt; &lt;SPAN style="color: #777777;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #448c27;"&gt;Decommissioned&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: #777777;"&gt;|&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Select VMname&lt;SPAN style="color: #777777;"&gt;,&lt;/SPAN&gt;Status&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;SPAN style="color: #7a3e9d;"&gt;smallList&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 c:\Temp\smallList.csv &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>Thu, 03 Sep 2020 08:37:14 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293996#M81036</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2020-09-03T08:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create new array from existing array data</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293997#M81037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Luc, that worked perfectly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2020 12:00:02 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Create-new-array-from-existing-array-data/m-p/2293997#M81037</guid>
      <dc:creator>piercj2</dc:creator>
      <dc:date>2020-09-03T12:00:02Z</dc:date>
    </item>
  </channel>
</rss>

