<?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: Trying to list schedules for all volumes enabled in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47512#M2242</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your assistance.&amp;nbsp; Theoretically nosnap should be set "on" on the volumes with out snapshots but I will go through and check that as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Oct 2013 18:23:46 GMT</pubDate>
    <dc:creator>ABARTHELMORT</dc:creator>
    <dc:date>2013-10-15T18:23:46Z</dc:date>
    <item>
      <title>Trying to list schedules for all volumes enabled</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47493#M2239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to list the snapshot schedules for all volumes that have snapshots currently enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used a simple get-navol | get-nasnapshotschedule | export-csv -path c:\snapshots.csv to try and attempt this but have noticed it is dumping all volumes (as expected) but is not showing if scheduled snapshots are enabled or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm wondering if anyone has any ideas how I could get the schedule for only those volumes with scheduled snapshots enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:52:05 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47493#M2239</guid>
      <dc:creator>ABARTHELMORT</dc:creator>
      <dc:date>2025-06-05T05:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to list schedules for all volumes enabled</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47497#M2240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a full dashboard that will do this, but I will get you started&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; $snapsched = Get-NaSnapshotSchedule $volume -erroraction "silentlycontinue" &lt;BR /&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; if ($snapsched.weeks -eq 0 -and $snapsched.days -eq 0 -and $snapsched.hours -eq 0 -and $snapsched.minutes -eq 0) {&lt;BR /&gt;&amp;nbsp; $snapshotsched = "No"&lt;BR /&gt;&amp;nbsp; } else {&lt;BR /&gt;&amp;nbsp; $snapshotsched = "Yes"&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write-host $snapshotsched&amp;nbsp; - This will tell you if there is a snapshot schedule&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 21:16:41 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47497#M2240</guid>
      <dc:creator>JGPSHNTAP</dc:creator>
      <dc:date>2013-10-11T21:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to list schedules for all volumes enabled</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47506#M2241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The other thing is it's easy to remove stuff from the pipeline, so we can find the volumes easily that don't have a schedule associated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get-navol |get-nasnapshotschedule |&amp;nbsp; ? {($_.days -eq 0) -and ($_.hours -eq 0) -and ($_.Weeks -eq 0)}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But are all your vol options nosnap set to on or you just control it through the schedule.&amp;nbsp; I was trying to craft something via one pipeline, but i think the if/else will have to do the trick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 21:36:36 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47506#M2241</guid>
      <dc:creator>JGPSHNTAP</dc:creator>
      <dc:date>2013-10-11T21:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to list schedules for all volumes enabled</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47512#M2242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your assistance.&amp;nbsp; Theoretically nosnap should be set "on" on the volumes with out snapshots but I will go through and check that as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 18:23:46 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47512#M2242</guid>
      <dc:creator>ABARTHELMORT</dc:creator>
      <dc:date>2013-10-15T18:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to list schedules for all volumes enabled</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47517#M2243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe this is something you want:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you change&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff;"&gt;$snapsched = Get-NaSnapshotSchedule $volume -erroraction "silentlycontinue&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff;"&gt;to&lt;BR /&gt;&lt;/SPAN&gt;$snapscheds = get-navol | Select-Object -Property @{n='targetname';e={$_.Name}} | Get-NaSnapshotSchedule&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;followed with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;foreach ($snapsched in $snapscheds) {&lt;/P&gt;&lt;P style="font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ($snapsched.weeks -eq 0 -and $snapsched.days -eq 0 -and $snapsched.hours -eq 0 -and $snapsched.minutes -eq 0) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $snapshotsched = "No"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $snapshotsched = "Yes"&lt;/P&gt;&lt;P style="font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Arial, Helvetica, Verdana, sans-serif; color: #454545; background-color: #ffffff;"&gt;Write-host $snapshotsched&amp;nbsp; - This will tell you if there is a snapshot schedule&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2013 06:00:50 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Trying-to-list-schedules-for-all-volumes-enabled/m-p/47517#M2243</guid>
      <dc:creator>wim_van_der_heijden</dc:creator>
      <dc:date>2013-10-17T06:00:50Z</dc:date>
    </item>
  </channel>
</rss>

