<?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 Multiple vm snapshot creation and deletion in VMware PowerCLI Discussions</title>
    <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502198#M15677</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm looking for simple powercli script to create and delete list of vms snapshots. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please provide if someone have this script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jan 2017 20:50:05 GMT</pubDate>
    <dc:creator>vmwARE-NEW</dc:creator>
    <dc:date>2017-01-19T20:50:05Z</dc:date>
    <item>
      <title>Multiple vm snapshot creation and deletion</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502198#M15677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm looking for simple powercli script to create and delete list of vms snapshots. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please provide if someone have this script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:50:05 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502198#M15677</guid>
      <dc:creator>vmwARE-NEW</dc:creator>
      <dc:date>2017-01-19T20:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple vm snapshot creation and deletion</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502199#M15678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any powercli/powershell experience?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a link to the cmdlet reference :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://pubs.vmware.com/vsphere-60/index.jsp#com.vmware.powercli.cmdletref.doc/Get-Snapshot.html" title="http://pubs.vmware.com/vsphere-60/index.jsp#com.vmware.powercli.cmdletref.doc/Get-Snapshot.html"&gt;vSphere 6.0 Documentation Center&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest coming up with some pseudo code first, and we can then help you with the final details.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2017 15:50:28 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502199#M15678</guid>
      <dc:creator>jpsider</dc:creator>
      <dc:date>2017-01-20T15:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple vm snapshot creation and deletion</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502200#M15679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Good news for you is, there is no high level scripting is required to achieve what you want.. &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here are some cool and easy to operate stuff about multiple VMs snapshot creation..&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.techiessphere.com/2017/02/taking-multiple-vms-snapshot-vmware.html" title="http://www.techiessphere.com/2017/02/taking-multiple-vms-snapshot-vmware.html"&gt;http://www.techiessphere.com/2017/02/taking-multiple-vms-snapshot-vmware.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.techiessphere.com/2017/02/multiple-virtual-machines-snapshot-import-csv.html" title="http://www.techiessphere.com/2017/02/multiple-virtual-machines-snapshot-import-csv.html"&gt;http://www.techiessphere.com/2017/02/multiple-virtual-machines-snapshot-import-csv.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To delete the VMs, you may use below command on POwerCLI:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;get-vm | Get-Snapshot | where {$_.name -match "newsnapshotclitest"}| Remove-Snapshot&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;(This command will delete all snapshot matching the name "&lt;SPAN style="font-size: 13.3333px;"&gt;newsnapshotclitest&lt;/SPAN&gt;" from all VMs, so use it carefully after understanding it well and testing it on test environment first).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 06:05:15 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502200#M15679</guid>
      <dc:creator>iamamit</dc:creator>
      <dc:date>2017-02-23T06:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple vm snapshot creation and deletion</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502201#M15680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in addition to my reply above, I would recommend to read the below KB for snapshot removal task.. Its explained in detail..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.techiessphere.com/2017/03/removing-snapshot-of-multiple-virtual-machines-vmware.html" title="http://www.techiessphere.com/2017/03/removing-snapshot-of-multiple-virtual-machines-vmware.html"&gt;http://www.techiessphere.com/2017/03/removing-snapshot-of-multiple-virtual-machines-vmware.html&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 16:48:59 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502201#M15680</guid>
      <dc:creator>iamamit</dc:creator>
      <dc:date>2017-03-13T16:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple vm snapshot creation and deletion</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502202#M15681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Discussion moved from &lt;A _jive_internal="true" class="jivecontainerTT-hover-container" data-objectid="6380" data-objecttype="14" href="https://communities.vmware.com/community/vmtn/vsphere/esxi6"&gt; VMware ESXi 6&lt;/A&gt; to &lt;A _jive_internal="true" class="jivecontainerTT-hover-container" data-objectid="2530" data-objecttype="14" href="https://communities.vmware.com/community/vmtn/automationtools/powercli"&gt; VMware PowerCLI&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 16:51:06 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/502202#M15681</guid>
      <dc:creator>a_p_</dc:creator>
      <dc:date>2017-03-13T16:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple vm snapshot creation and deletion</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/2921628#M107596</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Please try use this commands, it worked for me.&lt;/P&gt;&lt;P&gt;To get snapshots for multiple VMs use this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Get-VM&lt;/STRONG&gt; &lt;STRONG&gt;-Name&lt;/STRONG&gt; VM1,VM2,VM3 | &lt;STRONG&gt;New-Snapshot -Name&lt;/STRONG&gt; SnapshotNameHere - &lt;STRONG&gt;Description&lt;/STRONG&gt; SnapshotDescriptionHere&lt;/P&gt;&lt;P&gt;To delete snapshot for multiple VMs use this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;G-VM -Name&lt;/STRONG&gt; VM1,VM2,VM3, | &lt;STRONG&gt;Get-Snapshot&lt;/STRONG&gt; | &lt;STRONG&gt;Remove-Snapshot&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: reference VM1,VM2,VM3 to your VMs&lt;BR /&gt;Hope that helps&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 01:44:40 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Multiple-vm-snapshot-creation-and-deletion/m-p/2921628#M107596</guid>
      <dc:creator>Sam0054</dc:creator>
      <dc:date>2022-08-01T01:44:40Z</dc:date>
    </item>
  </channel>
</rss>

