<?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>Oppergod&#039;s Weblog</title>
	<atom:link href="http://www.robertverdam.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robertverdam.nl</link>
	<description>Oppergod just goes on and on and on and on and ....</description>
	<lastBuildDate>Fri, 13 Apr 2012 17:58:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>VDR Error: CIFS VFS: No response for cmd 114</title>
		<link>http://www.robertverdam.nl/2011/03/vdr-error-cifs-vfs-no-response-for-cmd-114/</link>
		<comments>http://www.robertverdam.nl/2011/03/vdr-error-cifs-vfs-no-response-for-cmd-114/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 19:00:00 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[vmware; vdr; error]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/2011/03/vdr-error-cifs-vfs-no-response-for-cmd-114/</guid>
		<description><![CDATA[Mental note: I ran into a problem with VMware Data Recovery when I used an ip-adres in the SMB share-name i.e. \\10.0.0.0\vdr$: The VDR appliance console showed the following error: VDR Error: CIFS VFS: No response for cmd 114 mid x Fixed by modifying resolv.conf on the VDR appliance to search the domain in which <a href='http://www.robertverdam.nl/2011/03/vdr-error-cifs-vfs-no-response-for-cmd-114/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Mental note:</p>
<p>I ran into a problem with VMware Data Recovery when I used an ip-adres in the SMB share-name i.e. <a href="file://\\10.0.0.0\vdr$" class="liinternal">\\10.0.0.0\vdr$</a>:</p>
<p>The VDR appliance console showed the following error:</p>
<p><strong><em>VDR Error: CIFS VFS: No response for cmd 114 mid x</em></strong></p>
<p>Fixed by modifying resolv.conf on the VDR appliance  to search the domain in which the server is located:</p>
<p>search example.domain.com and use the DNS- namein the destination definition : i.e. <a href="file://\\server\vdr$" class="liinternal">\\server\vdr$</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2011/03/vdr-error-cifs-vfs-no-response-for-cmd-114/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Nagios Powershell plugin for checking SCR</title>
		<link>http://www.robertverdam.nl/2011/03/basic-nagios-powershell-plugin-for-checking-scr/</link>
		<comments>http://www.robertverdam.nl/2011/03/basic-nagios-powershell-plugin-for-checking-scr/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 19:00:00 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[scr]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/2011/03/basic-nagios-powershell-plugin-for-checking-scr/</guid>
		<description><![CDATA[Today I’ve written a simple powershell check for nagios to check if all the storage group scr replication is healthy. Script Param($sourceserver, $destinationserver) $snapins = "Microsoft.Exchange.Management.Powershell.Admin" $snapins &#124; ForEach-Object { if ( Get-PSSnapin -Registered $_ -ErrorAction SilentlyContinue ) { Add-PSSnapin $_ } } $storagegroupcopystatus = Get-StorageGroupCopyStatus -Server $sourceserver -StandbyMachine $destinationserver $status = 0; $warning_array = <a href='http://www.robertverdam.nl/2011/03/basic-nagios-powershell-plugin-for-checking-scr/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Today I’ve written a simple powershell check for nagios to check if all the storage group scr replication is healthy.</p>
<p><strong>Script</strong></p>
<pre class="csharpcode">Param($sourceserver, $destinationserver)

$snapins = "Microsoft.Exchange.Management.Powershell.Admin"

$snapins | ForEach-Object { 

 if ( Get-PSSnapin -Registered $_ -ErrorAction SilentlyContinue ) {

 Add-PSSnapin $_

 }

}

$storagegroupcopystatus = Get-StorageGroupCopyStatus -Server $sourceserver -StandbyMachine $destinationserver

$status = 0;
$warning_array = @()
$perfdata_string_array = @();

foreach ($storagegroup in $storagegroupcopystatus)
{
 if ($storagegroup.SummaryCopyStatus -ne 'Healthy')
 {
 $status = 2;
 $warning_array += $storagegroup.StorageGroupName
 }

 $perfdata_string_array += "'Copy Queue Length - $($storagegroup.StorageGroupName)': " + $storagegroup.CopyQueueLength
 $perfdata_string_array += "'Replay Queue Length - $($storagegroup.StorageGroupName)': " + $storagegroup.ReplayQueueLength

}

switch ($status)
{
 0 {
 $message = "OK - All storagegroups are correctly being replicated"
 }
 2 {
 $warning_array_string = [string]::join(",", $warning_array)
 $message = "ERROR - Storage Groups (" + $warning_array_string + ") are not correctly being replicated. Check replication!"
 }
}

$perfdata_string = [string]::join(" ", $perfdata_string_array)
Write-Host "$($message) | $($perfdata_string)"
$host.SetShouldExit($status)</pre>
<p><strong>Entry in nsc.ini</strong></p>
<pre class="csharpcode">check_exchange_scr=cmd /c echo scripts\check_exchange_scr.ps1 $ARG1$ $ARG2$ | powershell.exe -command -</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2011/03/basic-nagios-powershell-plugin-for-checking-scr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple PowerCLI scripts to enable/disable VMware Tools options in vCenter</title>
		<link>http://www.robertverdam.nl/2011/03/simple-powercli-scripts-enabledisable-upgrade-vmware-tools-on-power-cycle-for-all-vms-on-a-vcenter-server/</link>
		<comments>http://www.robertverdam.nl/2011/03/simple-powercli-scripts-enabledisable-upgrade-vmware-tools-on-power-cycle-for-all-vms-on-a-vcenter-server/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 19:00:00 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[vmware; powercli; script]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/?p=171</guid>
		<description><![CDATA[Two scripts to easily enable or disable “Check and upgrade VMware Tools during power cycling” and “Synchronize guest time with host” for all vm’s on a vCenter server. Enable upgrade VMware Tools and Sync Guest Time with Host $viserver = read-host "Please enter vCenter Server:" connect-viserver $viserver $vmConfigSpec = New-Object VMware.Vim.VirtualMachineConfigSpec $vmConfigSpec.Tools = New-Object VMware.Vim.ToolsConfigInfo <a href='http://www.robertverdam.nl/2011/03/simple-powercli-scripts-enabledisable-upgrade-vmware-tools-on-power-cycle-for-all-vms-on-a-vcenter-server/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;">Two scripts to easily enable or disable “Check and upgrade VMware Tools during power cycling” and “Synchronize guest time with host” for all vm’s on a vCenter server.</span></p>
<p><strong><span style="font-size: small;">Enable upgrade VMware Tools and Sync Guest Time with Host</span></strong></p>
<pre class="csharpcode">$viserver = read-host <span class="str">"Please enter vCenter Server:"</span>

connect-viserver $viserver

$vmConfigSpec = New-Object VMware.Vim.VirtualMachineConfigSpec
$vmConfigSpec.Tools = New-Object VMware.Vim.ToolsConfigInfo
$vmConfigSpec.Tools.ToolsUpgradePolicy = <span class="str">"UpgradeAtPowerCycle"</span>
$vmConfigspec.Tools.syncTimeWithHost = $true

Get-VM | %{
     $_.Extensiondata.ReconfigVM($vmConfigSpec)
}
</pre>
<p><strong><span style="font-size: small;">Disable</span></strong> <strong><span style="font-size: small;">upgrade VMware Tools and Sync Guest Time with Host</span></strong></p>
<pre class="csharpcode">$viserver = read-host <span class="str">"Please enter vCenter Server:"</span>

connect-viserver $viserver

$vmConfigSpec = New-Object VMware.Vim.VirtualMachineConfigSpec
$vmConfigSpec.Tools = New-Object VMware.Vim.ToolsConfigInfo
$vmConfigSpec.Tools.ToolsUpgradePolicy = <span class="str">"Manual"</span>
$vmConfigspec.Tools.syncTimeWithHost = $false

Get-VM | %{
     $_.Extensiondata.ReconfigVM($vmConfigSpec)
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2011/03/simple-powercli-scripts-enabledisable-upgrade-vmware-tools-on-power-cycle-for-all-vms-on-a-vcenter-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liberkey &#8211; a portable application platform</title>
		<link>http://www.robertverdam.nl/2010/02/liberkey-portable-application-platform/</link>
		<comments>http://www.robertverdam.nl/2010/02/liberkey-portable-application-platform/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 14:17:47 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[portable]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/?p=155</guid>
		<description><![CDATA[I tried a few portable application platforms, but since i use Liberkey, i don&#8217;t use any of the other ones. Main advantages of Liberkey: Automatic updates (for the platform and the installed applications) (Temporarily) usage of file associations for the portable applications you’ve installed. A lot of pre-packaged portable freeware applications Easy adding and removing <a href='http://www.robertverdam.nl/2010/02/liberkey-portable-application-platform/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I tried a few portable application platforms, but since i use Liberkey, i don&#8217;t use any of the other ones.</p>
<p>Main advantages of Liberkey:</p>
<ul>
<li>Automatic updates (for the platform and the installed applications)</li>
<li> (Temporarily) usage of file associations for the portable applications you’ve installed.</li>
<li> A lot of pre-packaged portable freeware applications</li>
<li>Easy adding and removing of applications</li>
<li>Easy adding and removing for you own portable applications</li>
<li>Choice between a pre-configured suite or start of with your own empty Liberkey.</li>
</ul>
<p>URL: <a href="http://www.liberkey.com" class="liexternal">http://www.liberkey.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2010/02/liberkey-portable-application-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Partition Manager for Virtual Machines</title>
		<link>http://www.robertverdam.nl/2010/01/free-partition-manager-for-virtual-machines/</link>
		<comments>http://www.robertverdam.nl/2010/01/free-partition-manager-for-virtual-machines/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 13:54:26 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[vm]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/?p=151</guid>
		<description><![CDATA[Need a free partition manager for usage on your virtual machines, try: http://www.paragon-software.com/business/pm-vm/? Haven&#8217;t tried it yet but will test it shortly! For non-commercial use only!]]></description>
			<content:encoded><![CDATA[<p>Need a free partition manager for usage on your virtual machines, try: <a href="http://www.paragon-software.com/business/pm-vm/" target="_blank" class="liexternal">http://www.paragon-software.com/business/pm-vm/</a>? Haven&#8217;t tried it yet but will test it shortly!</p>
<p>For non-commercial use only!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2010/01/free-partition-manager-for-virtual-machines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WSUS Offline Update &#8211; Update Microsoft Windows and Office without an Internet connection</title>
		<link>http://www.robertverdam.nl/2010/01/wsus-offline-update-update-microsoft-windows-and-office-without-an-internet-connection/</link>
		<comments>http://www.robertverdam.nl/2010/01/wsus-offline-update-update-microsoft-windows-and-office-without-an-internet-connection/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 15:17:05 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/?p=148</guid>
		<description><![CDATA[If you frequently update computers like i do, you don&#8217;t want to wait for windows update to check which updates are available for the computer, choose which ones you want to install. Finally Windows Update has to download them and then after a long wait they are finally installed. Now you can use WSUS Offline <a href='http://www.robertverdam.nl/2010/01/wsus-offline-update-update-microsoft-windows-and-office-without-an-internet-connection/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>If you frequently update computers like i do, you don&#8217;t want to wait for windows update to check which updates are available for the computer, choose which ones you want to install. Finally Windows Update has to download them and then after a long wait they are finally installed.</p>
<p>Now you can use <a href="http://www.wsusoffline.net/" target="_blank" class="liexternal">WSUS Offline Update</a>, for downloading all the updates for the platforms/languages you select and put them on a USB key/DVD/CD, so you can use it on all the computers you have to patch. Just run it again if you want to update your directories/ISO&#8217;s and it updates them with all the new updates and you&#8217;re good to go with the latest patches on your USB key/DVD/CD.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2010/01/wsus-offline-update-update-microsoft-windows-and-office-without-an-internet-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ninite &#8211; Easily install software after OS installation</title>
		<link>http://www.robertverdam.nl/2010/01/ninite/</link>
		<comments>http://www.robertverdam.nl/2010/01/ninite/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 15:01:20 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/2010/01/ninite/</guid>
		<description><![CDATA[Need to reinstall your computer and don&#8217;t want to create your own batch for installing all those apps silently. Take a look at http://ninite.com/ This site creates an installer for you with the apps you specify. The easiest way to get apps. 1. Pick your favorite software. 2. Start your customized installer. 3. You&#8217;re done! <a href='http://www.robertverdam.nl/2010/01/ninite/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Need to reinstall your computer and don&#8217;t want to create your own batch for installing all those apps silently. Take a look at <a href="http://niinite.com" target="_blank" class="liexternal">http://ninite.com/</a></p>
<blockquote><p>
This site creates an installer for you with the apps you specify.</p>
<p>The easiest way to get apps.</p>
<p>1. Pick your favorite software.<br />
2. Start your customized installer.<br />
3. You&#8217;re done!</p>
<p>Ninite installs software fast with default settings and<br />
says &#8220;no&#8221; to browser toolbars and other junk.</p>
<p>Ninite checks your PC&#8217;s language and 64-bit support<br />
to install the latest, best version of each program.</p>
<p>Ninite runs on Windows XP/Vista/7 and works in the<br />
background unattended and 100% hands-free.</p>
<p>All Ninite does is automatically download and install<br />
the apps you select. Not even Ninite is installed.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2010/01/ninite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lights-out WHS Add-in 1.0.0</title>
		<link>http://www.robertverdam.nl/2009/12/lights-out-whs-add-in-1-0-0/</link>
		<comments>http://www.robertverdam.nl/2009/12/lights-out-whs-add-in-1-0-0/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 16:22:01 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[add-in]]></category>
		<category><![CDATA[WHS]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/?p=121</guid>
		<description><![CDATA[Check out the latest version of the lights-out WHS Add-in, which now has the possibility to check for CPU load and Network Activity. With the lights-out client utility it is possible to automatically wake the WHS when you need it, so it isn&#8217;t turned on all of the time. By forwarding UDP port 9 to your <a href='http://www.robertverdam.nl/2009/12/lights-out-whs-add-in-1-0-0/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="Lights-Out Add-In Main Screen" src="http://www.home-server-blog.de/wp-content/uploads/2009/12/hc_0063.png" alt="" width="465" height="326" /></p>
<p class="alignleft">
<p>Check out the latest version of the lights-out WHS Add-in, which now has the possibility to check for CPU load and Network Activity. With the lights-out client utility it is possible to automatically wake the WHS when you need it, so it isn&#8217;t turned on all of the time.</p>
<p>By forwarding UDP port 9 to your WHS on your router it is even possible to wake the server automatically <strong>remotely</strong>!</p>
<p>Forum: <a href="http://forum.wegotserved.com/index.php?/forum/89-lightsout/" class="liexternal">http://forum.wegotserved.com/index.php?/forum/89-lightsout/</a><br />
More Info: <a href="http://addins.home-server-blog.de/verwaltung/lightsout/#en" class="liexternal">http://addins.home-server-blog.de/verwaltung/lightsout/#en</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2009/12/lights-out-whs-add-in-1-0-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wyse V10L not connecting to Citrix PS 4.5 Hotfix Rollup Pack 4</title>
		<link>http://www.robertverdam.nl/2009/05/wyse-v10l-not-connecting-to-citrix-ps-45-hotfix-rollup-pack-4/</link>
		<comments>http://www.robertverdam.nl/2009/05/wyse-v10l-not-connecting-to-citrix-ps-45-hotfix-rollup-pack-4/#comments</comments>
		<pubDate>Fri, 01 May 2009 09:25:49 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/?p=109</guid>
		<description><![CDATA[There seems to be a problem connecting to Citrix PS 4.5 after applying Hotfix Rollup Pack 4 for Wyse V10L clients (and probably 1200LE &#38; S10) : http://forums.citrix.com/thread.jspa?threadID=244712&#38;tstart=0 While updating a Citrix PS 4.5 HRP4 i ran into this problem. Problem: connection reset by peer error when trying to connect to Citrix server with Hotfix Rollup Pack <a href='http://www.robertverdam.nl/2009/05/wyse-v10l-not-connecting-to-citrix-ps-45-hotfix-rollup-pack-4/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">There seems to be a problem connecting to Citrix PS 4.5 after applying Hotfix Rollup Pack 4 for Wyse V10L clients (and probably 1200LE &amp; S10) : <a href="http://forums.citrix.com/thread.jspa?threadID=244712&amp;tstart=0" class="liexternal">http://forums.citrix.com/thread.jspa?threadID=244712&amp;tstart=0</a></p>
<p style="text-align: left;">While updating a Citrix PS 4.5 HRP4 i ran into this problem.</p>
<p style="text-align: left;"><strong>Problem:</strong> connection reset by peer error when trying to connect to Citrix server with Hotfix Rollup Pack 4 by a Wyse V10L client.</p>
<p style="text-align: left;"><strong>Workaround:</strong> Revert to HRP3.</p>
<p style="text-align: left;"><strong>Solution: </strong>Install Wyse Firmware Version 6.3.0_27.0</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 21px; width: 1px; height: 1px;">
<table class="headline" style="width: 240px;" border="0" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td class="yellowTableHeader" height="25" align="center">Ver                   6.3.0_27.01 &#8211; <strong>Download<br />
Wyse Thin OS Software</strong></td>
<td class="yellowHeader" background="/images/blackDotRight.gif"><img src="http://commerce.wyse.com/images/space.gif" border="0" alt="" width="1" height="1" /></td>
</tr>
<tr>
<td colspan="3" width="75"><img src="http://commerce.wyse.com/images/blackDot.gif" border="0" alt="" width="252" height="1" /></td>
</tr>
<tr>
<td background="/images/blackDotLeft.gif"><img src="http://commerce.wyse.com/images/space.gif" border="0" alt="" width="1" height="1" /></td>
<td class="5pxMargins" align="center" valign="top"><span style="font-family: Arial,Helvetica,sans-serif; font-size: x-small;"> <strong><span style="color: red;">***Hotfix***</span><br />
Ver 6.3.0_27.01 for V10L and S10<br />
(Release Date &#8211; 5/29/2009) </strong></span></td>
</tr>
</tbody>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2009/05/wyse-v10l-not-connecting-to-citrix-ps-45-hotfix-rollup-pack-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Failed to connect to host&#8221; while deploying template</title>
		<link>http://www.robertverdam.nl/2009/01/failed-to-connect-to-host-while-deploying-template/</link>
		<comments>http://www.robertverdam.nl/2009/01/failed-to-connect-to-host-while-deploying-template/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 11:06:50 +0000</pubDate>
		<dc:creator>Oppergod</dc:creator>
				<category><![CDATA[ESX]]></category>

		<guid isPermaLink="false">http://www.robertverdam.nl/?p=105</guid>
		<description><![CDATA[Today while re-assigning the ip addresses for an ESX environment I ran into the problem that I couldn’t deploy machines from templates because it stopped at failed to connect to host while cloning the template to a virtual machine. Solution: - Put host in maintenance mode - Disconnect host - Remove host from cluster - <a href='http://www.robertverdam.nl/2009/01/failed-to-connect-to-host-while-deploying-template/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Today while re-assigning the ip addresses for an ESX environment I ran into the problem that I couldn’t deploy machines from templates because it stopped at failed to connect to host while cloning the template to a virtual machine.</p>
<p style="text-align: left;"><strong>Solution:</strong><br />
-	Put host in maintenance mode<br />
-	Disconnect host<br />
-	Remove host from cluster<br />
-	Remove /etc/opt/vmware/vpxa/vpxa.conf<br />
-	Add host back to cluster</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertverdam.nl/2009/01/failed-to-connect-to-host-while-deploying-template/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

