<?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>Blogotec, VMWare, Hyper-v, NetApp &#187; 4</title>
	<atom:link href="http://www.blogotec.fr/tag/4/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogotec.fr</link>
	<description>VMware vSphere, Microsoft Hyper-v, NetApp, SCOM, Virtualisation</description>
	<lastBuildDate>Tue, 07 Feb 2012 13:36:52 +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>VMWare : Enregistrer et Démarrer vos vms en powershell</title>
		<link>http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-register-start-vm-powershell-datastore</link>
		<comments>http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 15:49:38 +0000</pubDate>
		<dc:creator>Rémy</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[4.1]]></category>
		<category><![CDATA[Connect-VIServer]]></category>
		<category><![CDATA[demarrer]]></category>
		<category><![CDATA[enregistrer]]></category>
		<category><![CDATA[get-]]></category>
		<category><![CDATA[get-datastore]]></category>
		<category><![CDATA[get-vm]]></category>
		<category><![CDATA[ImportSystemModules]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[machines]]></category>
		<category><![CDATA[register]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[start-vm]]></category>
		<category><![CDATA[vcenter]]></category>
		<category><![CDATA[virtuelle]]></category>
		<category><![CDATA[virtuelles]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[vms]]></category>
		<category><![CDATA[vmstore]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.blogotec.fr/?p=782</guid>
		<description><![CDATA[Bonjour, Le script powershell ci-dessous, va vous permettre d&#8217;enregistrer puis démarrer vos machines virtuelles en powershell, Pour piloter votre infrastructure<a href="http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/" class="searchmore">Lire la suite...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Bonjour,</p>
<p>Le script powershell ci-dessous, va vous permettre d&#8217;enregistrer puis démarrer vos machines virtuelles en powershell,</p>
<p>Pour piloter votre infrastructure en powershell vous devez avoir installé les outils <a title="VMware vSphere PowerCLI" href="http://communities.vmware.com/community/vmtn/vsphere/automationtools/powercli" target="_blank">VMWare vSphere Power Cli</a>.</p>
<p><code><br />
### Import des VMS en powershell #####<br />
ImportSystemModules<br />
$Nomvcenter = @IP<br />
Connect-VIServer -Server $Nomvcenter<br />
$myCol = @()<br />
cd vmstore:\<br />
$Datacenter = Get-Datacenter<br />
cd vmstore:$Datacenter<br />
#### Enregistrement des VMS qui se trouve dans le Datastore PRA ####<br />
ForEach ($Datastore in (get-datastore |where {$_.Name.contains("PRA")}))<br />
{<br />
cd vmstore:\<br />
cd vmstore:$Datacenter\$Datastore<br />
ForEach ($Dir in (dir | where {$_.PsIsContainer}))<br />
{<br />
$MyDetails = $Dir.Name<br />
cd vmstore:\<br />
cd vmstore:$Datacenter\$Datastore\$MyDetails<br />
$vmx = Get-Item *.vmx<br />
$vmx = $vmx.DatastoreFullPath<br />
$MYDetails = $vmx<br />
$myCol += $MYDetails<br />
$vmhost = get-vmhost<br />
New-vm -VMHost $vmhost -VMFilePath $vmx<br />
}<br />
}<br />
#### Démarrage des VMS ####<br />
ForEach ($vm in Get-VM |where {$_.PowerState -eq "PoweredOff"})<br />
{<br />
Start-vm $vm -Confirm:$false -RunAsync<br />
Get-VM $vm | Get-VMQuestion -QuestionText "*UUID*" | Set-VMQuestion -VMQuestion $question -Option "I copied It" -confirm:$false<br />
}<br />
#### Rapport Démarrage des VMS ####<br />
$myCol &gt; c:\vm.txt<br />
</code><br />
Téléchargement du fichier  : <a class="downloadlink" href="http://www.blogotec.fr/wp-content/plugins/download-monitor/download.php?id=4" title=" téléchargé 259 fois" >Register-Start-vm (259)</a></p>
<p>N&#8217;hésitez pas à laisser vos commentaires</p>
<p>R2my</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Enregistrer+et+D%C3%A9marrer+vos+vms+en+powershell&amp;link=http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/&amp;notes=Bonjour%2C%0D%0A%0D%0ALe%20script%20powershell%20ci-dessous%2C%20va%20vous%20permettre%20d%27enregistrer%20puis%20d%C3%A9marrer%20vos%20machines%20virtuelles%20en%20powershell%2C%0D%0A%0D%0APour%20piloter%20votre%20infrastructure%20en%20powershell%20vous%20devez%20avoir%20install%C3%A9%20les%20outils%C2%A0VMWare%20vSphere%20Power%20Cli.%0D%0A%0D%0A%0D%0A%23%23%23%20Import%20des%20VMS%20en%20powershell%20%23%23%23%23%23%0D%0AImportSy&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare%20%3A%20Enregistrer%20et%20D%C3%A9marrer%20vos%20vms%20en%20powershell&amp;link=http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/&amp;notes=Bonjour%2C%0D%0A%0D%0ALe%20script%20powershell%20ci-dessous%2C%20va%20vous%20permettre%20d%27enregistrer%20puis%20d%C3%A9marrer%20vos%20machines%20virtuelles%20en%20powershell%2C%0D%0A%0D%0APour%20piloter%20votre%20infrastructure%20en%20powershell%20vous%20devez%20avoir%20install%C3%A9%20les%20outils%C2%A0VMWare%20vSphere%20Power%20Cli.%0D%0A%0D%0A%0D%0A%23%23%23%20Import%20des%20VMS%20en%20powershell%20%23%23%23%23%23%0D%0AImportSy&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Enregistrer+et+D%C3%A9marrer+vos+vms+en+powershell&amp;link=http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/&amp;notes=Bonjour%2C%0D%0A%0D%0ALe%20script%20powershell%20ci-dessous%2C%20va%20vous%20permettre%20d%27enregistrer%20puis%20d%C3%A9marrer%20vos%20machines%20virtuelles%20en%20powershell%2C%0D%0A%0D%0APour%20piloter%20votre%20infrastructure%20en%20powershell%20vous%20devez%20avoir%20install%C3%A9%20les%20outils%C2%A0VMWare%20vSphere%20Power%20Cli.%0D%0A%0D%0A%0D%0A%23%23%23%20Import%20des%20VMS%20en%20powershell%20%23%23%23%23%23%0D%0AImportSy&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=236&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Enregistrer+et+D%C3%A9marrer+vos+vms+en+powershell&amp;link=http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/&amp;notes=Bonjour%2C%0D%0A%0D%0ALe%20script%20powershell%20ci-dessous%2C%20va%20vous%20permettre%20d%27enregistrer%20puis%20d%C3%A9marrer%20vos%20machines%20virtuelles%20en%20powershell%2C%0D%0A%0D%0APour%20piloter%20votre%20infrastructure%20en%20powershell%20vous%20devez%20avoir%20install%C3%A9%20les%20outils%C2%A0VMWare%20vSphere%20Power%20Cli.%0D%0A%0D%0A%0D%0A%23%23%23%20Import%20des%20VMS%20en%20powershell%20%23%23%23%23%23%0D%0AImportSy&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Enregistrer+et+D%C3%A9marrer+vos+vms+en+powershell&amp;link=http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/&amp;notes=Bonjour%2C%0D%0A%0D%0ALe%20script%20powershell%20ci-dessous%2C%20va%20vous%20permettre%20d%27enregistrer%20puis%20d%C3%A9marrer%20vos%20machines%20virtuelles%20en%20powershell%2C%0D%0A%0D%0APour%20piloter%20votre%20infrastructure%20en%20powershell%20vous%20devez%20avoir%20install%C3%A9%20les%20outils%C2%A0VMWare%20vSphere%20Power%20Cli.%0D%0A%0D%0A%0D%0A%23%23%23%20Import%20des%20VMS%20en%20powershell%20%23%23%23%23%23%0D%0AImportSy&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=92&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Enregistrer+et+D%C3%A9marrer+vos+vms+en+powershell&amp;link=http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/&amp;notes=Bonjour%2C%0D%0A%0D%0ALe%20script%20powershell%20ci-dessous%2C%20va%20vous%20permettre%20d%27enregistrer%20puis%20d%C3%A9marrer%20vos%20machines%20virtuelles%20en%20powershell%2C%0D%0A%0D%0APour%20piloter%20votre%20infrastructure%20en%20powershell%20vous%20devez%20avoir%20install%C3%A9%20les%20outils%C2%A0VMWare%20vSphere%20Power%20Cli.%0D%0A%0D%0A%0D%0A%23%23%23%20Import%20des%20VMS%20en%20powershell%20%23%23%23%23%23%0D%0AImportSy&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D%2Bvia%2B%2540Shareaholic&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.blogotec.fr/vmware/vmware-register-start-vm-powershell-datastore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWARE : VMWare Uptade Manager 4.1 DSN 32 BITS Erreur</title>
		<link>http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur</link>
		<comments>http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 14:07:48 +0000</pubDate>
		<dc:creator>Rémy</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[1]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[32]]></category>
		<category><![CDATA[32bits]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[4.1]]></category>
		<category><![CDATA[bits]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[DSN]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[odbcad32.exe]]></category>
		<category><![CDATA[r2]]></category>
		<category><![CDATA[SERVER]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[systeme]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[updatemanager]]></category>
		<category><![CDATA[vcenter]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[ware]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://www.blogotec.fr/?p=688</guid>
		<description><![CDATA[Bonjour, Vous avez peut être essayé d&#8217;installer la nouvelle version de vCenter 4.1 Update Manager, et vous avez surement rencontré<a href="http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/" class="searchmore">Lire la suite...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Bonjour,</p>
<p>Vous avez peut être essayé d&#8217;installer la nouvelle version de vCenter 4.1 Update Manager, et vous avez surement rencontré l&#8217;erreur ci-dessous : <strong><em>Le DNS, &laquo;&nbsp;(veuillez créer un DSN de système de 32 bits)&nbsp;&raquo; n&#8217;existe pas ou n&#8217;est pas un DSN de système de 32 bits. Update Manager exige un DSN de système de 32 bits</em></strong>.</p>
<p style="text-align: center;"><a href="http://www.blogotec.fr/wp-content/uploads/2010/08/updatemanager4-1-DSN-SYSTEM-32-BITS.jpg"><img class="aligncenter size-full wp-image-689" title="updatemanager4-1-DSN-SYSTEM-32-BITS" src="http://www.blogotec.fr/wp-content/uploads/2010/08/updatemanager4-1-DSN-SYSTEM-32-BITS.jpg" alt="" width="365" height="272" /></a></p>
<p>La solution est fournit par vmware :  <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1010401">http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1010401</a> et à partir de la page 27 du guide d&#8217;installation de vmware update manager 4.1  disponible ci-contre <a href="http://www.vmware.com/pdf/vsp_vum_41_admin_guide.pdf">http://www.vmware.com/pdf/vsp_vum_41_admin_guide.pdf</a></p>
<p>Pour l&#8217;installation D&#8217;Update Manager 4.1 sur un serveur Windows 2008 R2 vous devez donc :</p>
<ul>
<li>Créer une base de donnée sur pour Update Manager</li>
<li>Créer un connecteur ODBC 32 BITS en lancant l&#8217;executable &laquo;&nbsp;C:\Windows\SysWOW64\odbcad32.exe&nbsp;&raquo;</li>
</ul>
<p style="text-align: center;"><a href="http://www.blogotec.fr/wp-content/uploads/2010/08/ODBC32BIT1.jpg"><img class="aligncenter size-full wp-image-691" title="ODBC32BIT" src="http://www.blogotec.fr/wp-content/uploads/2010/08/ODBC32BIT1.jpg" alt="" width="320" height="263" /></a></p>
<ul>
<li>Configurer le connecteur ODBC pour pointer sur la base créer précedement</li>
<li>Selectionner le connecteur ODBC que vous venez de créer lors l&#8217;installation d&#8217;Update Manager</li>
</ul>
<p>Rémy</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+VMWare+Uptade+Manager+4.1+DSN+32+BITS+Erreur&amp;link=http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/&amp;notes=Bonjour%2C%0D%0A%0D%0AVous%20avez%20peut%20%C3%AAtre%20essay%C3%A9%20d%27installer%20la%20nouvelle%20version%20de%20vCenter%204.1%20Update%20Manager%2C%20et%20vous%20avez%20surement%20rencontr%C3%A9%20l%27erreur%20ci-dessous%20%3A%20Le%20DNS%2C%20%22%28veuillez%20cr%C3%A9er%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits%29%22%20n%27existe%20pas%20ou%20n%27est%20pas%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits.%20Update%C2%A0Manager%20exige%20un%20D&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE%20%3A%20VMWare%20Uptade%20Manager%204.1%20DSN%2032%20BITS%20Erreur&amp;link=http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/&amp;notes=Bonjour%2C%0D%0A%0D%0AVous%20avez%20peut%20%C3%AAtre%20essay%C3%A9%20d%27installer%20la%20nouvelle%20version%20de%20vCenter%204.1%20Update%20Manager%2C%20et%20vous%20avez%20surement%20rencontr%C3%A9%20l%27erreur%20ci-dessous%20%3A%20Le%20DNS%2C%20%22%28veuillez%20cr%C3%A9er%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits%29%22%20n%27existe%20pas%20ou%20n%27est%20pas%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits.%20Update%C2%A0Manager%20exige%20un%20D&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+VMWare+Uptade+Manager+4.1+DSN+32+BITS+Erreur&amp;link=http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/&amp;notes=Bonjour%2C%0D%0A%0D%0AVous%20avez%20peut%20%C3%AAtre%20essay%C3%A9%20d%27installer%20la%20nouvelle%20version%20de%20vCenter%204.1%20Update%20Manager%2C%20et%20vous%20avez%20surement%20rencontr%C3%A9%20l%27erreur%20ci-dessous%20%3A%20Le%20DNS%2C%20%22%28veuillez%20cr%C3%A9er%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits%29%22%20n%27existe%20pas%20ou%20n%27est%20pas%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits.%20Update%C2%A0Manager%20exige%20un%20D&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=236&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+VMWare+Uptade+Manager+4.1+DSN+32+BITS+Erreur&amp;link=http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/&amp;notes=Bonjour%2C%0D%0A%0D%0AVous%20avez%20peut%20%C3%AAtre%20essay%C3%A9%20d%27installer%20la%20nouvelle%20version%20de%20vCenter%204.1%20Update%20Manager%2C%20et%20vous%20avez%20surement%20rencontr%C3%A9%20l%27erreur%20ci-dessous%20%3A%20Le%20DNS%2C%20%22%28veuillez%20cr%C3%A9er%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits%29%22%20n%27existe%20pas%20ou%20n%27est%20pas%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits.%20Update%C2%A0Manager%20exige%20un%20D&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+VMWare+Uptade+Manager+4.1+DSN+32+BITS+Erreur&amp;link=http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/&amp;notes=Bonjour%2C%0D%0A%0D%0AVous%20avez%20peut%20%C3%AAtre%20essay%C3%A9%20d%27installer%20la%20nouvelle%20version%20de%20vCenter%204.1%20Update%20Manager%2C%20et%20vous%20avez%20surement%20rencontr%C3%A9%20l%27erreur%20ci-dessous%20%3A%20Le%20DNS%2C%20%22%28veuillez%20cr%C3%A9er%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits%29%22%20n%27existe%20pas%20ou%20n%27est%20pas%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits.%20Update%C2%A0Manager%20exige%20un%20D&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=92&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+VMWare+Uptade+Manager+4.1+DSN+32+BITS+Erreur&amp;link=http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/&amp;notes=Bonjour%2C%0D%0A%0D%0AVous%20avez%20peut%20%C3%AAtre%20essay%C3%A9%20d%27installer%20la%20nouvelle%20version%20de%20vCenter%204.1%20Update%20Manager%2C%20et%20vous%20avez%20surement%20rencontr%C3%A9%20l%27erreur%20ci-dessous%20%3A%20Le%20DNS%2C%20%22%28veuillez%20cr%C3%A9er%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits%29%22%20n%27existe%20pas%20ou%20n%27est%20pas%20un%20DSN%20de%20syst%C3%A8me%20de%2032%20bits.%20Update%C2%A0Manager%20exige%20un%20D&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D%2Bvia%2B%2540Shareaholic&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.blogotec.fr/vmware/vmware-vmware-uptade-manager-4-1-dsn-32-bits-erreur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare : Le service vcenter ne démarre pas</title>
		<link>http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-le-service-vcenter-ne-demarre-pas</link>
		<comments>http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 13:00:58 +0000</pubDate>
		<dc:creator>Rémy</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[4.0.1]]></category>
		<category><![CDATA[MSSQL$SQLEXP_VIM]]></category>
		<category><![CDATA[regedit]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[sphere]]></category>
		<category><![CDATA[v]]></category>
		<category><![CDATA[vcenter]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[vmw@re]]></category>
		<category><![CDATA[vpxd]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.blogotec.fr/?p=642</guid>
		<description><![CDATA[Si votre serveur vcenter est lui même une machine virtuelle, il se peut que le service vcenter démarre avant le<a href="http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/" class="searchmore">Lire la suite...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Si votre serveur vcenter est lui même une machine virtuelle, il se peut que le service vcenter démarre avant le service SQL Express.</p>
<p>Pour contourner ce dysfonctionnement vous devez rajouter une dépendance au service Vcenter :</p>
<p>La clé de registre du service vcenter se trouve HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\vpxd, il faut modifier la chaîne DependOnService </p>
<p><span id="more-642"></span></p>
<p>Si vous avez fait une installation de base, vous aurez à ajouter uniquement la ligne suivante : MSSQL$SQLEXP_VIM</p>
<p><img title="blogotec-vmware-service-vcenter-fails-to-start" src="http://www.blogotec.fr/wp-content/uploads/2010/06/blogotec-vmware-service-vcenter-fails-to-start.jpg" alt="" width="756" height="445" /></p>
<p><img title="vmware-vcenter-dependances-service-vcenter-sql" src="http://www.blogotec.fr/wp-content/uploads/2010/06/vmware-vcenter-dependances-service-vcenter-sql.png" alt="" width="412" height="462" /></p>
<p><a href="http://www.blogotec.fr/wp-content/uploads/2010/06/vmware-vcenter-dependances-service-vcenter-sql.png"></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Le+service+vcenter+ne+d%C3%A9marre+pas+&amp;link=http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/&amp;notes=Si%20votre%20serveur%20vcenter%20est%20lui%20m%C3%AAme%20une%20machine%20virtuelle%2C%20il%20se%20peut%20que%20le%20service%20vcenter%20d%C3%A9marre%20avant%20le%20service%20SQL%20Express.%0D%0APour%20contourner%20ce%20dysfonctionnement%20vous%20devez%20rajouter%20une%20d%C3%A9pendance%20au%20service%20Vcenter%20%3A%0D%0A%0D%0ALa%20cl%C3%A9%20de%20registre%20du%20service%20vcenter%20se%20trouve%20HKEY_LOCAL_MACHINE&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare%20%3A%20Le%20service%20vcenter%20ne%20d%C3%A9marre%20pas%20&amp;link=http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/&amp;notes=Si%20votre%20serveur%20vcenter%20est%20lui%20m%C3%AAme%20une%20machine%20virtuelle%2C%20il%20se%20peut%20que%20le%20service%20vcenter%20d%C3%A9marre%20avant%20le%20service%20SQL%20Express.%0D%0APour%20contourner%20ce%20dysfonctionnement%20vous%20devez%20rajouter%20une%20d%C3%A9pendance%20au%20service%20Vcenter%20%3A%0D%0A%0D%0ALa%20cl%C3%A9%20de%20registre%20du%20service%20vcenter%20se%20trouve%20HKEY_LOCAL_MACHINE&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Le+service+vcenter+ne+d%C3%A9marre+pas+&amp;link=http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/&amp;notes=Si%20votre%20serveur%20vcenter%20est%20lui%20m%C3%AAme%20une%20machine%20virtuelle%2C%20il%20se%20peut%20que%20le%20service%20vcenter%20d%C3%A9marre%20avant%20le%20service%20SQL%20Express.%0D%0APour%20contourner%20ce%20dysfonctionnement%20vous%20devez%20rajouter%20une%20d%C3%A9pendance%20au%20service%20Vcenter%20%3A%0D%0A%0D%0ALa%20cl%C3%A9%20de%20registre%20du%20service%20vcenter%20se%20trouve%20HKEY_LOCAL_MACHINE&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=236&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Le+service+vcenter+ne+d%C3%A9marre+pas+&amp;link=http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/&amp;notes=Si%20votre%20serveur%20vcenter%20est%20lui%20m%C3%AAme%20une%20machine%20virtuelle%2C%20il%20se%20peut%20que%20le%20service%20vcenter%20d%C3%A9marre%20avant%20le%20service%20SQL%20Express.%0D%0APour%20contourner%20ce%20dysfonctionnement%20vous%20devez%20rajouter%20une%20d%C3%A9pendance%20au%20service%20Vcenter%20%3A%0D%0A%0D%0ALa%20cl%C3%A9%20de%20registre%20du%20service%20vcenter%20se%20trouve%20HKEY_LOCAL_MACHINE&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Le+service+vcenter+ne+d%C3%A9marre+pas+&amp;link=http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/&amp;notes=Si%20votre%20serveur%20vcenter%20est%20lui%20m%C3%AAme%20une%20machine%20virtuelle%2C%20il%20se%20peut%20que%20le%20service%20vcenter%20d%C3%A9marre%20avant%20le%20service%20SQL%20Express.%0D%0APour%20contourner%20ce%20dysfonctionnement%20vous%20devez%20rajouter%20une%20d%C3%A9pendance%20au%20service%20Vcenter%20%3A%0D%0A%0D%0ALa%20cl%C3%A9%20de%20registre%20du%20service%20vcenter%20se%20trouve%20HKEY_LOCAL_MACHINE&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=92&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Le+service+vcenter+ne+d%C3%A9marre+pas+&amp;link=http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/&amp;notes=Si%20votre%20serveur%20vcenter%20est%20lui%20m%C3%AAme%20une%20machine%20virtuelle%2C%20il%20se%20peut%20que%20le%20service%20vcenter%20d%C3%A9marre%20avant%20le%20service%20SQL%20Express.%0D%0APour%20contourner%20ce%20dysfonctionnement%20vous%20devez%20rajouter%20une%20d%C3%A9pendance%20au%20service%20Vcenter%20%3A%0D%0A%0D%0ALa%20cl%C3%A9%20de%20registre%20du%20service%20vcenter%20se%20trouve%20HKEY_LOCAL_MACHINE&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D%2Bvia%2B%2540Shareaholic&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.blogotec.fr/vmware/vmware-le-service-vcenter-ne-demarre-pas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWARE : Unable to start the VMware vCenter Web Service</title>
		<link>http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-unable-to-start-the-vmware-vcenter-web-service</link>
		<comments>http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 16:53:10 +0000</pubDate>
		<dc:creator>Rémy</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[4.0]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[tom]]></category>
		<category><![CDATA[tomcat]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[vspher]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webservice]]></category>

		<guid isPermaLink="false">http://www.blogotec.fr/?p=590</guid>
		<description><![CDATA[Après avoir fait une mise à jour de virtual center en VSPHERE, il se peut que le service Vcenter Web<a href="http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/" class="searchmore">Lire la suite...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Après avoir fait une mise à jour de virtual center en VSPHERE, il se peut que le service Vcenter Web Service ne démarre plus.</p>
<p>Il faut modifier la mémoire allouer à Java .</p>
<p>Pour cela Cliquez dans &laquo;&nbsp;Configure Tomcat&nbsp;&raquo; puis &nbsp;&raquo;Java&nbsp;&raquo; est passé la valeur à 512.  </p>
<p><a href="http://www.blogotec.fr/wp-content/uploads/2010/01/VMWARE-TOMCAT-WEB-SERVICE-JAVA.jpg"><img class="alignnone size-full wp-image-591" title="VMWARE-TOMCAT-WEB-SERVICE-JAVA" src="http://www.blogotec.fr/wp-content/uploads/2010/01/VMWARE-TOMCAT-WEB-SERVICE-JAVA.jpg" alt="VMWARE VSPHERE TOM CAT WEB SERVICE " width="418" height="398" /></a></p>
<p>Une fois la valeur modifiée vous pouvez relancer le service.</p>
<p>KB Article: 1011648 chez VMWARE</p>
<p>Rémy</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Unable+to+start+the+VMware+vCenter+Web+Service&amp;link=http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/&amp;notes=Apr%C3%A8s%20avoir%20fait%20une%20mise%20%C3%A0%20jour%20de%20virtual%20center%20en%20VSPHERE%2C%20il%20se%20peut%20que%20le%20service%20Vcenter%20Web%20Service%20ne%20d%C3%A9marre%20plus.%0D%0A%0D%0AIl%C2%A0faut%20modifier%20la%20m%C3%A9moire%20allouer%20%C3%A0%20Java%20.%0D%0A%0D%0APour%20cela%20Cliquez%20dans%20%22Configure%20Tomcat%22%20puis%C2%A0%22Java%22%20est%20pass%C3%A9%20la%20valeur%20%C3%A0%20512.%C2%A0%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AUne%20fois%20la%20valeur%20mod&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE%20%3A%20Unable%20to%20start%20the%20VMware%20vCenter%20Web%20Service&amp;link=http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/&amp;notes=Apr%C3%A8s%20avoir%20fait%20une%20mise%20%C3%A0%20jour%20de%20virtual%20center%20en%20VSPHERE%2C%20il%20se%20peut%20que%20le%20service%20Vcenter%20Web%20Service%20ne%20d%C3%A9marre%20plus.%0D%0A%0D%0AIl%C2%A0faut%20modifier%20la%20m%C3%A9moire%20allouer%20%C3%A0%20Java%20.%0D%0A%0D%0APour%20cela%20Cliquez%20dans%20%22Configure%20Tomcat%22%20puis%C2%A0%22Java%22%20est%20pass%C3%A9%20la%20valeur%20%C3%A0%20512.%C2%A0%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AUne%20fois%20la%20valeur%20mod&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Unable+to+start+the+VMware+vCenter+Web+Service&amp;link=http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/&amp;notes=Apr%C3%A8s%20avoir%20fait%20une%20mise%20%C3%A0%20jour%20de%20virtual%20center%20en%20VSPHERE%2C%20il%20se%20peut%20que%20le%20service%20Vcenter%20Web%20Service%20ne%20d%C3%A9marre%20plus.%0D%0A%0D%0AIl%C2%A0faut%20modifier%20la%20m%C3%A9moire%20allouer%20%C3%A0%20Java%20.%0D%0A%0D%0APour%20cela%20Cliquez%20dans%20%22Configure%20Tomcat%22%20puis%C2%A0%22Java%22%20est%20pass%C3%A9%20la%20valeur%20%C3%A0%20512.%C2%A0%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AUne%20fois%20la%20valeur%20mod&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=236&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Unable+to+start+the+VMware+vCenter+Web+Service&amp;link=http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/&amp;notes=Apr%C3%A8s%20avoir%20fait%20une%20mise%20%C3%A0%20jour%20de%20virtual%20center%20en%20VSPHERE%2C%20il%20se%20peut%20que%20le%20service%20Vcenter%20Web%20Service%20ne%20d%C3%A9marre%20plus.%0D%0A%0D%0AIl%C2%A0faut%20modifier%20la%20m%C3%A9moire%20allouer%20%C3%A0%20Java%20.%0D%0A%0D%0APour%20cela%20Cliquez%20dans%20%22Configure%20Tomcat%22%20puis%C2%A0%22Java%22%20est%20pass%C3%A9%20la%20valeur%20%C3%A0%20512.%C2%A0%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AUne%20fois%20la%20valeur%20mod&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Unable+to+start+the+VMware+vCenter+Web+Service&amp;link=http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/&amp;notes=Apr%C3%A8s%20avoir%20fait%20une%20mise%20%C3%A0%20jour%20de%20virtual%20center%20en%20VSPHERE%2C%20il%20se%20peut%20que%20le%20service%20Vcenter%20Web%20Service%20ne%20d%C3%A9marre%20plus.%0D%0A%0D%0AIl%C2%A0faut%20modifier%20la%20m%C3%A9moire%20allouer%20%C3%A0%20Java%20.%0D%0A%0D%0APour%20cela%20Cliquez%20dans%20%22Configure%20Tomcat%22%20puis%C2%A0%22Java%22%20est%20pass%C3%A9%20la%20valeur%20%C3%A0%20512.%C2%A0%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AUne%20fois%20la%20valeur%20mod&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=92&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Unable+to+start+the+VMware+vCenter+Web+Service&amp;link=http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/&amp;notes=Apr%C3%A8s%20avoir%20fait%20une%20mise%20%C3%A0%20jour%20de%20virtual%20center%20en%20VSPHERE%2C%20il%20se%20peut%20que%20le%20service%20Vcenter%20Web%20Service%20ne%20d%C3%A9marre%20plus.%0D%0A%0D%0AIl%C2%A0faut%20modifier%20la%20m%C3%A9moire%20allouer%20%C3%A0%20Java%20.%0D%0A%0D%0APour%20cela%20Cliquez%20dans%20%22Configure%20Tomcat%22%20puis%C2%A0%22Java%22%20est%20pass%C3%A9%20la%20valeur%20%C3%A0%20512.%C2%A0%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AUne%20fois%20la%20valeur%20mod&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D%2Bvia%2B%2540Shareaholic&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.blogotec.fr/vmware/vmware-unable-to-start-the-vmware-vcenter-web-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWARE : Installer ESXi</title>
		<link>http://www.blogotec.fr/vmware/vmware-installer-esxi/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-installer-esxi</link>
		<comments>http://www.blogotec.fr/vmware/vmware-installer-esxi/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 10:01:46 +0000</pubDate>
		<dc:creator>Rémy</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[4.0]]></category>
		<category><![CDATA[Esx]]></category>
		<category><![CDATA[ESXi]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[virtuelle]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.blogotec.fr/?p=566</guid>
		<description><![CDATA[Bonjour, Un très bon article qui decrit comment installer ESXi dans une machine virtuelle. Très pratique lorsque vous voulez maquetter<a href="http://www.blogotec.fr/vmware/vmware-installer-esxi/" class="searchmore">Lire la suite...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Bonjour,</p>
<p>Un très bon article qui decrit comment installer ESXi dans une machine virtuelle. Très pratique lorsque vous voulez maquetter l&#8217;installation d&#8217;ESXi.</p>
<p><a href="http://www.lotp.fr/2009/02/1er-tutoriel-lotp-installer-pas-a-pas-esxi-dans-vmware-workstation-65/">http://www.lotp.fr/2009/02/1er-tutoriel-lotp-installer-pas-a-pas-esxi-dans-vmware-workstation-65/</a></p>
<p>Rémy</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Installer+ESXi&amp;link=http://www.blogotec.fr/vmware/vmware-installer-esxi/&amp;notes=Bonjour%2C%0D%0A%0D%0AUn%20tr%C3%A8s%20bon%20article%20qui%20decrit%20comment%20installer%20ESXi%20dans%20une%20machine%20virtuelle.%20Tr%C3%A8s%20pratique%20lorsque%20vous%20voulez%20maquetter%20l%27installation%20d%27ESXi.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.lotp.fr%2F2009%2F02%2F1er-tutoriel-lotp-installer-pas-a-pas-esxi-dans-vmware-workstation-65%2F%0D%0A%0D%0AR%C3%A9my&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE%20%3A%20Installer%20ESXi&amp;link=http://www.blogotec.fr/vmware/vmware-installer-esxi/&amp;notes=Bonjour%2C%0D%0A%0D%0AUn%20tr%C3%A8s%20bon%20article%20qui%20decrit%20comment%20installer%20ESXi%20dans%20une%20machine%20virtuelle.%20Tr%C3%A8s%20pratique%20lorsque%20vous%20voulez%20maquetter%20l%27installation%20d%27ESXi.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.lotp.fr%2F2009%2F02%2F1er-tutoriel-lotp-installer-pas-a-pas-esxi-dans-vmware-workstation-65%2F%0D%0A%0D%0AR%C3%A9my&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Installer+ESXi&amp;link=http://www.blogotec.fr/vmware/vmware-installer-esxi/&amp;notes=Bonjour%2C%0D%0A%0D%0AUn%20tr%C3%A8s%20bon%20article%20qui%20decrit%20comment%20installer%20ESXi%20dans%20une%20machine%20virtuelle.%20Tr%C3%A8s%20pratique%20lorsque%20vous%20voulez%20maquetter%20l%27installation%20d%27ESXi.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.lotp.fr%2F2009%2F02%2F1er-tutoriel-lotp-installer-pas-a-pas-esxi-dans-vmware-workstation-65%2F%0D%0A%0D%0AR%C3%A9my&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=236&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Installer+ESXi&amp;link=http://www.blogotec.fr/vmware/vmware-installer-esxi/&amp;notes=Bonjour%2C%0D%0A%0D%0AUn%20tr%C3%A8s%20bon%20article%20qui%20decrit%20comment%20installer%20ESXi%20dans%20une%20machine%20virtuelle.%20Tr%C3%A8s%20pratique%20lorsque%20vous%20voulez%20maquetter%20l%27installation%20d%27ESXi.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.lotp.fr%2F2009%2F02%2F1er-tutoriel-lotp-installer-pas-a-pas-esxi-dans-vmware-workstation-65%2F%0D%0A%0D%0AR%C3%A9my&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Installer+ESXi&amp;link=http://www.blogotec.fr/vmware/vmware-installer-esxi/&amp;notes=Bonjour%2C%0D%0A%0D%0AUn%20tr%C3%A8s%20bon%20article%20qui%20decrit%20comment%20installer%20ESXi%20dans%20une%20machine%20virtuelle.%20Tr%C3%A8s%20pratique%20lorsque%20vous%20voulez%20maquetter%20l%27installation%20d%27ESXi.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.lotp.fr%2F2009%2F02%2F1er-tutoriel-lotp-installer-pas-a-pas-esxi-dans-vmware-workstation-65%2F%0D%0A%0D%0AR%C3%A9my&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=92&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=VMWARE+%3A+Installer+ESXi&amp;link=http://www.blogotec.fr/vmware/vmware-installer-esxi/&amp;notes=Bonjour%2C%0D%0A%0D%0AUn%20tr%C3%A8s%20bon%20article%20qui%20decrit%20comment%20installer%20ESXi%20dans%20une%20machine%20virtuelle.%20Tr%C3%A8s%20pratique%20lorsque%20vous%20voulez%20maquetter%20l%27installation%20d%27ESXi.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.lotp.fr%2F2009%2F02%2F1er-tutoriel-lotp-installer-pas-a-pas-esxi-dans-vmware-workstation-65%2F%0D%0A%0D%0AR%C3%A9my&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D%2Bvia%2B%2540Shareaholic&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.blogotec.fr/vmware/vmware-installer-esxi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare : Client VSPHERE Avec Windows Seven (7)</title>
		<link>http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-client-vsphere-avec-windows-seven-7</link>
		<comments>http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 18:08:07 +0000</pubDate>
		<dc:creator>Rémy</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[clients.xml]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[seven]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.blogotec.fr/non-classe/vmware-client-vsphere-avec-windows-seven-7</guid>
		<description><![CDATA[Si vous avez migré sous Microsoft Seven et VMWare Vsphere 4.0, vous avez surement rencontré les erreurs suivantes Error parsing<a href="http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/" class="searchmore">Lire la suite...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Si vous avez migré sous Microsoft Seven et VMWare Vsphere 4.0, vous avez surement rencontré les erreurs suivantes</p>
<p>Error parsing ther « X.X.X. » « clients.xml » file. Login will continue, contact your system administrator</p>
<p><img src="http://www.blogotec.fr/wp-content/uploads/2009/09/091709_1808_VMWareClien1.png" alt="" /></p>
<p>Une exception a été levée par l&#8217;initiateur de type pour « VirtualInfrastructure.Utils.HttpWebRequestProxy »</p>
<p> <a href="http://www.blogotec.fr/wp-content/uploads/2009/09/error.JPG"><img class="alignnone size-full wp-image-532" title="error" src="http://www.blogotec.fr/wp-content/uploads/2009/09/error.JPG" alt="error" width="426" height="185" /></a></p>
<p>Une solution est proposée par le site Techhead <a href="http://www.techhead.co.uk/running-vmware-vsphere-client-on-windows-7">http://www.techhead.co.uk/running-vmware-vsphere-client-on-windows-7</a> en attendant que le client soit compatible avec Seven</p>
<p>Rémy</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Client+VSPHERE+Avec+Windows+Seven+%287%29&amp;link=http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/&amp;notes=Si%20vous%20avez%20migr%C3%A9%20sous%20Microsoft%20Seven%20et%20VMWare%20Vsphere%204.0%2C%20vous%20avez%20surement%20rencontr%C3%A9%20les%20erreurs%20suivantes%0D%0A%0D%0AError%20parsing%20ther%20%C2%AB%C2%A0X.X.X.%C2%A0%C2%BB%20%C2%AB%C2%A0clients.xml%C2%A0%C2%BB%20file.%20Login%20will%20continue%2C%20contact%20your%20system%20administrator%0D%0A%0D%0A%0D%0A%0D%0AUne%20exception%20a%20%C3%A9t%C3%A9%20lev%C3%A9e%20par%20l%27initiateur%20de%20type%20pour%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-mail">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare%20%3A%20Client%20VSPHERE%20Avec%20Windows%20Seven%20%287%29&amp;link=http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/&amp;notes=Si%20vous%20avez%20migr%C3%A9%20sous%20Microsoft%20Seven%20et%20VMWare%20Vsphere%204.0%2C%20vous%20avez%20surement%20rencontr%C3%A9%20les%20erreurs%20suivantes%0D%0A%0D%0AError%20parsing%20ther%20%C2%AB%C2%A0X.X.X.%C2%A0%C2%BB%20%C2%AB%C2%A0clients.xml%C2%A0%C2%BB%20file.%20Login%20will%20continue%2C%20contact%20your%20system%20administrator%0D%0A%0D%0A%0D%0A%0D%0AUne%20exception%20a%20%C3%A9t%C3%A9%20lev%C3%A9e%20par%20l%27initiateur%20de%20type%20pour%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Client+VSPHERE+Avec+Windows+Seven+%287%29&amp;link=http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/&amp;notes=Si%20vous%20avez%20migr%C3%A9%20sous%20Microsoft%20Seven%20et%20VMWare%20Vsphere%204.0%2C%20vous%20avez%20surement%20rencontr%C3%A9%20les%20erreurs%20suivantes%0D%0A%0D%0AError%20parsing%20ther%20%C2%AB%C2%A0X.X.X.%C2%A0%C2%BB%20%C2%AB%C2%A0clients.xml%C2%A0%C2%BB%20file.%20Login%20will%20continue%2C%20contact%20your%20system%20administrator%0D%0A%0D%0A%0D%0A%0D%0AUne%20exception%20a%20%C3%A9t%C3%A9%20lev%C3%A9e%20par%20l%27initiateur%20de%20type%20pour%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=236&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Client+VSPHERE+Avec+Windows+Seven+%287%29&amp;link=http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/&amp;notes=Si%20vous%20avez%20migr%C3%A9%20sous%20Microsoft%20Seven%20et%20VMWare%20Vsphere%204.0%2C%20vous%20avez%20surement%20rencontr%C3%A9%20les%20erreurs%20suivantes%0D%0A%0D%0AError%20parsing%20ther%20%C2%AB%C2%A0X.X.X.%C2%A0%C2%BB%20%C2%AB%C2%A0clients.xml%C2%A0%C2%BB%20file.%20Login%20will%20continue%2C%20contact%20your%20system%20administrator%0D%0A%0D%0A%0D%0A%0D%0AUne%20exception%20a%20%C3%A9t%C3%A9%20lev%C3%A9e%20par%20l%27initiateur%20de%20type%20pour%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Client+VSPHERE+Avec+Windows+Seven+%287%29&amp;link=http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/&amp;notes=Si%20vous%20avez%20migr%C3%A9%20sous%20Microsoft%20Seven%20et%20VMWare%20Vsphere%204.0%2C%20vous%20avez%20surement%20rencontr%C3%A9%20les%20erreurs%20suivantes%0D%0A%0D%0AError%20parsing%20ther%20%C2%AB%C2%A0X.X.X.%C2%A0%C2%BB%20%C2%AB%C2%A0clients.xml%C2%A0%C2%BB%20file.%20Login%20will%20continue%2C%20contact%20your%20system%20administrator%0D%0A%0D%0A%0D%0A%0D%0AUne%20exception%20a%20%C3%A9t%C3%A9%20lev%C3%A9e%20par%20l%27initiateur%20de%20type%20pour%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=92&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=VMWare+%3A+Client+VSPHERE+Avec+Windows+Seven+%287%29&amp;link=http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/&amp;notes=Si%20vous%20avez%20migr%C3%A9%20sous%20Microsoft%20Seven%20et%20VMWare%20Vsphere%204.0%2C%20vous%20avez%20surement%20rencontr%C3%A9%20les%20erreurs%20suivantes%0D%0A%0D%0AError%20parsing%20ther%20%C2%AB%C2%A0X.X.X.%C2%A0%C2%BB%20%C2%AB%C2%A0clients.xml%C2%A0%C2%BB%20file.%20Login%20will%20continue%2C%20contact%20your%20system%20administrator%0D%0A%0D%0A%0D%0A%0D%0AUne%20exception%20a%20%C3%A9t%C3%A9%20lev%C3%A9e%20par%20l%27initiateur%20de%20type%20pour%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D%2Bvia%2B%2540Shareaholic&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.blogotec.fr/vmware/vmware-client-vsphere-avec-windows-seven-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

