<?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 Changing Dedupe Schedules in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Changing-Dedupe-Schedules/m-p/42440#M1992</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Currently, all my volumes dedupe at midnight (default). We're having some backup windows extend into that time so I want to bump the dedupe schedule out to 2a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using the following command to get all volumes with Dedupe enabled: Get-NaVol | where { $_.DedupeEnabled -eq "True" }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I'm trying to pipe that result into Set-NaSis but it looks like the result of the Get-NaVol command is not the correct object type via this error: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set-NaSis : The input object cannot be bound to any parameters for the command either because the command does not take&lt;/P&gt;&lt;P&gt; pipeline input or the input and its properties do not match any of the parameters that take pipeline input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is my theory correct? Either way, what would I do to get accomplish my goal. If there's a better way altogether I'm definitely ok with that. Just trying to learn some powershell in the process &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.netapp.com/5.0.1/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jun 2025 06:24:12 GMT</pubDate>
    <dc:creator>AJECKERLE</dc:creator>
    <dc:date>2025-06-05T06:24:12Z</dc:date>
    <item>
      <title>Changing Dedupe Schedules</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Changing-Dedupe-Schedules/m-p/42440#M1992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Currently, all my volumes dedupe at midnight (default). We're having some backup windows extend into that time so I want to bump the dedupe schedule out to 2a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using the following command to get all volumes with Dedupe enabled: Get-NaVol | where { $_.DedupeEnabled -eq "True" }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I'm trying to pipe that result into Set-NaSis but it looks like the result of the Get-NaVol command is not the correct object type via this error: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set-NaSis : The input object cannot be bound to any parameters for the command either because the command does not take&lt;/P&gt;&lt;P&gt; pipeline input or the input and its properties do not match any of the parameters that take pipeline input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is my theory correct? Either way, what would I do to get accomplish my goal. If there's a better way altogether I'm definitely ok with that. Just trying to learn some powershell in the process &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.netapp.com/5.0.1/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 06:24:12 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Changing-Dedupe-Schedules/m-p/42440#M1992</guid>
      <dc:creator>AJECKERLE</dc:creator>
      <dc:date>2025-06-05T06:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Dedupe Schedules</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Changing-Dedupe-Schedules/m-p/42445#M1993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is cliche, but I found the answer just after I posted. If I added a ForEach-Object this seems to work. I found this post which helped me out - &lt;A href="http://social.technet.microsoft.com/Forums/en/ITCG/thread/94cadfc3-d077-4200-b81b-75f31906082d" title="http://social.technet.microsoft.com/Forums/en/ITCG/thread/94cadfc3-d077-4200-b81b-75f31906082d" target="_blank"&gt;http://social.technet.microsoft.com/Forums/en/ITCG/thread/94cadfc3-d077-4200-b81b-75f31906082d&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, just in case anyone needs this as well, here is the full command to change dedupe schedules on all volumes with dedupe enabled:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$result = get-NaVol | where { $_.DedupeEnabled -eq "True" }&lt;/P&gt;&lt;P&gt;$result | ForEach-Object { Set-NaSis sun-sat@2 }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there's a better way or if someone wants to rip apart my syntax feel free. Not sure why I didn't just do it in one line...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2012 15:16:01 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Changing-Dedupe-Schedules/m-p/42445#M1993</guid>
      <dc:creator>AJECKERLE</dc:creator>
      <dc:date>2012-06-25T15:16:01Z</dc:date>
    </item>
  </channel>
</rss>

