<?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: How to obtain a VMs IP address along with other parameters in PowerCLI in VMware PowerCLI Discussions</title>
    <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756956#M55601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The previous answer will work in most cases, but to have it as the CSV export does it (multiple NICs and IPv6 addresses), you'll have to do something like this.&lt;/P&gt;&lt;P&gt;Note that you'll need to have VMware Tools installed to get the IP adresses.&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="font-size: 16;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;Get-VM&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&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;/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;Select&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #8a2be2;"&gt;&lt;SPAN&gt;Name&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;@{N&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: #8b0000;"&gt;&lt;SPAN&gt;'IP Address'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;;E&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;{&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; @(&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;guest&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;IPAddress &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; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;where&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&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: #008080;"&gt;&lt;SPAN&gt;ipaddress&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;Parse(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&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: #a9a9a9;"&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;AddressFamily &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;-eq&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;'InterNetwork'&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&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;Guest&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;IpAddress &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; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;where&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&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: #008080;"&gt;&lt;SPAN&gt;ipaddress&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;Parse(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&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: #a9a9a9;"&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;AddressFamily &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;-eq&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;'InterNetworkv6'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;}) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;-join&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&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: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }}&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-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P&gt;And yes, this "Joker" remembers Peter Frampton.&lt;/P&gt;&lt;P&gt;In fact I even remember Humble Pie :smileycool:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Feb 2017 07:44:54 GMT</pubDate>
    <dc:creator>LucD</dc:creator>
    <dc:date>2017-02-24T07:44:54Z</dc:date>
    <item>
      <title>How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756954#M55599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know it's a strange question, but with all these different new parameters, along with Get-Member, VIProperty and all other kinds of stuff rolling around in my head, I needed to know the answer to something i think is simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you export the data from a VM listing in vSphere web client, you can customize what columns you do or don't want; including choices like IP Address and Notes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've gone through all of my notes and I cannot for the life of me find where to request the info for IP Address (IPv4 preferably)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone 'show me the way'?&amp;nbsp; (That's for alf of us who are old enough to remember Peter Frampton *LOL*)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance as always,&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 23:49:18 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756954#M55599</guid>
      <dc:creator>miguelvelezwhit</dc:creator>
      <dc:date>2017-02-23T23:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756955#M55600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this, replace "vmname" with your VM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14879008117381091" jivemacro_uid="_14879008117381091" modifiedtitle="true"&gt;
