<?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: PowerShell Module in Array Setup and Networking</title>
    <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985816#M1888</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just may it's that cool!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I didn't mean to come off like a jerk just wanted to know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Feb 2014 21:11:21 GMT</pubDate>
    <dc:creator>agnostic_comput</dc:creator>
    <dc:date>2014-02-14T21:11:21Z</dc:date>
    <item>
      <title>PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985781#M1853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://github.com/jrich523/NimblePowerShell" title="https://github.com/jrich523/NimblePowerShell"&gt;jrich523/NimblePowerShell · GitHub&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Built and tested in Version 3 (v2 compatibility will be validated but it should be fine)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; font-size: 14pt; text-decoration: underline;"&gt;&lt;STRONG&gt;Install&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Run the following line in PowerShell&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;iex (new-object System.Net.WebClient).DownloadString('&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://raw.github.com/jrich523/NimblePowerShell/master/Install.ps1"&gt;https://raw.github.com/jrich523/NimblePowerShell/master/Install.ps1&lt;/A&gt;&lt;SPAN&gt;')&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; font-size: 14pt; text-decoration: underline;"&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In powershell load the module by typing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Import-Module Nimble&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This might prompt for loading depending on what your execution policy is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get a list of commands type:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Get-Command -module Nimble&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;currently the help files are not populated but once I get basic functionality up and running I'll start to sure up the code and populate help details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14pt; text-decoration: underline;"&gt;&lt;STRONG&gt;Examples&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;##Connect to array first, currently only handles one array&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Connect-NSArray -SystemName 192.168.1.55 -Password p@ssw0rd&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp; ##currently password is just clear text, will change that soon&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;#List volumes&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Get-NSVolume&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;#New volume&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;New-NSVolume -Name testvol -Size 1tb -Description "powershell test" -PerformancePolicy default&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;#a more detailed example, assume you have a "clonetest" volume:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Get-NSVolume&lt;/P&gt;&lt;P&gt;Get-NSSnapShot -Volume clonetest&lt;/P&gt;&lt;P&gt;Get-NSVolume -Name clonetest| New-NSSnapshot -Name CloneTest2 | New-NSClone -Name CloneTest2&lt;/P&gt;&lt;P&gt;Get-NSSnapShot -Volume clonetest&lt;/P&gt;&lt;P&gt;Get-NSVolume&lt;/P&gt;&lt;P&gt;Get-NSVolume clonetest2 | Get-NSVolumeACL&lt;/P&gt;&lt;P&gt;Get-NSInitiatorGroup&lt;/P&gt;&lt;P&gt;Add-NSInitiatorGroupToVolume -InitiatorGroup esx -Volume clonetest2 -Access Volume&lt;/P&gt;&lt;P&gt;Get-NSVolume clonetest2 | Get-NSVolumeACL&lt;/P&gt;&lt;P&gt;Get-NSVolume clonetest2 | Get-NSVolumeACL | Get-NSInitiatorGroup&lt;/P&gt;&lt;P&gt;Remove-NSVolume clonetest2 -Force&lt;/P&gt;&lt;P&gt;Get-NSVolume clonetest | Get-NSSnapShot | Remove-NSSnapShot&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="example.gif" class="jive-image" src="https://community.hpe.com/legacyfs/online/1408_example.gif" style="width: 620px; height: 678px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline; font-size: 14pt;"&gt;Requests&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you have a special need let me know i can probably easily add it in, just trying to get base functionality and work towards replication the UI functionality.&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Justin Rich&lt;BR /&gt;module version 1.1 uploaded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2013 18:23:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985781#M1853</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2013-05-28T18:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985782#M1854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have made some updates, mostly around docs so that cmdlets should have their help populated.&lt;/P&gt;&lt;P&gt;Also I added some functions around the performance policy stuff.&lt;/P&gt;&lt;P&gt;There will be a few more updates coming.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jan 2014 16:57:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985782#M1854</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-12T16:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985783#M1855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good stuff!&lt;/P&gt;&lt;P&gt;I have a question about the module. There is a file called GroupMgmt.dll. Are you the author of this? Is source available?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 15:51:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985783#M1855</guid>
      <dc:creator>gmiller132</dc:creator>
      <dc:date>2014-01-16T15:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985784#M1856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nimble actually works off SOAP calls so this is an automatically generated dll from visual studio.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 16:18:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985784#M1856</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-16T16:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985785#M1857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's very interesting. Does Nimble publish a WSDL with the available interfaces? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 16:31:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985785#M1857</guid>
      <dc:creator>gmiller132</dc:creator>
      <dc:date>2014-01-16T16:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985786#M1858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not really, which is whats been making this so tricky, however today i should have a new version published with full examples!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only thing (I think) that will be left will be CHAPS and creating protection plans/schedules. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 16:47:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985786#M1858</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-16T16:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985787#M1859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get an error when I load the module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import-Module : The module manifest nimble.psd1 could not be processed because it is not a valid Windows PowerShell restricted language file. Remove the elements that are not permitted by the restricted language:&lt;/P&gt;&lt;P&gt;At C:\...\Modules\nimble\nimble.psd1:64 char:22&lt;/P&gt;&lt;P&gt;+ FormatsToProcess = @(Nimble.format.ps1xml)&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;&amp;nbsp;&amp;nbsp; ~~~~~~~~~~~~~~~~~~~~&lt;/P&gt;&lt;P&gt;The command 'Nimble.format.ps1xml' is not allowed in restricted language mode or a Data section.&lt;/P&gt;&lt;P&gt;At line:1 char:1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I unblocked the zip file before extracting and I've also tried using -force on the Import-Module cmdlet...&lt;/P&gt;&lt;P&gt;Anything I'm missing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 17:35:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985787#M1859</guid>
      <dc:creator>clint_mcguire</dc:creator>
      <dc:date>2014-01-16T17:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985788#M1860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm could have sworn i fixed that before i uploaded it, its a simple problem, just need to quote it, the line should look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;FormatsToProcess = @('Nimble.format.ps1xml')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;im not so good at the whole git thing &lt;IMG src="https://community.hpe.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;i should actually have a newer, and much better, version in the next hour or two.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 17:45:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985788#M1860</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-16T17:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985789#M1861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That fixed it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 19:43:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985789#M1861</guid>
      <dc:creator>clint_mcguire</dc:creator>
      <dc:date>2014-01-16T19:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985790#M1862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There an update and an installer! not sure how well it would work with updating, but a clean install works great. I've had a chance to test most of the cmdlets pretty well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a large portion of the help test is populated but not all of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if you have any problems or suggestions!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2014 22:17:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985790#M1862</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-16T22:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985791#M1863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After running:&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; Connect-NSArray -SystemName 192.168.1.55 -Password p@ssw0rd &lt;/STRONG&gt;I get:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exception calling "getControllerName" with "1" argument(s): "Method 'getControllerName' not implemented: method name or namespace not recognized"&lt;/P&gt;&lt;P&gt;At C:\Users\a_jesse\Documents\WindowsPowerShell\Modules\Nimble\Login.ps1:37 char:7&lt;/P&gt;&lt;P&gt;+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $arrname = $script:nsunit.getControllerName($sid.value)&lt;/P&gt;&lt;P&gt;+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/P&gt;&lt;P&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; : NotSpecified: (:) [], MethodInvocationException&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : SoapHeaderException&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It does still connect to the array and I can add and remove volumes but I thought you might like to fix this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise I am very eager to see future development! This is great! Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 19:15:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985791#M1863</guid>
      <dc:creator>jhauf56</dc:creator>
      <dc:date>2014-01-23T19:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985792#M1864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting, what version of software are you running with your unit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 19:23:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985792#M1864</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-23T19:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985793#M1865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd love to chat with you to get familiar with Poweshell scripts and Nimble&lt;/P&gt;&lt;P&gt;in particular. Novice with CLI outside of Novell.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;                Mark.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 19:32:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985793#M1865</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-01-23T19:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985794#M1866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I usually sit in IRC, which you can access via &lt;A href="http://powershellgroup.org/virtual/live" title="http://powershellgroup.org/virtual/live"&gt;Live Chat | PowerShell Community Groups&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 19:37:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985794#M1866</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-23T19:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985795#M1867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;2.0.3.0-40779-opt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It might be our version, we are in a little bit of a special situation with Nimble and our unit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 20:56:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985795#M1867</guid>
      <dc:creator>jhauf56</dc:creator>
      <dc:date>2014-01-23T20:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985796#M1868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm they must have changed the API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all that does is print out the name of the unit you are connecting to, so it really has no impact on the operations of things. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will be interesting to see if you run in to any other errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 21:01:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985796#M1868</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-23T21:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985797#M1869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will keep you posted if I do but all of the commands appear to be working so far. Just cosmetic at this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for this, much easier, quicker, and cleaner than plink&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 21:12:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985797#M1869</guid>
      <dc:creator>jhauf56</dc:creator>
      <dc:date>2014-01-23T21:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985798#M1870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah i actually had to do a good chunk of vmware work (hence all the other posts) and i was real happy about how easy it all was. made it a pleasure to do!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also found some bugs, so i've had updates, as late as yesterday.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I havent tried using the installer to overwrite/update, but i cant see why it wouldnt. depending on when you installed it, you might want to grab an update.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 21:15:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985798#M1870</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-23T21:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985799#M1871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just installed it a couple hours ago so it should be the latest. I have a project that was put on hold for awhile that I am circling back to. I will post the script up when I am done so folks can see a sample script. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 21:46:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985799#M1871</guid>
      <dc:creator>jhauf56</dc:creator>
      <dc:date>2014-01-23T21:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985800#M1872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;great, cant wait to see it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 22:23:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/powershell-module/m-p/6985800#M1872</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-23T22:23:17Z</dc:date>
    </item>
  </channel>
</rss>

