<?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>Mostly Anything &#187; Snapshots</title>
	<atom:link href="http://blog.devnull.ch/tag/snapshots/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.devnull.ch</link>
	<description>IT Blog über VMWare, SQL, Storage, Security und mehr.</description>
	<lastBuildDate>Thu, 20 Oct 2011 12:33:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Alle VMWare Snapshots in Powershell auflisten</title>
		<link>http://blog.devnull.ch/2010/07/05/alle-vmware-snapshots-in-powershell-auflisten/</link>
		<comments>http://blog.devnull.ch/2010/07/05/alle-vmware-snapshots-in-powershell-auflisten/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 10:46:41 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Snapshots]]></category>

		<guid isPermaLink="false">http://blog.devnull.ch/?p=165</guid>
		<description><![CDATA[Man braucht immer wieder mal eine Liste aller Snapshots. Das ist mit vSphere PowerCLI auch ganz einfach Get-VM &#124; Sort Name &#124; Get-Snapshot &#124; Where { $_.Name.Length -gt 0 } &#124; Select VM,Name,Description,Created Das kann man natürlich auch auf ein Datacenter einschränken Get-Datacenter -Name "Datacenter Name" &#124; Get-VM &#124; Sort Name &#124; Get-Snapshot &#124; Where [...]]]></description>
			<content:encoded><![CDATA[<p>Man braucht immer wieder mal eine Liste aller Snapshots. Das ist mit vSphere PowerCLI auch ganz einfach</p>
<pre class="brush:ps">
Get-VM | Sort Name | Get-Snapshot |
Where { $_.Name.Length -gt 0 } |
Select VM,Name,Description,Created
</pre>
<p>Das kann man natürlich auch auf ein Datacenter einschränken</p>
<pre class="brush:ps">
Get-Datacenter -Name "Datacenter Name" | Get-VM |
Sort Name | Get-Snapshot |
Where { $_.Name.Length -gt 0 } |
Select VM,Name,Description,Created
</pre>
<p>Oder auf einen Cluster</p>
<pre class="brush:ps">
Get-Cluster -Name "Cluster Name" | Get-VM |
Sort Name | Get-Snapshot |
Where { $_.Name.Length -gt 0 } |
Select VM,Name,Description,Created
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.devnull.ch/2010/07/05/alle-vmware-snapshots-in-powershell-auflisten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare ESX4i zeigt Snapshots im Client nicht an</title>
		<link>http://blog.devnull.ch/2009/10/17/vmware-esx4i-zeigt-snapshots-im-client-nicht-an/</link>
		<comments>http://blog.devnull.ch/2009/10/17/vmware-esx4i-zeigt-snapshots-im-client-nicht-an/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 20:39:33 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Snapshots]]></category>

		<guid isPermaLink="false">http://blog.devnull.ch/?p=148</guid>
		<description><![CDATA[Seit Tagen probiere ich an einem Backup Script für ESX4i rum. Und es will und will nicht funktionieren. Das Script mach keine Backups. Zuerst dachte ich ich habe was falschen mit dem Crontab Eintrag auf der vSphere Management Assistant Appliance gemacht. Daran lags nicht. Das Script meint, dass bereits Snapshots vom Script vorhanden sind und [...]]]></description>
			<content:encoded><![CDATA[<p>Seit Tagen probiere ich an einem Backup Script für ESX4i rum. Und es will und will nicht funktionieren. Das Script mach keine Backups. Zuerst dachte ich ich habe was falschen mit dem Crontab Eintrag auf der vSphere Management Assistant Appliance gemacht. Daran lags nicht. Das Script meint, dass bereits Snapshots vom Script vorhanden sind und beendet sich dann. Also schnell in den vSphere Client und die Snapshots löschen. Da sind keine Snapshots. Hmmm &#8230; auf dem Volume seh ich aber -delta.vmdk files.</p>
<p>Die Lösung ist simple. Einfach im vSphere Client einen neuen Snapshot z.B. test erstellen. Danach wird auch der andere angezeigt, dann kann ich wieder alle Löschen. Da ist er momentan auch dran. Seit über 1h.</p>
<p>Muss noch schauen ob das ein bekanntes Problem ist. Und ob das gleiche auch via command line, z.b. mit PowerCLI passiert.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.devnull.ch/2009/10/17/vmware-esx4i-zeigt-snapshots-im-client-nicht-an/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