&lt;P&gt;Get-VM &lt;EM&gt;&lt;STRONG&gt;vmname&lt;/STRONG&gt;&lt;/EM&gt; | Select Name, @{N="IP Address";E={@($_.guest.IPAddress[0])}}&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 01:54:48 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756955#M55600</guid>
      <dc:creator>kwhornlcs</dc:creator>
      <dc:date>2017-02-24T01:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756956#M55601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The previous answer will work in most cases, but to have it as the CSV export does it (multiple NICs and IPv6 addresses), you'll have to do something like this.&lt;/P&gt;&lt;P&gt;Note that you'll need to have VMware Tools installed to get the IP adresses.&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="font-size: 16;"&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;Get-VM&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&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;/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;Select&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #8a2be2;"&gt;&lt;SPAN&gt;Name&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;@{N&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: #8b0000;"&gt;&lt;SPAN&gt;'IP Address'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;;E&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;{&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; @(&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;guest&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;IPAddress &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; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;where&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&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: #008080;"&gt;&lt;SPAN&gt;ipaddress&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;Parse(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&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: #a9a9a9;"&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;AddressFamily &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;-eq&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;'InterNetwork'&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&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;Guest&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;IpAddress &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; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;where&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&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: #008080;"&gt;&lt;SPAN&gt;ipaddress&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;Parse(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff4500;"&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: #a9a9a9;"&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;AddressFamily &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;-eq&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #8b0000;"&gt;&lt;SPAN&gt;'InterNetworkv6'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;}) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #a9a9a9;"&gt;&lt;SPAN&gt;-join&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&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: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }}&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-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Lucida Console; margin: 0 0 0 0; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P&gt;And yes, this "Joker" remembers Peter Frampton.&lt;/P&gt;&lt;P&gt;In fact I even remember Humble Pie :smileycool:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 07:44:54 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756956#M55601</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2017-02-24T07:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756957#M55602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Never fail to learn something new from you LucD‌ - I'll be tucking that one away.&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.vmware.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dumb question...what do you use for the syntax highlighting? doesn't seem any of the default forum editor formats do the key-word, string or variable highlighting properly for Powershell.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 12:10:11 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756957#M55602</guid>
      <dc:creator>kwhornlcs</dc:creator>
      <dc:date>2017-02-24T12:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756958#M55603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use a the &lt;A href="http://blog.falchionconsulting.com/index.php/2012/10/windows-powershell-v3-ise-copy-as-html-add-on/"&gt;Copy as HTML&lt;/A&gt; plugin for ISE.&lt;/P&gt;&lt;P&gt;See also &lt;A _jive_internal="true" href="https://communities.vmware.com/docs/DOC-14271"&gt;Some ways to enter PowerCLI code under the new forum SW&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 12:36:30 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756958#M55603</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2017-02-24T12:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756959#M55604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's good to know that there's someone else besides me remembers back when music was actually music!!&amp;nbsp; I get teased around here because I was actually alive and watching when man landed on the moon back in '69.&amp;nbsp; These kids look at me as if I came from Pluto.&amp;nbsp; Oh well.&amp;nbsp; Thanks for the flashback&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 20:59:13 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756959#M55604</guid>
      <dc:creator>miguelvelezwhit</dc:creator>
      <dc:date>2017-02-24T20:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756960#M55605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh by the way, the force is definitely with you Master Luke.&amp;nbsp; You had my mind boggled with this answer.&amp;nbsp; I easily spent a good two hours trying to take apart the expression so that I could understand what you did.&amp;nbsp; I was going through the pages of your 2nd edition guide.&amp;nbsp; I've managed to determine that what made all this possible was not only a calculated value/expression, but also included some type of .NET class which I still haven't found yet.&amp;nbsp; Although I remember reading about this, I don't know enough .NET to really wield these the way that you do.&amp;nbsp; Is there some kind of reference that I can access which shows me all the different classes?&amp;nbsp; I'm assuming that this is some hybrid of Visual Studio and the .NET Framework.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You've taken me on a whole new course and I know how I'll be spending my weekend - trying to learn more about classes which can be called up in PowerShell.&amp;nbsp; My problem is that on the MSDN website it mentions that these classes come from C#, F#, VB - but I couldn't find anything specifically on .NET - I'm beginning to understand that whatever doesn't readily exist, can pretty much be built.&amp;nbsp; However, that's still way outside my skill set at this time.&amp;nbsp; Anything that you can share that will help me to catch up will be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*MIND OFFICIALLY&amp;nbsp; BLOWN*!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 21:10:21 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756960#M55605</guid>
      <dc:creator>miguelvelezwhit</dc:creator>
      <dc:date>2017-02-24T21:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756961#M55606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's one of the beauties from PowerShell, you have access to all the .Net classes.&lt;/P&gt;&lt;P&gt;The &lt;A href="https://msdn.microsoft.com/en-us/library/system.net.ipaddress(v=vs.110).aspx"&gt;IPAddress&lt;/A&gt; class has some methods.&lt;BR /&gt;Beats constructing RegEx expressions to achieve the same :smileygrin:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 22:39:24 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756961#M55606</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2017-02-24T22:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756962#M55607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I'm beginning to see the benefits of using this class.&amp;nbsp; Do you have anywhere to point me where I can learn more about the other available classes in .NET?&amp;nbsp; I'm going through the IPAddress class now - and yes, it sure beats the crap out of RegEx.&amp;nbsp; However, since I'm&amp;nbsp; just getting&amp;nbsp; back into the whole .NET development thing - actually for the first time taking it truly in-depth, not just cursory glances, I'm looking for a go to reference(s) that my ObiWan recommends.&amp;nbsp; Can you point me towards what&amp;nbsp; you consider to be good books/sites?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks as always.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your devoted Padawan,&lt;/P&gt;&lt;P&gt;Miguel&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>Mon, 27 Feb 2017 13:25:24 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756962#M55607</guid>
      <dc:creator>miguelvelezwhit</dc:creator>
      <dc:date>2017-02-27T13:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain a VMs IP address along with other parameters in PowerCLI</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756963#M55608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The MSDN pages are of course the ultimate source for the&lt;A href="https://msdn.microsoft.com/en-us/library/gg145045(v=vs.110).aspx"&gt; .Net classes&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which .Net classes to "learn", is of course fully dependent on the task you have at hand.&lt;/P&gt;&lt;P&gt;And hence it is not obvious which .Net classes to explore.&lt;/P&gt;&lt;P&gt;See also Don Jones thread on the subject, aptly named &lt;A href="https://powershell.org/2013/10/15/why-the-heck-do-you-want-to-be-taught-net-in-a-powershell-class/"&gt;Why the HECK Do You Want to be Taught .NET in a PowerShell Class?!?!?!&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In most cases Google (or Bing) is your friend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some of the classes that I used, and which turned out to be very useful (random order).&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;System.Diagnostics (application debugging/diagnostics)&lt;/LI&gt;&lt;LI&gt;System.Runtime (application management)&lt;/LI&gt;&lt;LI&gt;System.Timers (timed events, see for example &lt;A href="http://www.lucd.info/2016/12/23/get-esxtop-another-look/"&gt;Get-EsxTop – Another Look&lt;/A&gt;)&lt;/LI&gt;&lt;LI&gt;System.Text (encoding/decoding)&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2017 13:53:02 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/How-to-obtain-a-VMs-IP-address-along-with-other-parameters-in/m-p/1756963#M55608</guid>
      <dc:creator>LucD</dc:creator>
      <dc:date>2017-02-27T13:53:02Z</dc:date>
    </item>
  </channel>
</rss>

