<?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: Configuration info for a controller in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1541#M73</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking over the hash table link you sent me and I'm not quite sure how to incorporate it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would I hash this portion? Add-Content -Path $ControllerConfigFile&lt;/P&gt;&lt;P&gt;I'm not sure how to use it as described in the link. And there also seems to be issues with ordering?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Dec 2012 18:06:19 GMT</pubDate>
    <dc:creator>callowaydx</dc:creator>
    <dc:date>2012-12-21T18:06:19Z</dc:date>
    <item>
      <title>Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1508#M65</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Full disclosure, I'm fairly new to PowerShell but a big fan. I'm trying to learn more and more so that I can leverage it for my organization.&lt;/P&gt;&lt;P&gt;I'm developing a script that logs into each controller and gathers information that I specify. It takes that informaiton and add/appends it to a file based on the controller name and date/time then attaches those files and sends an email. &lt;/P&gt;&lt;P&gt;The script works up until I check for the multistore license and start checking for different info. Any suggestions? Maybe I need to clean up my script, too. Any and all help would be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 06:13:44 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1508#M65</guid>
      <dc:creator>callowaydx</dc:creator>
      <dc:date>2025-06-05T06:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1513#M67</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wen through your script, and i found that the credential parameter is missing for Connect-NaController, you will need to specify credentials as below, i have highlighted the text which needs to be appended in black.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ForEach ($Controller in $ControllerList)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Admin account logon&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $Password = ConvertTo-SecureString "password" -AsPlainText –Force&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $Cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList "administrator",$Password&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Connect-NaController $Controller &lt;STRONG&gt;-Credential $cred&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can use custom hash tables to append all values to one place rather than using Add-Content to create reusable objects, please have a look at the link &lt;A href="http://blogs.msdn.com/b/powershell/archive/2009/12/05/new-object-psobject-property-hashtable.aspx" title="http://blogs.msdn.com/b/powershell/archive/2009/12/05/new-object-psobject-property-hashtable.aspx" target="_blank"&gt;http://blogs.msdn.com/b/powershell/archive/2009/12/05/new-object-psobject-property-hashtable.aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2012 11:10:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1513#M67</guid>
      <dc:creator>vinith</dc:creator>
      <dc:date>2012-12-19T11:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1522#M70</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help. I've fixed the credential portion (thanks for the catch) and I'm looking into hast tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having trouble with lines 102 - 126 of my script. The variable is not populating with info and I'm having difficulty getting the 'if' portion of my script to check if a value is true, the continue to run the script.&lt;/P&gt;&lt;P&gt;Thoughts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Check to see if the filer is licensed for multistore.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #If it is, check for NFS/iSCSI related items.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $NFSiSCSIVerify = Get-NaLicense -Name multistore&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ($NFSViSCSIVerify.Licensed -eq "TRUE")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Get vFiler info&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get-NaVfiler | Out-String -Stream | Add-Content -Path $ControllerConfigFile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $NFSiSCSIControllerList = Get-NaVfiler&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Get NFS Export info running in memory&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Add-Content -Path $ControllerConfigFile -Value "&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NFS exports in memory&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Invoke-NaSsh -Command "vfiler run * exportfs" | Out-String -Stream | Add-Content -Path $ControllerConfigFile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #Run scripts against NFS/iSCSI controllers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ForEach ($NFSiSCSIController in $NFSiSCSIControllerList)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #get NFS Exports info from the exports file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Add-Content -Path $ControllerConfigFile -Value "&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NFS exports in the exports file -- Shoud match what is in memory...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Read-NaFile $("/vol/" + $NFSiSCSIController + "/etc/exports") | Out-String -Stream | Add-Content -Path $ControllerConfigFile&lt;/P&gt;&lt;P&gt;&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; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 13:35:49 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1522#M70</guid>
      <dc:creator>callowaydx</dc:creator>
      <dc:date>2012-12-21T13:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1526#M71</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is your issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; $NFSiSCSIVerify = Get-NaLicense -Name multistore&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ($NFS&lt;STRONG&gt;V&lt;/STRONG&gt;iSCSIVerify.Licensed -eq "TRUE")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have an extra V in your second line.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I'd avoid comparing a boolean value to a string. It works, but can be confusing.&amp;nbsp; I'd try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ($NFSiSCSIVerify.Licensed )&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;if ($NFSiSCSIVerify.Licensed -eq $true )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 14:35:29 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1526#M71</guid>
      <dc:creator>bsti</dc:creator>
      <dc:date>2012-12-21T14:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1535#M72</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That did the trick! Thanks! One little character... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I originally used the second of your suggestions, &lt;SPAN style="color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff;"&gt;if ($NFSiSCSIVerify.Licensed -eq $true )&lt;/SPAN&gt;, but it still wouldn't work so I tried other things just to get some results. I appreciate your help and I'm still looking into hash tags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 14:45:24 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1535#M72</guid>
      <dc:creator>callowaydx</dc:creator>
      <dc:date>2012-12-21T14:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1541#M73</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking over the hash table link you sent me and I'm not quite sure how to incorporate it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would I hash this portion? Add-Content -Path $ControllerConfigFile&lt;/P&gt;&lt;P&gt;I'm not sure how to use it as described in the link. And there also seems to be issues with ordering?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 18:06:19 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1541#M73</guid>
      <dc:creator>callowaydx</dc:creator>
      <dc:date>2012-12-21T18:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1545#M74</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Vinith in spirit in that it's better to export your data as objects, so that you can re-read them back into Powershell later and re-use them, but that might take quite a bit of rework on your part.&amp;nbsp; This is how you would use this concept:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our case, we have a script that does something very similar to what yours does.&amp;nbsp; Once per day, it grabs the options and values off of all controllers using Get-NaOption.&amp;nbsp; We then record that to a date stamped .xml file.&amp;nbsp; We then read in the previous days' file values and compare the two.&amp;nbsp; If there are differences, we get a report detailing what has changed.&amp;nbsp; Another useful function is we can read in the .xml files and quickly re-apply the option values.&amp;nbsp; Here is some example code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;$options = Get-NaOption&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#&amp;nbsp; Export the options as object-oriented xml:&lt;/P&gt;&lt;P&gt;$options | Export-CliXML -path c:\temp\options1.xml&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#&amp;nbsp; Import the same file back into a collection:&lt;/P&gt;&lt;P&gt;$optionsFromFile = Import-CliXml -path c:\temp\options1.xml&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#&amp;nbsp; Reapply the options if I want (Be careful, this is dangerous):&lt;/P&gt;&lt;P&gt;$optionsFromFile | % { Set-NaOption -OptionName $_.Name -OptionValue $_.Value }&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd probably never do this exact exercise, but it illustrates what you can do with object-oriented output and input.&amp;nbsp; XML works very nicely and the Export/Import-CliXML cmdlets make it very easy.&amp;nbsp; In your case, you are exporting quite a bit of unlike data, so I'm not sure this is practical with your approach.&amp;nbsp; I'd take a look and decide what works best for your application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 18:46:13 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1545#M74</guid>
      <dc:creator>bsti</dc:creator>
      <dc:date>2012-12-21T18:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1553#M75</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your advice. I'm going to look at your suggestion and try to incorporate it. It would be nice to be able to compare what has changed and be able to act on it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 19:17:55 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1553#M75</guid>
      <dc:creator>callowaydx</dc:creator>
      <dc:date>2012-12-21T19:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1558#M77</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where in your sample code do you compare the files from the previous day?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 19:36:03 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1558#M77</guid>
      <dc:creator>callowaydx</dc:creator>
      <dc:date>2012-12-21T19:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1564#M80</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't, but it would look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;#&amp;nbsp; Get the current options:&lt;/P&gt;&lt;P&gt;$options = Get-NaOption&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#&amp;nbsp; Get the previous day's options:&lt;/P&gt;&lt;P&gt;$optionsOld = Import-CliXml -Path C:\temp\previous_options.xml&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Compare-Object -ReferenceObject $options -DifferenceObject $optionsOld -Property name,value&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 19:59:53 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1564#M80</guid>
      <dc:creator>bsti</dc:creator>
      <dc:date>2012-12-21T19:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1569#M82</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see... My challenge becomes grabbing the file with the correct date and time... I could strip the time out of the file since I plan to run this only once a day. That would solve my filename problem. Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 20:04:20 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1569#M82</guid>
      <dc:creator>callowaydx</dc:creator>
      <dc:date>2012-12-21T20:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1574#M84</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you just want to compare to the latest file, that is easy:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;$file = get-childitem -path C:\temp | ? { $_.Name -imatch "\.xml" } | Sort-Object LastWriteTime -Descending | select-object -first 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( $file )&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;#&amp;nbsp; Compare...&lt;/P&gt;&lt;P&gt;&amp;nbsp; $optionsOld = Import-CliXml -Path $file.FullName&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; throw ("No files found to compare!")&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 20:15:39 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1574#M84</guid>
      <dc:creator>bsti</dc:creator>
      <dc:date>2012-12-21T20:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration info for a controller</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1579#M86</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the quick response! I've learned quite a bit since posting here! You guys are a great resource and I really appreciate the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 20:19:06 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Configuration-info-for-a-controller/m-p/1579#M86</guid>
      <dc:creator>callowaydx</dc:creator>
      <dc:date>2012-12-21T20:19:06Z</dc:date>
    </item>
  </channel>
</rss>

