<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>powercli snapshot report email Archives - the Sysadmin Channel</title>
	<atom:link href="https://thesysadminchannel.com/tag/powercli-snapshot-report-email/feed/" rel="self" type="application/rss+xml" />
	<link>https://thesysadminchannel.com/tag/powercli-snapshot-report-email/</link>
	<description>Documenting My Life as a System Administrator</description>
	<lastBuildDate>Mon, 17 Dec 2018 06:57:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
<site xmlns="com-wordpress:feed-additions:1">144174110</site>	<item>
		<title>Get All VMware Snapshots using PowerCLI Module</title>
		<link>https://thesysadminchannel.com/get-all-vmware-snapshots-using-powercli-module/</link>
					<comments>https://thesysadminchannel.com/get-all-vmware-snapshots-using-powercli-module/#respond</comments>
		
		<dc:creator><![CDATA[Paul Contreras]]></dc:creator>
		<pubDate>Tue, 11 Dec 2018 06:55:24 +0000</pubDate>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[get all snapshots vcenter]]></category>
		<category><![CDATA[Get All VMware Snapshots]]></category>
		<category><![CDATA[list all snapshots vmware]]></category>
		<category><![CDATA[powercli find all vms with snapshots]]></category>
		<category><![CDATA[powercli snapshot report email]]></category>
		<category><![CDATA[view all snapshots in vsphere web client]]></category>
		<category><![CDATA[vmware list snapshots command line]]></category>
		<category><![CDATA[vmware powercli get snapshot creator]]></category>
		<category><![CDATA[vmware snapshot check script]]></category>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=1149</guid>

					<description><![CDATA[<p>I recently asked myself what was the easiest way to get all VMware snapshots and came across a quick and easy way using Powershell and the PowerCLI module. Get All VMware Snapshots using PowerCLI You&#8217;re going to have to download&#8230; <a href="https://thesysadminchannel.com/get-all-vmware-snapshots-using-powercli-module/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://thesysadminchannel.com/get-all-vmware-snapshots-using-powercli-module/">Get All VMware Snapshots using PowerCLI Module</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I recently asked myself what was the easiest way to get all VMware snapshots and came across a quick and easy way using Powershell and the PowerCLI module.</p>
<h2>Get All VMware Snapshots using PowerCLI</h2>
<p>You&#8217;re going to have to <a href="https://thesysadminchannel.com/install-vmware-powercli-module-powershell/" rel="noopener" target="_blank">download and install the PowerCLI module</a> as a prerequisite so I&#8217;ve linked an article we&#8217;ve previously wrote on how to do just that.</p>
<p>Now for the command.</p>
<pre class="brush: powershell; title: ; notranslate">

Get-VM | Get-Snapshot | select VM, Name, Created

</pre>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/12/Get-VMware-Snapshots.png" target="_blank"><img fetchpriority="high" decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/12/Get-VMware-Snapshots.png" alt="Get-VMware Snapshots" width="899" height="451" class="aligncenter size-full wp-image-1150" srcset="https://thesysadminchannel.com/wp-content/uploads/2018/12/Get-VMware-Snapshots.png 899w, https://thesysadminchannel.com/wp-content/uploads/2018/12/Get-VMware-Snapshots-768x385.png 768w" sizes="(max-width: 899px) 100vw, 899px" /></a></p>
<p>This method definitely beats having to right click each virtual machine and navigating one by one to see if the snapshot manager has something in memory.</p>
<h2>Bonus Tip</h2>
<p>If you find that you want to remove all snapshots at once you can append the Remove-Snapshot to the end of the Get-Snapshot.  It would look something like this.</p>
<p><em>Note: We also want to append the Confirm parameter so it doesn&#8217;t prompt us to delete after running the command.</em></p>
<pre class="brush: powershell; title: ; notranslate">

Get-VM | Get-Snapshot | Remove-Snapshot -Confirm:$false

</pre>
<p>Don&#8217;t forget to follow us on <a href="https://www.youtube.com/channel/UC9VnUjmZrNG3ithDZmG-S-g" rel="noopener" target="_blank">Youtube for more Sysadmin content</a></p>
<p>#PowershellBooks :<br />
<a href="https://amzn.to/2HoPSfw" rel="noopener" target="_blank">Learn PS month of Lunches</a></p>
<p>The post <a href="https://thesysadminchannel.com/get-all-vmware-snapshots-using-powercli-module/">Get All VMware Snapshots using PowerCLI Module</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thesysadminchannel.com/get-all-vmware-snapshots-using-powercli-module/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1149</post-id>	</item>
	</channel>
</rss>
