<?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: Set-NaVolOption in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75548#M3730</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your updated script will not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change $volume to $vol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't test it all but in theory it should work fine.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 May 2014 18:08:16 GMT</pubDate>
    <dc:creator>JGPSHNTAP</dc:creator>
    <dc:date>2014-05-01T18:08:16Z</dc:date>
    <item>
      <title>Set-NaVolOption</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75521#M3720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would this work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+++++++++++++++++++&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Franklin Gothic Book','sans-serif'; color: black;"&gt;$vols = Get-Content c:\volumes.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Franklin Gothic Book','sans-serif'; color: black;"&gt;Foreach ($vol in $vols) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Franklin Gothic Book','sans-serif'; color: black;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Franklin Gothic Book','sans-serif'; color: black;"&gt;Get-NaVol –Name $vol | &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Franklin Gothic Book','sans-serif'; color: black;"&gt;Get-NaVolOption &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Franklin Gothic Book','sans-serif'; color: black;"&gt;| ? {$_. fractional_reserve -ne 0} | Set-NaVolOption -Key fractional_reserve –Value 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Franklin Gothic Book','sans-serif'; color: black;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+++++++++++++++++&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:36:56 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75521#M3720</guid>
      <dc:creator>JSHACHER11</dc:creator>
      <dc:date>2025-06-05T05:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Set-NaVolOption</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75526#M3721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That will not work.&amp;nbsp; Fractional_reserve is part of the name property.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, why are you dumping volumes from a file?&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see you connecting to a controller either.. How you are planning on executing this,&amp;nbsp; That will determine how we can assist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, what I would do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$hosts = gc c:\temp\filers.txt # list of filers&lt;/P&gt;&lt;P&gt;$hosts | % {&lt;/P&gt;&lt;P&gt;$Filer = $_&lt;/P&gt;&lt;P&gt;$c = connect-nacontroller $filer&lt;/P&gt;&lt;P&gt;$vols = Get-navol&lt;/P&gt;&lt;P&gt;$vols | % {&lt;/P&gt;&lt;P&gt;$volume = $_.name&lt;/P&gt;&lt;P&gt; if ((get-navoloption $volume | ? {$_.name -eq "fractional_reserve"}).value -ne 0)&lt;/P&gt;&lt;P&gt;{ set-navoloption $volume fractional_reserve 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2014 14:40:30 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75526#M3721</guid>
      <dc:creator>JGPSHNTAP</dc:creator>
      <dc:date>2014-05-01T14:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Set-NaVolOption</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75535#M3724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"&lt;SPAN style="color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; font-size: 12.727272033691406px; background-color: #ffffff;"&gt;why are you dumping volumes from a file? &lt;/SPAN&gt;" - I've been asked to do a list of volumes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; font-size: 12.727272033691406px; background-color: #ffffff;"&gt;I don't see you connecting to a controller either&lt;/SPAN&gt;" - I would have used the '&lt;SPAN style="color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; font-size: 12.727272033691406px; background-color: #ffffff;"&gt;connect-nacontroller&lt;/SPAN&gt;' obviously. I did not forget that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the rest of the script = I'll try that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you want to add anything&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2014 16:01:58 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75535#M3724</guid>
      <dc:creator>JSHACHER11</dc:creator>
      <dc:date>2014-05-01T16:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Set-NaVolOption</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75540#M3726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;would this work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;++++++++++++++++++++++++++&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Franklin Gothic Book', sans-serif; color: black;"&gt;$vols = Get-Content c:\volumes.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Franklin Gothic Book', sans-serif; color: black;"&gt;Foreach ($vol in $vols)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Franklin Gothic Book', sans-serif; color: black;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;if ((get-navoloption $vol | ? {$_.name -eq "fractional_reserve"}).value -ne 0)&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;{ set-navoloption $volume fractional_reserve 0}&lt;/P&gt;&lt;P style="font-size: 12.727272033691406px; font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;&lt;SPAN style="line-height: 1.5em;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+++++++++++++++++++++++&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2014 17:16:27 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75540#M3726</guid>
      <dc:creator>JSHACHER11</dc:creator>
      <dc:date>2014-05-01T17:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Set-NaVolOption</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75544#M3728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would also like to save a report of what exactly was done - something like a combination of -Verbose and Start-Transcript&lt;/P&gt;&lt;P&gt;is that possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2014 17:55:41 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75544#M3728</guid>
      <dc:creator>JSHACHER11</dc:creator>
      <dc:date>2014-05-01T17:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Set-NaVolOption</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75548#M3730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your updated script will not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change $volume to $vol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't test it all but in theory it should work fine.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2014 18:08:16 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75548#M3730</guid>
      <dc:creator>JGPSHNTAP</dc:creator>
      <dc:date>2014-05-01T18:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Set-NaVolOption</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75557#M3733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it worked - thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2014 11:32:57 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Set-NaVolOption/m-p/75557#M3733</guid>
      <dc:creator>JSHACHER11</dc:creator>
      <dc:date>2014-05-02T11:32:57Z</dc:date>
    </item>
  </channel>
</rss>

