<?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: Automate ESX Datastore creation with Nimble PowerShell Module in Array Setup and Networking</title>
    <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983532#M856</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm so i just ran this line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New-NSVolume&amp;nbsp; -Name "test" -Size 2tb -MultipleInitiator -PerformancePolicy 'VMware ESX 5'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it ran successfully. when did you install the module? it could possibly be an older release that had a bug in it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jan 2014 21:50:29 GMT</pubDate>
    <dc:creator>jrich52352</dc:creator>
    <dc:date>2014-01-27T21:50:29Z</dc:date>
    <item>
      <title>Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983522#M846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a quick script that will add an additional volume to your ESX environment.&lt;/P&gt;&lt;P&gt;It requires the Nimble &lt;A href="https://community.hpe.com/thread/1277"&gt;PowerShell Module&lt;/A&gt; and PowerCLI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Connect to VCenter and Nimble Array&lt;/P&gt;&lt;P&gt;Connect-VIServer -Server $vcenter&lt;/P&gt;&lt;P&gt;Connect-NSArray -SystemName $ip -Password $password&lt;/P&gt;&lt;P&gt;#define settings&lt;/P&gt;&lt;P&gt;$vmhost = get-vmhost $VMHostName&lt;/P&gt;&lt;P&gt;$volumeName = "Nimble04"&lt;/P&gt;&lt;P&gt;$InitGroupName = "ESX"&lt;/P&gt;&lt;P&gt;$Size = 2tb&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Create a new volume&lt;/P&gt;&lt;P&gt;$vol = New-NSVolume -Name $volumeName -Size $Size -MultipleInitiator -PerformancePolicy 'VMware ESX 5'&lt;/P&gt;&lt;P&gt;# Provide the ESX hosts access to that volume&lt;/P&gt;&lt;P&gt;Add-NSInitiatorGroupToVolume -InitiatorGroup $InitGroupName -Volume $volumeName -Access Both&lt;/P&gt;&lt;P&gt;# Find the volume on the ESX host&lt;/P&gt;&lt;P&gt;$target = $vol.serialnumber&lt;/P&gt;&lt;P&gt;Get-VMHost -Server $nvm | Get-VMHostStorage -RescanAllHba&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$lun = Get-ScsiLun -VmHost $vmhost -CanonicalName "eui.$target"&lt;/P&gt;&lt;P&gt;$canonicalName = $lun.canonicalname&lt;/P&gt;&lt;P&gt;# Create the new DataStore&lt;/P&gt;&lt;P&gt;New-Datastore -Name $volumeName -Path $canonicalName -Vmfs -VMHost $vmhost&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get-VMHost | Get-VMHostStorage -RescanAllHba&lt;/P&gt;&lt;P&gt;# Make sure the Multipathing is setup correctly (RoundRobin)&lt;/P&gt;&lt;P&gt;get-vmhost | Get-ScsiLun -CanonicalName $canonicalName | ?{$_.multipathpolicy -ne "RoundRobin"} | Set-ScsiLun -MultipathPolicy RoundRobin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2014 18:09:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983522#M846</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-22T18:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983523#M847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any reason why you're confirming the use of Round Robin for multipathing rather than using the Nimble Path Selection Plugin?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.supersonicdog.com/2013/10/10/esx55casl20-2/" title="http://www.supersonicdog.com/2013/10/10/esx55casl20-2/"&gt;Nimble 2.0 PSP Integration with VMware vSphere Part I (VIB Install) | super sonic dog (S.S.D)&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.supersonicdog.com/2013/10/16/nimble20part2/" title="http://www.supersonicdog.com/2013/10/16/nimble20part2/"&gt;Nimble 2.0 PSP Integration with VMware vSphere Part II (NCS + PSP deep dive) | super sonic dog (S.S.D)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should be out on Infosight also.&lt;A href="https://community.hpe.com/u1/2681"&gt;Todd Moore&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jan 2014 01:21:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983523#M847</guid>
      <dc:creator>julez66</dc:creator>
      <dc:date>2014-01-25T01:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983524#M848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont believe 2.0 is technically released yet, also I havent seen it before, looks pretty neat though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jan 2014 05:55:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983524#M848</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-25T05:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983525#M849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Julian, one reason to still use the native RoundRobin is due to VMware licensing. To use a third-party PSP requires Enterprise or Enterprise Plus licensing. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 18:45:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983525#M849</guid>
      <dc:creator>aherbert23</dc:creator>
      <dc:date>2014-01-26T18:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983526#M850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Justin,&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; I've tried your script and everything work fine except for the the Performance policy. It appears that if the performance policy has spaces in it's name it will not read/apply regardless of whether it's in single of double quotes .... or indeed without.&lt;/P&gt;&lt;P&gt;In addition the embedded "VMware ESX 5" policy has spaces in it's name as do other standard policies but you cannot create a new performance policy through the Nimble Web interface with any spaces in the name .... as designed. Our array is a 460G on version 1.4.9..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use the default policy or create a new policy with no spaces it's fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;New-NSVolume : Cannot validate argument on parameter 'PerformancePolicy'. The argument "VMware ESX 5" does not belong to &lt;/P&gt;&lt;P&gt;the set "default,ESX-5,'Exchange 2003 data store','Exchange 2007 data store','Exchange 2010 data store','Exchange &lt;/P&gt;&lt;P&gt;log',George-5,'Hyper-V CSV','Oracle OLTP',SharePoint,'SQL Server','SQL Server 2012','SQL Server Logs','VMware &lt;/P&gt;&lt;P&gt;ESX','VMware ESX 5','VMware VDI','Windows File Server'" specified by the ValidateSet attribute. Supply an argument that &lt;/P&gt;&lt;P&gt;is in the set and then try the command again.&lt;/P&gt;&lt;P&gt;At C:\NimblePowerShell-master\createDatastoreandVolume.ps1:13 char:89&lt;/P&gt;&lt;P&gt;+ ... formancePolicy $pp&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; ~~~&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; : InvalidData: (:) [New-NSVolume], ParameterBindingValidationException&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : ParameterArgumentValidationError,New-NSVolume&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add-NSInitiatorGroupToVolume : Error adding&amp;nbsp; to the list! code: SMeinval&lt;/P&gt;&lt;P&gt;At C:\NimblePowerShell-master\createDatastoreandVolume.ps1:15 char:1&lt;/P&gt;&lt;P&gt;+ Add-NSInitiatorGroupToVolume -InitiatorGroup $InitGroupName -Volume $volumeName&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&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: (:) [Write-Error], WriteErrorException&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Add-NSInitiatorGroupToVolume"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:54:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983526#M850</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-01-27T14:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983527#M851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm, so if you add the quotes it still gives the same error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had run in to the problem myself with the spaces but adding the quotes did it for me. &lt;/P&gt;&lt;P&gt;Im trying to dig in to it a bit more but from what i can tell its a bug in how tab expansion works. Im usind "dynamic parameter" which reads in the possibilities and makes that the validation set. I tried adding quotes as it read them in, but then it shows the quotes in the ISE intellisense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However it really should accept it if you put it in quotes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you show me the line as you typed it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 16:43:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983527#M851</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-27T16:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983528#M852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;#Import the PowerCLI module&lt;BR /&gt;Add-PSSnapin VMware.VimAutomation.Core&lt;BR /&gt;$ip = "10.7.1.1"&lt;BR /&gt;$vcenter = "10.7.3.200"&lt;BR /&gt;$password = "NOWAYJose"&lt;BR /&gt;Connect-VIServer -Server $vcenter&lt;BR /&gt;Connect-NSArray -SystemName $ip -Password $password &lt;BR /&gt;$vmhost = get-vmhost Esxi-01.smbc.loc&lt;BR /&gt;$volumeName = "Nimble-123"&lt;BR /&gt;$InitGroupName = "ESXi-SMBC-CLUSTER-1"&lt;BR /&gt;$Size = 125gb&lt;BR /&gt;$pp = "default"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Create a new volume&lt;BR /&gt;$vol = New-NSVolume -Name $volumeName -Size $Size -MultipleInitiator -PerformancePolicy $pp&lt;BR /&gt;# Provide the ESX hosts access to that volume&lt;BR /&gt;Add-NSInitiatorGroupToVolume -InitiatorGroup $InitGroupName -Volume $volumeName -Access Both&lt;BR /&gt;# Find the volume on the ESX host&lt;BR /&gt;$target = $vol.serialnumber&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get-VMHost -Server $nvm | Get-VMHostStorage -RescanAllHba&lt;BR /&gt;$lun = Get-ScsiLun -VmHost $vmhost -CanonicalName "eui.$target"&lt;BR /&gt;$canonicalName = $lun.canonicalname&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Create the new DataStore&lt;BR /&gt;New-Datastore -Name $volumeName -Path $canonicalName -Vmfs -VMHost $vmhost&lt;BR /&gt;Get-VMHost | Get-VMHostStorage -RescanAllHba&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Make sure the Multipathing is setup correctly (RoundRobin)&lt;BR /&gt;get-vmhost | Get-ScsiLun -CanonicalName $canonicalName | ?{$_.multipathpolicy -ne "RoundRobin"} | Set-ScsiLun -MultipathPolicy RoundRobin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 16:59:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983528#M852</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-01-27T16:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983529#M853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;instead of $pp = "default" it said $pp = "VMware ESX 5"&amp;nbsp; I tried 'VMware ESX 5' and "'VMware ESX '5" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The previous script with "Default" ran OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&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; Mark.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 17:01:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983529#M853</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-01-27T17:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983530#M854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you know, im not sure i tried it with it being assigned to a variable, I always just typed it in on the new-snvolume line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll play around with it that way and see what i come up with.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 17:20:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983530#M854</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-27T17:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983531#M855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With or without the variable the outcome is the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 18:05:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983531#M855</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-01-27T18:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983532#M856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm so i just ran this line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New-NSVolume&amp;nbsp; -Name "test" -Size 2tb -MultipleInitiator -PerformancePolicy 'VMware ESX 5'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it ran successfully. when did you install the module? it could possibly be an older release that had a bug in it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 21:50:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983532#M856</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-27T21:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983533#M857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;P&gt;Same line that failed for me. Have you got a pointer for the modules you used.&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 05:28:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983533#M857</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-01-28T05:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983534#M858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;P&gt;As per your link Justin&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 11:20:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983534#M858</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-01-28T11:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983535#M859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just to be safe, close powershell, delete the Nimble folder in the modules folder (my documents\windowspowershell\modules)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then open up powershell and run this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;ex (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" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;https://raw.github.com/jrich523/NimblePowerShell/master/Install.ps1&lt;/A&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;')&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;also, what version of powershell are you using? nothing comes to mind as to why this wouldnt work in V2, but this is designed around V3&lt;/SPAN&gt;&lt;EM style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 17:31:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983535#M859</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-28T17:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983536#M860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;fixed the problem, you'll have to install it again (couple of code changes). you still need to manually supply the quotes, but at least now it works!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 00:48:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983536#M860</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-30T00:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983537#M861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;P&gt;I'll give it a go tomorrow. I'm using PowerShell v3 and esxi 5.5 &lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 17:27:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983537#M861</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-01-30T17:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983538#M862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im actually making a few other modifications right now, so you'll want to download it again tomorrow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 17:29:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983538#M862</guid>
      <dc:creator>jrich52352</dc:creator>
      <dc:date>2014-01-30T17:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983539#M863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;P&gt;Worked a treat. Thanks. Need to learn Powershell basics and some to fully understand some of the snippets on here.&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Feb 2014 07:29:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983539#M863</guid>
      <dc:creator>marktheblue45</dc:creator>
      <dc:date>2014-02-02T07:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983540#M864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tried running that same exact command and I'm receiving an error...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New-NSVolume : Error Creating volume test! code: SMeinval&lt;/P&gt;&lt;P&gt;At line:1 char:1&lt;/P&gt;&lt;P&gt;+ New-NSVolume&amp;nbsp; -Name "test" -Size 2tb -MultipleInitiator -PerformancePolicy 'VMwa ...&lt;/P&gt;&lt;P&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&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: (:) [Write-Error], WriteErrorException&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,New-NSVolume&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm running PS version 3.0 and I'm running version 1.1.20140407.1024 of the Nimble module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 16:26:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983540#M864</guid>
      <dc:creator>brichardson15</dc:creator>
      <dc:date>2015-02-26T16:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Automate ESX Datastore creation with Nimble PowerShell Module</title>
      <link>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983541#M865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am running the latest powershell module from GitHub, running powershell 4.0 and my nimbles are running 2.2.9.0-269169-opt. This is the command im running and the error im getting:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New-NSVolume -PerformancePolicy default -Name "test" -Description "test" -Size 500GB -MultipleInitiator&lt;/P&gt;&lt;P&gt;New-NSVolume : Error Creating volume test! code: SMeinval&lt;/P&gt;&lt;P&gt;At line:1 char:1&lt;/P&gt;&lt;P&gt;+ New-NSVolume -PerformancePolicy default -Name "test" -Description "test" -Size 5 ...&lt;/P&gt;&lt;P&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&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: (:) [Write-Error], WriteErrorException&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,New-NSVolume&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New-NSVolume -PerformancePolicy "VMware ESX 5" -Name "test" -Description "test" -Size 500GB -MultipleInitiator&lt;/P&gt;&lt;P&gt;New-NSVolume : Error Creating volume test! code: SMeinval&lt;/P&gt;&lt;P&gt;At line:1 char:1&lt;/P&gt;&lt;P&gt;+ New-NSVolume -PerformancePolicy "VMware ESX 5" -Name "test" -Description "test"&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&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: (:) [Write-Error], WriteErrorException&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,New-NSVolume&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 17:31:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/array-setup-and-networking/automate-esx-datastore-creation-with-nimble-powershell-module/m-p/6983541#M865</guid>
      <dc:creator>yolinares27</dc:creator>
      <dc:date>2015-10-21T17:31:06Z</dc:date>
    </item>
  </channel>
</rss>

