<?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>a Flo + a Blog = a Flog &#187; En</title>
	<atom:link href="http://florian.puthod.net/blog/category/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://florian.puthod.net/blog</link>
	<description>my ブログ</description>
	<lastBuildDate>Mon, 12 Dec 2011 21:09:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel="next" href="http://florian.puthod.net/blog/category/en/feed/?page=2" />

		<item>
		<title>Use google maps API from google docs</title>
		<link>http://florian.puthod.net/blog/2011/use-google-maps-api-from-google-docs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-google-maps-api-from-google-docs</link>
		<comments>http://florian.puthod.net/blog/2011/use-google-maps-api-from-google-docs/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 21:02:45 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[googledoc]]></category>
		<category><![CDATA[googlemap]]></category>
		<category><![CDATA[importxml]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=388</guid>
		<description><![CDATA[I am looking for a dojo where I could go practice to. I needed to find out which one would be closest to my work or home place...
I had that list of address representing some place of interests - all of the aikido dojos. And course I knew my home address. While google doc offered [...]]]></description>
			<content:encoded><![CDATA[<p>I am looking for a dojo where I could go practice to. I needed to find out which one would be closest to my work or home place...</p>
<p>I had that list of address representing some place of interests - all of the aikido dojos. And course I knew my home address. While google doc offered me an easy way to map all of those addresses on a map, I wanted to get some extra information such as the duration or distance for directions between my place and the listed address.</p>
<p>With the following formula one can easily find plenty of information:</p>
<p>For a duration</p>
<blockquote><p>=INDEX(importXML("http://maps.googleapis.com/maps/api/directions/xml?origin="&amp;SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE( D2 ;CHAR(13);" ");CHAR(10);" ")); " "; "+")&amp;"&amp;destination="&amp;SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE( $D$9 ;CHAR(13);" ");CHAR(10);" ")); " "; "+")&amp;"&amp;sensor=false" ; "//leg/duration/text[last()]" ) ; 1)</p></blockquote>
<p>For a distance</p>
<blockquote><p>=INDEX(importXML("http://maps.googleapis.com/maps/api/directions/xml?origin="&amp;SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE( D2 ;CHAR(13);" ");CHAR(10);" ")); " "; "+")&amp;"&amp;destination="&amp;SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE( $D$9 ;CHAR(13);" ");CHAR(10);" ")); " "; "+")&amp;"&amp;sensor=false" ; "//leg/distance/text[last()]" ) ; 1)</p></blockquote>
<p>You will understand that my home address would be in the cell D9 and that each address are in a D# cell.</p>
<p>Of course using the <a title="XPath Syntax" href="http://www.w3schools.com/xpath/xpath_syntax.asp" target="_blank">XPath Syntax</a>, you can refer to any of the xml tag and get the value you need in a cell as you notice that the only difference between those are the parsing I am doing with //leg/distance.</p>
<p>importXML is pretty neat for parsing into xml data but use it with moderation as you can only use it 50 times in a spreadsheet.</p>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2011/use-google-maps-api-from-google-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big Brother client installation on UNIX/Linux</title>
		<link>http://florian.puthod.net/blog/2011/big-brother-client-installation-on-unixlinux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=big-brother-client-installation-on-unixlinux</link>
		<comments>http://florian.puthod.net/blog/2011/big-brother-client-installation-on-unixlinux/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 20:19:27 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>
		<category><![CDATA[xNix]]></category>
		<category><![CDATA[aix]]></category>
		<category><![CDATA[bigbrother]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=378</guid>
		<description><![CDATA[Following procedure explains the steps for installing Big Brother client on UNIX/Linux servers and information about all the supported files. I could not really find this anywhere easily broke down, I hope this helps a few...
Installation Steps
Create user bb on the server to be monitored.Assign 1984 uid to the Big Brother user.
useradd -u 1984 -c [...]]]></description>
			<content:encoded><![CDATA[<p>Following procedure explains the steps for installing Big Brother client on UNIX/Linux servers and information about all the supported files. I could not really find this anywhere easily broke down, I hope this helps a few...</p>
<p>Installation Steps<br />
Create user bb on the server to be monitored.Assign 1984 uid to the Big Brother user.</p>
<blockquote><p>useradd -u 1984 -c "Big Brother monitoring" bb</p></blockquote>
<p>Copy the latest BB client tar file from your repository to bb home directory of the monitored server.</p>
<blockquote><p>su - bb<br />
scp root@yourrepo:/home/bb/software/BBCLT-aix6.1-bbc4.30-bbpe.tar .</p></blockquote>
<p>Decompress the tar file in the bb home directory</p>
<blockquote><p>In the bb home directory<br />
tar -xvf BBCLT-aix6.1-bbc4.30-bbpe.tar</p></blockquote>
<p>Exit from bb home directory as the BB client should be installed using root account.<br />
From root user go to /home/bb/bbc4.30-bbpe/install and execute bbconfig file.After executing bbconfig file, it will ask to accept the License agreement.<br />
After accepting the License agreement, the installation process will ask to enter a few details.</p>
<p>OS [aix] is the default so you can hit enter directly<br />
It will ask for the userid for Big Brother which will be "bb".</p>
<p>The installation process will add a service in /etc/init.d which will start at boot.</p>
<p>At this point the BB client is not started as bb-hosts file is missing or empty.</p>
<p>Information about bb-hosts file<br />
The bb-hosts file in present in /home/bb/bbc4.30-bbpe/etc.This file holds the information about the host and the BBDisplay,BBPAGER and BBNET.<br />
BBDISPLAY is the server which will display all the monitored servers.<br />
BBPAGER is the server which sends email alerts.<br />
BBNET is the server which performa all Network tests.</p>
<p>Sample bb-hosts file.If the first line or name of the monitored host does not match the entry in the bb-hosts file then the bb client will not start.</p>
<blockquote><p>0.0.0.0         monitoredsrv #must name uname -n<br />
0.0.0.0         displaysrv # BBNET BBDISPLAY BBPAGER</p></blockquote>
<p>Once all the changes are done then we are good to start the BB client.<br />
The entry of the monitored server in bb-hosts file should also match with the entry in BB server's bb-hosts file.</p>
<p>I forgot to mention that to start and stop BB you can use the following:</p>
<blockquote><p>su - bb -c "cd /home/bb/bbc4.30-bbpe;./runbb.sh start"</p>
<p>su - bb -c "cd /home/bb/bbc4.30-bbpe;./runbb.sh stop"</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2011/big-brother-client-installation-on-unixlinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Robocopy and EMC Celerra</title>
		<link>http://florian.puthod.net/blog/2011/robocopy-and-emc-celerra/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=robocopy-and-emc-celerra</link>
		<comments>http://florian.puthod.net/blog/2011/robocopy-and-emc-celerra/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 00:11:50 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[xNix]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=350</guid>
		<description><![CDATA[I came across a problem when using Robocopy command scripts when copying files from NTFS to EMC Celerra file system.  The problem was that every time Robocopy was told to copy files to the EMC Celerra over the WAN, the files were always detected as “newer” on from the originating source.  This caused [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a problem when using Robocopy command scripts when copying files from NTFS to EMC Celerra file system.  The problem was that every time Robocopy was told to copy files to the EMC Celerra over the WAN, the files were always detected as “newer” on from the originating source.  This caused Robocopy to copy every single file from our network to the remote network each and every time.</p>
<p>I came across a command line switch for Robocopy: /FFT : Assume FAT File Times (2-second date/time granularity).  The NTFS date and time stamp is a 64-bit variable, which DART doesn’t deal with.  So what this does is force Robocopy to use FAT style time stamps which are 2-second granularity.  It allows enough flexibility to account for the way the time is recorded when doing a file copy from NTFS to another file system. This is needed when going between and NTFS and Linux/Unix/FAT or emulated file system.</p>
<p>update 20110601: I now use <a title="Home of FastCopy (English)" href="http://ipmsg.org/tools/fastcopy.html.en" target="_blank">fastcopy</a> instead of robocopy. It is a great fast(er) and friendly tool! And it doesn't have any of the security or date issues I have seem with the msft tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2011/robocopy-and-emc-celerra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using 32-bit .Net Applications on a 64-bit system</title>
		<link>http://florian.puthod.net/blog/2010/using-32-bit-net-applications-on-a-64-bit-system/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-32-bit-net-applications-on-a-64-bit-system</link>
		<comments>http://florian.puthod.net/blog/2010/using-32-bit-net-applications-on-a-64-bit-system/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 15:47:40 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[coreflags]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=314</guid>
		<description><![CDATA[I needed to use the Windows Mobile Security Power Toy the other day.  So I download the power toy, fired it up, and watched it promptly crash. After several failed attempts I figured there was something wrong with my computer, so I went to another computer and did the same thing with success.  [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to use the Windows Mobile Security Power Toy the other day.  So I download the power toy, fired it up, and watched it promptly crash. After several failed attempts I figured there was something wrong with my computer, so I went to another computer and did the same thing with success.  In trying to diagnose the problem I went to another computer and tried to run the power toy and it crashed there also.  So what was the problem?</p>
<p>In looking at the similarities and differences among the computers I realized that the two computers on which the application crashed had one thing in common - they were 64-bit machines whereas the machine on which the power toy worked was a 32-bit machine.  I ran into a problem like this years ago.  I had a .Net application that P/Invoked some 32-bit APIs.  The computer would automatically load the .Net code in a 64-bit process, but 64-bit and 32-bit code cannot coexists in the same process which is why the program would crash.  When I ran into this problem years ago I just changed the settings on my project so that the code would NGEN to 32-bit code (that means it was converted to x86 code at compile time).  But I don't have the source code for the Windows Mobile Security Power Toy.  So what could I do?</p>
<p>There's a command line utility that would help me here. It allows one to start a .Net executable and load it into a 32-bit process. the utility is named CORFLAGS.EXE.  I went back to the 64-bit machines, opened the command prompt, and typed the following:</p>
<p>COREFLAGS.EXE SecurityManager.exe /32BIT+</p>
<p>Success!</p>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2010/using-32-bit-net-applications-on-a-64-bit-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I need to do more networking</title>
		<link>http://florian.puthod.net/blog/2010/i-need-to-do-more-networking/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=i-need-to-do-more-networking</link>
		<comments>http://florian.puthod.net/blog/2010/i-need-to-do-more-networking/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 20:25:32 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=328</guid>
		<description><![CDATA[■ Promote yourself constantly.
■ More contacts = higher probability of success.
■ Never eat alone.
■ Create non-stop touch points.
■ Get out there as much as possible.
Go read Networking for people who hate networking
]]></description>
			<content:encoded><![CDATA[<p>■ Promote yourself constantly.<br />
■ More contacts = higher probability of success.<br />
■ Never eat alone.<br />
■ Create non-stop touch points.<br />
■ Get out there as much as possible.</p>
<p>Go read Networking for people who hate networking</p>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2010/i-need-to-do-more-networking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Note for later &#8211; installing ip rules on a brocade SAN switch</title>
		<link>http://florian.puthod.net/blog/2010/note-for-later-installing-ip-rules-on-a-brocade-san-switch/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=note-for-later-installing-ip-rules-on-a-brocade-san-switch</link>
		<comments>http://florian.puthod.net/blog/2010/note-for-later-installing-ip-rules-on-a-brocade-san-switch/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:57:43 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>
		<category><![CDATA[brocade]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[san]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=326</guid>
		<description><![CDATA[After forgetting what I did previously and I eventually managed to lock myself out of the fabric.
So instead of adding a rule to disable telnet, you will prefer to clone the rule set and modify it.
#ipfilter --clone CurrentSec -from default_ipv4
#ipfilter --show (write down the rule number for Telnet 23)
#ipfilter --delrule CurrentSec -rule 2
#ipfilter --addrule CurrentSec [...]]]></description>
			<content:encoded><![CDATA[<p>After forgetting what I did previously and I eventually managed to lock myself out of the fabric.</p>
<p>So instead of adding a rule to disable telnet, you will prefer to clone the rule set and modify it.</p>
<p>#ipfilter --clone CurrentSec -from default_ipv4<br />
#ipfilter --show (write down the rule number for Telnet 23)<br />
#ipfilter --delrule CurrentSec -rule 2<br />
#ipfilter --addrule CurrentSec -rule 2 -sip any -dp 23 -proto tcp -act deny<br />
#ipfilter --save CurrentSec<br />
#ipfilter --activate CurrentSec </p>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2010/note-for-later-installing-ip-rules-on-a-brocade-san-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting windows key management</title>
		<link>http://florian.puthod.net/blog/2010/troubleshooting-windows-key-management/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=troubleshooting-windows-key-management</link>
		<comments>http://florian.puthod.net/blog/2010/troubleshooting-windows-key-management/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 16:13:05 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[activation]]></category>
		<category><![CDATA[KMS]]></category>
		<category><![CDATA[R2]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=318</guid>
		<description><![CDATA[I have recently been deploying a few windows 2008 R2 and I ran into some activation issues. Where the KMS could not be found and/or did not activate the servers.
First off, there a few commands and output that will give you a good starting point.
C:\Windows\system32&#62;cscript slmgr.vbs /dlv
Microsoft (R) Windows Script Host Version 5.8
Copyright (C) Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently been deploying a few windows 2008 R2 and I ran into some activation issues. Where the KMS could not be found and/or did not activate the servers.</p>
<p>First off, there a few commands and output that will give you a good starting point.</p>
<blockquote><p>C:\Windows\system32&gt;cscript slmgr.vbs /dlv<br />
Microsoft (R) Windows Script Host Version 5.8<br />
Copyright (C) Microsoft Corporation. All rights reserved.</p>
<p>Software licensing service version: 6.1.7600.16385</p>
<p>Name: Windows Server(R), ServerStandard edition<br />
Description: Windows Operating System - Windows Server(R), RETAIL channel<br />
Activation ID: 039998e3-3ef5-4adf-b758-mnbvczxlkjjhh<br />
Application ID: 55c92734-d682-4d71-983e-lkdaskdjaskl<br />
Extended PID: 00477-4444-444-000000-00-1033-7600.0000-3482009<br />
Installation ID: 006386735361234567898785803475982043689521915735258065<br />
Processor Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88342<br />
Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88343<br />
Use License URL: http://go.microsoft.com/fwlink/?LinkID=88345<br />
Product Key Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88344<br />
Partial Product Key: 2YYCD<br />
License Status: Initial grace period<br />
Time remaining: 43200 minute(s) (30 day(s))<br />
Remaining Windows rearm count: 2<br />
Trusted time: 4/27/2010 11:09:12 AM</p></blockquote>
<p>Or its equivalent with less information slmgr /dli.</p>
<p>In that case, it seems that KMS client is not even set here.</p>
<p>First off, you may want to tell the server where to look to get Keys using the following commands.</p>
<p>To know which server should be register you may want to check the DNS record that</p>
<blockquote><p>C:\Windows\system32&gt;nslookup -type=srv _vlmcs._tcp.xxxx.net<br />
Server:  rrrpdcad02.xxxx.net<br />
Address:  10.9999.15</p>
<p>_vlmcs._tcp.xxxx.net   SRV service location:<br />
priority       = 0<br />
weight         = 0<br />
port           = 8081<br />
svr hostname   = rrrmskms01.xxxx.net<br />
rrrpmskms01.xxxx.net   internet address = 10.99.98.97</p></blockquote>
<p>With this information you can now register for this server.</p>
<blockquote><p>C:\Windows\system32&gt;cscript slmgr.vbs /skms rrrpmskms01:1688<br />
Microsoft (R) Windows Script Host Version 5.8<br />
Copyright (C) Microsoft Corporation. All rights reserved.</p>
<p>Key Management Service machine name set to rrrmskms01:1688 successfully.</p></blockquote>
<p>You will then need to enter a valid key if not already done with you unattended install. Please check the below table with MS provided keys for activation using KMS.</p>
<blockquote><p>C:\Windows\system32&gt;cscript slmgr.vbs -ipk YC6KT-GKW9T-YTKYR-T4X34-R7VHC<br />
Microsoft (R) Windows Script Host Version 5.8<br />
Copyright (C) Microsoft Corporation. All rights reserved.</p>
<p>Installed product key YC6KT-GKW9T-YTKYR-T4X34-R7VHC successfully.</p></blockquote>
<p>then trying the activation using the command below I would get another error.</p>
<blockquote><p>C:\Windows\system32&gt;cscript slmgr.vbs /ato<br />
Microsoft (R) Windows Script Host Version 5.8<br />
Copyright (C) Microsoft Corporation. All rights reserved.</p>
<p>Activating Windows Server(R), ServerStandard edition (039998e3-3ef5-ddasdasdass8-d25fa0128ff4) ...<br />
On a computer running Microsoft Windows non-core edition, run 'slui.exe 0x2a 0x80072EE2' to display the error text.<br />
Error: 0x80072EE2</p></blockquote>
<p>Using the mentioned command I would find that 0x80072EE2 means that the operation timed out. Very well, then I may facing some communication errors.</p>
<p>Indeed, as you may have noticed I made a mistake above not using the right port. I used 1688 which the default port instead.</p>
<p>You can also check on your KMS for a status using the slmgr /dlv command:</p>
<blockquote><p>Key Management Service is enabled on this machine<br />
Current count: 50<br />
Listening on Port: 8081<br />
DNS publishing enabled<br />
KMS priority: Normal</p></blockquote>
<p>Be sure to use the port that is given by the volume license DNS entry and make sure it communicates. As you may have guessed there are 2 ways a new server where a KMS is install will register. Of course after changing to the right port and can try -ato (activation) again.</p>
<ol>
<li>by using the DNS to automatically locate the KMS</li>
<li>or just register it manually using the commands above</li>
</ol>
<p>When rightfully registered the /dli or /dlv will give you something like that:</p>
<blockquote><p>C:\Windows\system32&gt;cscript slmgr.vbs -dli<br />
Microsoft (R) Windows Script Host Version 5.8<br />
Copyright (C) Microsoft Corporation. All rights reserved.</p>
<p>Name: Windows Server(R), ServerStandard edition<br />
Description: Windows Operating System - Windows Server(R), VOLUME_KMSCLIENT channel<br />
Partial Product Key: R99HC<br />
License Status: Licensed<br />
Volume activation expiration: 259200 minute(s) (180 day(s))</p>
<p>Key Management Service client information<br />
Client Machine ID (CMID): 70e4de42-rewa-4c93-gf45-a6d372bc0a19<br />
Registered KMS machine name: rrrpmskms01.xxxx.net:8081<br />
KMS machine extended PID: 55041-009999-313-09999-03-1033-6002.0000-3442009<br />
Activation interval: 120 minutes<br />
Renewal interval: 10080 minutes<br />
KMS host caching is enabled</p></blockquote>
<p>Activation Keys table (taken from <a href="http://technet.microsoft.com/en-us/library/dd772269.aspx" target="_blank">here</a>)</p>
<table style="height: 288px;" width="547">
<tbody>
<tr>
<th>Operating System Edition</th>
<th>Product Key</th>
</tr>
<tr>
<td><strong>Windows 7</strong></td>
<td></td>
</tr>
<tr>
<td>Windows 7 Professional</td>
<td>FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4</td>
</tr>
<tr>
<td>Windows 7 Professional N</td>
<td>MRPKT-YTG23-K7D7T-X2JMM-QY7MG</td>
</tr>
<tr>
<td>Windows 7 Enterprise</td>
<td>33PXH-7Y6KF-2VJC9-XBBR8-HVTHH</td>
</tr>
<tr>
<td>Windows 7 Enterprise N</td>
<td>YDRBP-3D83W-TY26F-D46B2-XCKRJ</td>
</tr>
<tr>
<td>Windows 7 Enterprise E</td>
<td>C29WB-22CC8-VJ326-GHFJW-H9DH4</td>
</tr>
<tr>
<td><strong>Windows Server 2008 R2</strong></td>
<td></td>
</tr>
<tr>
<td>Windows Server 2008 R2 HPC Edition</td>
<td>FKJQ8-TMCVP-FRMR7-4WR42-3JCD7</td>
</tr>
<tr>
<td>Windows Server 2008 R2 Datacenter</td>
<td>74YFP-3QFB3-KQT8W-PMXWJ-7M648</td>
</tr>
<tr>
<td>Windows Server 2008 R2 Enterprise</td>
<td>489J6-VHDMP-X63PK-3K798-CPX3Y</td>
</tr>
<tr>
<td>Windows Server 2008 R2 for Itanium-Based Systems</td>
<td>GT63C-RJFQ3-4GMB6-BRFB9-CB83V</td>
</tr>
<tr>
<td>Windows Server 2008 R2 Standard</td>
<td>YC6KT-GKW9T-YTKYR-T4X34-R7VHC</td>
</tr>
<tr>
<td>Windows Web Server 2008 R2</td>
<td>6TPJF-RBVHG-WBW2R-86QPH-6RTM4</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2010/troubleshooting-windows-key-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The technology underdog &#8211; the sysadmin</title>
		<link>http://florian.puthod.net/blog/2010/the-technology-underdog-the-sysadmin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-technology-underdog-the-sysadmin</link>
		<comments>http://florian.puthod.net/blog/2010/the-technology-underdog-the-sysadmin/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 17:55:02 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/2010/the-technology-underdog-the-sysadmin/</guid>
		<description><![CDATA[Marc Farley made a contribution that I think should be included in the pledge for Sysadmin appreciation day!
The sysadmin who gets to:
Wear the beeper 24 x 7?  The sysadmin.
Have almost every thought interrupted?  The sysadmin.
Mind the gap between hype and reality? The sysadmin.
Watch over the "minor details"? The sysadmin
Listen to hold music while [...]]]></description>
			<content:encoded><![CDATA[<p>Marc Farley made <a href="http://www.storagerap.com/2010/04/the-technology-underdog-the-sysadmin.html" target="_blank">a contribution</a> that I think should be included in the pledge for <a href="http://www.sysadminday.com/" target="_blank">Sysadmin appreciation day</a>!</p>
<p>The sysadmin who gets to:</p>
<p>Wear the beeper 24 x 7?  The sysadmin.</p>
<p>Have almost every thought interrupted?  The sysadmin.</p>
<p>Mind the gap between hype and reality? The sysadmin.</p>
<p>Watch over the "minor details"? The sysadmin</p>
<p>Listen to hold music while a blowtorch singes the body part that gets copied?  The sysadmin</p>
<p>Have purchase recommendations be ignored political decree?  The sysadmin.</p>
<p>Face the wrath when somebody else's bad idea breaks? The sysadmin.</p>
<p>Stay at work while the bosses go out for a round of mucky muck?  The sysadmin.</p>
<p>Have everybody else tell them what they really ought to be doing?  The sysadmin.</p>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2010/the-technology-underdog-the-sysadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMX connection handshake failed for mks</title>
		<link>http://florian.puthod.net/blog/2010/vmx-connection-faile/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmx-connection-faile</link>
		<comments>http://florian.puthod.net/blog/2010/vmx-connection-faile/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 18:21:37 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[san]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[volume]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=310</guid>
		<description><![CDATA[Today I ran into an interesting error when trying to access one of my VM.
First I could not get into that VM remotely as it appeared as offline. This said, VI showed the VM as healthy and online.
Trying to get to it using the Console from VI showed the following error:

As you can see I [...]]]></description>
			<content:encoded><![CDATA[<p>Today I ran into an interesting error when trying to access one of my VM.</p>
<p>First I could not get into that VM remotely as it appeared as offline. This said, VI showed the VM as healthy and online.</p>
<p>Trying to get to it using the Console from VI showed the following error:</p>
<p style="text-align: center;"><a href="http://florian.puthod.net/blog/wp-content/uploads/2010/02/esxvmx-handshake_error_2010-02-22_123842.png"><img class="size-medium wp-image-311 aligncenter" title="esx vmx handshake error" src="http://florian.puthod.net/blog/wp-content/uploads/2010/02/esxvmx-handshake_error_2010-02-22_123842-300x46.png" alt="esx vmx handshake error" width="445" height="68" /></a></p>
<p>As you can see I was afraid that some of the SAN path were down or some kind of painful problem with the SAN. No, no a quick ssh in showed that the mentioned volumes were online, accessible and all SAN paths were up.</p>
<p>So I do power off and restart the VM: no success. Restart the ESX (after vmotioning all VMs): no success.</p>
<p>Eventually I find that in the settings of the VM, there was  a reference of some floppy image pointing to a volume (not even on the same volume). I changed that option to Client Device and voila everything was back to normal.</p>
<p>Looking that information up on the VMware KB or community forum  doesn't provide any solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2010/vmx-connection-faile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESX4 HA error</title>
		<link>http://florian.puthod.net/blog/2009/esx4-ha-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=esx4-ha-error</link>
		<comments>http://florian.puthod.net/blog/2009/esx4-ha-error/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 15:50:05 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[En]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[xNix]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[esx4]]></category>
		<category><![CDATA[esx4i]]></category>
		<category><![CDATA[HA]]></category>
		<category><![CDATA[vcenter]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://florian.puthod.net/blog/?p=301</guid>
		<description><![CDATA[I only played with ESX4 regular flavor so far and I wanted to try mixing them with ESX4i. However trying to put that host in my cluster would give me HA error.
Enabling HA gave the error:
"Cannot complete the configuration of HA agent on the host. See the task for details for addional information. "
Without much [...]]]></description>
			<content:encoded><![CDATA[<p>I only played with ESX4 regular flavor so far and I wanted to try mixing them with ESX4i. However trying to put that host in my cluster would give me HA error.</p>
<p>Enabling HA gave the error:<br />
"Cannot complete the configuration of HA agent on the host. See the task for details for addional information. "</p>
<p>Without much details I was almost ready to blame it on ESX4i. However after checking everything I found out that my DNS servers settings were wrong.</p>
<p>Changing my DNS to the right IPs and HA configuration worked like a charm.</p>
<p>Obviously my sticky keys did not help but of course stressed out the reminder that HA relies on DNS heavily.</p>
]]></content:encoded>
			<wfw:commentRss>http://florian.puthod.net/blog/2009/esx4-ha-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

