<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Alfa BBT</title>
	<atom:link href="http://blog.koenvermoesen.be/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.koenvermoesen.be</link>
	<description>Allways looking for a better Blog Title...</description>
	<lastBuildDate>Mon, 16 Apr 2012 21:33:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.koenvermoesen.be' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/72db48a689a5327f7bba8c9193cac8af?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Alfa BBT</title>
		<link>http://blog.koenvermoesen.be</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.koenvermoesen.be/osd.xml" title="Alfa BBT" />
	<atom:link rel='hub' href='http://blog.koenvermoesen.be/?pushpress=hub'/>
		<item>
		<title>Powercli script to start/stop Local/Remote Tech Support Mode</title>
		<link>http://blog.koenvermoesen.be/2012/03/16/powercli-script-to-startstop-localremote-tech-support-mode/</link>
		<comments>http://blog.koenvermoesen.be/2012/03/16/powercli-script-to-startstop-localremote-tech-support-mode/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 14:25:48 +0000</pubDate>
		<dc:creator>Stijn Vermoesen</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://k0v3.wordpress.com/?p=1526</guid>
		<description><![CDATA[After the installation of the latest vSphere 4.1 patches all our hosts showed a warning regarding the Tech Support Modes being enabled. I took the time to write a script to start/stop theses services on the hosts in the vCenter server. Filed under: PowerShell, Uncategorized, Virtualization<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1526&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After the installation of the latest vSphere 4.1 patches all our hosts showed a warning regarding the Tech Support Modes being enabled. I took the time to write a script to start/stop theses services on the hosts in the vCenter server.</p>
<p><img class="alignnone" src="http://k0v3.files.wordpress.com/2012/03/vcentertsmwarning3.jpg?w=574&#038;h=58" alt="" width="574" height="58" /></p>
<p><pre class="brush: powershell;">
&lt;#
 .SYNOPSIS
   Start or Stop Local &amp; Remote TSM
 .VERSION
  1.0
 .DESCRIPTION
  Script to start or stop Local &amp; Remote Tech Support Mode on all the vSphere severs located in vCenter.
 .NOTES
   Author(s): Stijn Vermoesen
 .EXAMPLE
   PS&gt; ./StartStop-TSM.ps1
#&gt;

### Check if the VMware PowerCLI plugin is loaded
 if ((Get-PSSnapin -Name VMware.VimAutomation.Core -ErrorAction SilentlyContinue) -eq $null )
     {
     Add-PSSnapin VMware.VimAutomation.Core
     Write-Host &quot;Loading VMware PowerCLI Powershell plugin.&quot; -ForegroundColor blue
     }
     else
     {
     Write-host &quot;VMware PowerCLI Powershell plugin already loaded.&quot; -ForegroundColor blue
     }

 $vCenter = Read-Host &quot;Provide vCenter Server&quot;

 # Connect to the vCenter server
 Connect-VIServer $vCenter -credential ( Get-Credential )

$serviceInstance = get-view ServiceInstance
 if ( $serviceInstance.content.about.Name -like &quot;Vmware vCenter Server&quot;)
 {

$vmhosts = Get-VMHost | sort Name

Write-Host &quot;Start or to stop the Remote Tech Support (SSH)service&quot;
 Write-Host &quot;The Tech Support services on ALL hosts in the vCenter will be changed by running this script.&quot; -ForegroundColor Magenta
 Write-Host &quot; 1) Start Remote Tech Support (SSH)&quot;
 Write-Host &quot; 2) Stop Remote Tech Support (SSH)&quot;
 Write-Host &quot; 3) Start Local Tech Support (DCUI)&quot;
 Write-Host &quot; 4) Stop Local Tech Support (DCUI)&quot;
 Write-Host &quot; 5) Start Local &amp; Remote Tech Support (DCUI &amp; SSH)&quot;
 Write-Host &quot; 6) Stop Local &amp; Remote Tech Support (DCUI &amp; SSH)&quot;
 $response = Read-Host &quot;Enter your selection&quot;

foreach ($vmhost in $vmhosts)
 {

Switch ($response)
 {
     1 {
     $vmhost | Get-VMHostService | Where {$_.key -eq &quot;TSM-SSH&quot;} | %{
             if ($_.running -eq $false) {
                 $_ | Start-VMHostService -Confirm:$false | Out-Null
                 Write-Host &quot;Remote Tech Support Mode on $vHost started&quot;
             }
             else {
                 Write-Warning &quot;Remote Tech Support Mode on $vHost already started&quot;}
           }
     }

     2{
     $vmhost | Get-VMHostService | Where {$_.key -eq &quot;TSM-SSH&quot;} | %{
             if ($_.running -eq $true) {
                 $_ | Stop-VMHostService -Confirm:$false | Out-Null
                 Write-Warning &quot;Remote Tech Support Mode on $vHost stopped&quot;}
             }
             else {
                 Write-Host &quot;Remote Tech Support Mode on $vHost already stopped&quot;
           }
     }

     3{
     $vmhost | Get-VMHostService | Where {$_.key -eq &quot;TSM&quot;} |  %{
             if ($_.running -eq $false) {
                 $_ | Start-VMHostService -Confirm:$false | Out-Null
                 Write-Host &quot;Local Tech Support Mode on $vHost started&quot;
             }
             else {
                 Write-Warning &quot;Local Tech Support Mode on $vHost already started&quot;}
           }

     }

     4{
     $vmhost | Get-VMHostService | Where {$_.key -eq &quot;TSM&quot;} | %{
             if ($_.running -eq $true) {
                 $_ | Stop-VMHostService -Confirm:$false | Out-Null
                 Write-Warning &quot;Local Tech Support Mode on $vHost stopped&quot;}
             }
             else {
                  Write-Host &quot;Local Tech Support Mode on $vHost already stopped&quot;
           }
     }

     5{
     $vmhost | Get-VMHostService | Where {$_.key -eq &quot;TSM&quot;}| %{
             if ($_.running -eq $false) {
                 $_ | Start-VMHostService -Confirm:$false | Out-Null
                 Write-Host &quot;Local Tech Support Mode on $vHost started&quot;
             }
             else {
                 Write-Warning &quot;Local Tech Support Mode on $vHost already started&quot;}
           }

     $vmhost | Get-VMHostService | Where {$_.key -eq &quot;TSM-SSH&quot;} | %{
             if ($_.running -eq $false) {
                 $_ | Start-VMHostService -Confirm:$false | Out-Null
                 Write-Host &quot;Remote Tech Support Mode on $vHost started&quot;
             }
             else {
                 Write-Warning &quot;Remote Tech Support Mode on $vHost already started&quot;}
           }
     }

     6{
     $vmhost | Get-VMHostService | Where {$_.key -eq &quot;TSM&quot;}| %{
             if ($_.running -eq $true) {
                 $_ | Stop-VMHostService -Confirm:$false | Out-Null
                 Write-Host &quot;Local Tech Support Mode on $vHost stopped&quot;
             }
             else {
                 Write-Warning &quot;Local Tech Support Mode on $vHost already stopped&quot;}
           }

     $vmhost | Get-VMHostService | Where {$_.key -eq &quot;TSM-SSH&quot;} | %{
             if ($_.running -eq $true) {
                 $_ | Stop-VMHostService -Confirm:$false | Out-Null
                 Write-Host &quot;Remote Tech Support Mode on $vHost stopped&quot;
             }
             else {
                 Write-Warning &quot;Remote Tech Support Mode on $vHost already stopped&quot;}
           }
     }

     default {
     Write-Host &quot;Enter a valid number (1-6)&quot;
     }
 }
 }
 }
 else
     {
     Write-Error &quot;This script should be run against a vCenter server&quot;
     }
 Disconnect-VIServer    -Confirm:$false

</pre></p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/powershell/'>PowerShell</a>, <a href='http://blog.koenvermoesen.be/category/uncategorized/'>Uncategorized</a>, <a href='http://blog.koenvermoesen.be/category/tech/virtualization/'>Virtualization</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1526/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1526&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2012/03/16/powercli-script-to-startstop-localremote-tech-support-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62aee00de3e0280aadbe38323469a9be?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sak1n1</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/03/vcentertsmwarning3.jpg" medium="image" />
	</item>
		<item>
		<title>Disconnected host in vCenter server</title>
		<link>http://blog.koenvermoesen.be/2012/03/16/disconnected-host-in-vcenter-server/</link>
		<comments>http://blog.koenvermoesen.be/2012/03/16/disconnected-host-in-vcenter-server/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 14:04:50 +0000</pubDate>
		<dc:creator>Stijn Vermoesen</dc:creator>
				<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://k0v3.wordpress.com/?p=1516</guid>
		<description><![CDATA[One of our vSphere host showed as disconnected in vCenter. Connecting directly to the host with the vSphere client wouldn&#8217;t work neither. When restaring the services on the host I was able to connect directly but within one minute the connection between the client and the host would be lost. As I had already encountered [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1516&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of our vSphere host showed as disconnected in vCenter. Connecting directly to the host with the vSphere client wouldn&#8217;t work neither. When restaring the services on the host I was able to connect directly but within one minute the connection between the client and the host would be lost.</p>
<p><img class="alignnone" src="http://k0v3.files.wordpress.com/2012/03/syncissue.jpg?w=585&#038;h=78" alt="" width="585" height="78" /></p>
<p>As I had already encountered something similar before I checked the partitions on the hosts.</p>
<p><img class="alignnone" src="http://k0v3.files.wordpress.com/2012/03/vdf-h.jpg?w=478&#038;h=299" alt="" width="478" height="299" /></p>
<p>The vdf -h command shows that the hostdstats partitiion has filled up. This was new to me. On previous similar issues it was the MAINSYS partition who ran out of space. Check <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=2000089">this KB article</a> to solve the MAINSYS filling up issue.</p>
<p>The content of this partition is located under /var/lib/vmware/hostd/stats. Here we see that the hostAgentStats-20.stats file is the cullprit.</p>
<p><img class="alignnone" src="http://k0v3.files.wordpress.com/2012/03/ls-lah.jpg?w=576&#038;h=110" alt="" width="576" height="110" /></p>
<p>Delete the hostAgentStats-*.stats file from /var/lib/vmware/hostd/stats. Run services.sh restart on the vSphere host.</p>
<p>Problem should be solved now.</p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/tech/virtualization/'>Virtualization</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1516/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1516&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2012/03/16/disconnected-host-in-vcenter-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62aee00de3e0280aadbe38323469a9be?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sak1n1</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/03/syncissue.jpg" medium="image" />

		<media:content url="http://k0v3.files.wordpress.com/2012/03/vdf-h.jpg" medium="image" />

		<media:content url="http://k0v3.files.wordpress.com/2012/03/ls-lah.jpg" medium="image" />
	</item>
		<item>
		<title>Top10 WP7 apps</title>
		<link>http://blog.koenvermoesen.be/2012/02/23/top10-wp7-apps/</link>
		<comments>http://blog.koenvermoesen.be/2012/02/23/top10-wp7-apps/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 13:23:32 +0000</pubDate>
		<dc:creator>Koen Vermoesen</dc:creator>
				<category><![CDATA[SmartPhone]]></category>
		<category><![CDATA[WindowsPhone]]></category>

		<guid isPermaLink="false">https://k0v3.wordpress.com/?p=1485</guid>
		<description><![CDATA[Vandaag maakte ik een lijstje op van 10 van mijn favoriete Window Phone 7 apps (sommige betalend, andere gratis) voor een collega die nieuw aan de slag gaat met een Nokia Lumia:&#160; 1. Week view: Windows phone kalender heeft geen week overzicht; deze app vult de leemte in. Als je alle dagen naar dezelfde klant [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1485&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Vandaag maakte ik een lijstje op van 10 van mijn favoriete Window Phone 7 apps (sommige betalend, andere gratis) voor een collega die nieuw aan de slag gaat met een Nokia Lumia:&nbsp;
<p>1. <a href="http://www.windowsphone.com/nl-BE/apps/75848ed6-d550-4090-8e9b-50637f55faaf">Week view</a>: Windows phone kalender heeft geen week overzicht; deze app vult de leemte in. Als je alle dagen naar dezelfde klant moet misschien minder een probleem maar ik vind hem super handig om te weten waar (was’t nu in Xant of Xbxl?) ik wanneer moet zijn.
<p>2. <a href="https://www.windowsphone.com/nl-BE/apps/906cd463-9f34-e011-854c-00237de2db9e">Runkeeper</a>: statistiekjes over lopen/fietsen/wandelen door gebruik te maken van gps functionaliteit vd smartphone. Niet dat ik nog veel de kans zie om daar gebruik van te maken ;-) Runkeeper account voor nodig, waarvan ook een freemium versie bestaat.
<p>3. <a href="https://www.windowsphone.com/nl-BE/apps/906cd463-9f34-e011-854c-00237de2db9e">Adobe Reader</a>: nog niet veel gebruikt, schermpje blijft tenslotte klein om écht te kunnen lezen. Komt vroeg of laat wel eens van pas.
<p>4. <a href="https://www.windowsphone.com/nl-BE/apps/db21927d-f292-e011-986b-78e7d1fa76f8">Evernote</a>: wp7 app voor evernote (notetaking app). Evernote account voor nodig, waarvan ook een freemium versie bestaat.
<p>5. <a href="https://www.windowsphone.com/nl-BE/apps/9b86eadc-16e8-df11-9264-00237de2db9e">Lastpass</a>: wp7 app voor lastpass (password manager in de cloud). Ook plugins voor firefox, IE, chrome op zowel windows, MAC als Linux. Komt goed van pas om alle complexe+unieke paswoorden voor alle andere cloud apps niet manueel hoeven over te typen. Lastpass account voor nodig, waarvan wel een freemium versie bestaat maar de mobiele applicaties nu net een abonnement vereisen.
<p>6. <a href="https://www.windowsphone.com/nl-BE/apps/6b442a9b-554a-e011-854c-00237de2db9e">Hello Proximus</a>: bijhouden data verbruik. Tegenwoordig is er ook een <a href="http://www.windowsphone.com/nl-BE/apps/5a8c18fa-30f2-4d60-a7ae-a5662e6fb39c">Hello Belgacom</a> app, die meer van’t zelfde doet. Die heb ik echter nog niet gebruikt.
<p>7. <a href="https://www.windowsphone.com/nl-BE/apps/430cf007-731f-4357-af7b-b897bff25a2c">Connectivity shortcuts</a>: om sneller wifi, airplane mode etc te kunnen aanzetten, bv op events zoals TechDays. Daar is zeer slechte ontvangs en uw batterij gaat er in een halve dag door omdat hij steeds maar probeert connectie te maken.
<p>8. <a href="https://www.windowsphone.com/nl-BE/apps/5f64ad85-f801-e011-9264-00237de2db9e">WordPress</a>: client voor persoonlijk wordpress blog. Gebruik ik sporadisch eens om comments als spam te markeren. WordPress Lastpass account voor nodig, waarvan ook een freemium versie bestaat.
<p>9. <a href="https://www.windowsphone.com/nl-BE/apps/c9ccc9fc-8ce7-df11-9524-00237de2dca0">Wonder Reader</a>: favoriete RSS lezer voor WP7
<p>10. <a href="https://www.windowsphone.com/nl-BE/apps/7f7e3f68-ba3a-e011-854c-00237de2db9e">TuneIn Radio</a>: Stubru (of andere zenders) luisteren over Wifi aangezien er in ons badkamer geen/slechte FM ontvangst is. <a href="http://www.windowsphone.com/nl-BE/apps/12b11668-d75f-e011-81d2-78e7d1fa76f8">Open Syno</a> kan dan weer streamen vanaf een Synology NAS.
<p>11. <a href="https://www.windowsphone.com/nl-BE/apps/3c3052ac-115d-e011-854c-00237de2db9e">Camcard</a> (proefversie): business cards scannen, ocr’en en optioneel naar de people hub saven.
<p>12. <a href="https://www.windowsphone.com/nl-BE/apps/fae40052-655f-4ff7-ab44-5eef618f58be">Carbon</a>: Twitterclient. WP7 heeft basic twitter integratie maar deze app laat bv toe om de search “#techdays” te pinnen op je home screen terwijl je daar rond loopt.
<p>13. <a href="https://www.windowsphone.com/nl-BE/apps/518ccdb1-c360-4cf0-a0f6-89b2890bda6e">IN+ Networking</a>: Beste LinkedIn app voor WP7. Ook hier weer een aanvulling op de basic functionaliteit die native in WP7 zit. Die ingebouwde funtionalitiet zorgt dan weer voor nette foto’s bij de meeste contacts in de people hub.
<p>14. <a href="https://www.windowsphone.com/nl-BE/apps/ad543082-80ec-45bb-aa02-ffe7f4182ba8">SkyDrive</a>: SkyDrive (surprise, surprise) client. Nog niet echt veel gebruikt, ook onder het motto “komt vroeg of laat wel van pas”.
<p>15. <a href="https://www.windowsphone.com/nl-BE/apps/9ce93e51-5b35-e011-854c-00237de2db9e">Lync 2010</a>: Mobiele lync client, zodat je om 23h nog kan lastig gevallen worden door collega’s ;-)
<p>Strict gesproken is dit al geen top 10 meer, dus doe ik er nog maar eentje als bonus bij: <a href="http://www.windowsphone.com/nl-BE/apps/5a9731e6-7d24-4a17-9fea-c24439d2118e">Lumos</a>, de obligatoire zaklamp app.
<p>Tot slot zou je dmv <a href="http://www.windowsphone.com/nl-BE/apps/b9d1115b-2c0d-4e5d-afc6-fa6dcd84dda4">Reinstaller</a> makkelijk je fav apps op een nieuw toestel moeten kunnen installeren, leerde ik nadat ik alles manueel had teruggezocht bij mijn wissel van Omnia 7 nr Lumia 800 :-(</p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/tech/smartphone/'>SmartPhone</a> Tagged: <a href='http://blog.koenvermoesen.be/tag/windowsphone/'>WindowsPhone</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1485/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1485&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2012/02/23/top10-wp7-apps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f646bcfc3f7534b20fa79e0347353eb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">k0v3</media:title>
		</media:content>
	</item>
		<item>
		<title>techdays 2012 Day 2</title>
		<link>http://blog.koenvermoesen.be/2012/02/16/techdays-2012-day-2/</link>
		<comments>http://blog.koenvermoesen.be/2012/02/16/techdays-2012-day-2/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 07:16:01 +0000</pubDate>
		<dc:creator>Koen Vermoesen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://k0v3.wordpress.com/?p=1482</guid>
		<description><![CDATA[Day two started out with a session on Hyper-V availability bu Bryon Surace. Afterwards Paul Loonen discussed the new stuff in Widows Server 8 Active Directory. The session was so crowded that late comers had to sit on the stairs (shame on me). Additional PowerShell cmdlets are the biggest plus to me. Cloning domain controllers [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1482&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Day two started out with a session on Hyper-V availability bu Bryon Surace. Afterwards Paul Loonen discussed the new stuff in Widows Server 8 Active Directory. The session was so crowded that late comers had to sit on the stairs (shame on me). Additional PowerShell cmdlets are the biggest plus to me. Cloning domain controllers and Dynamic Access Control will take some time before we’ll see it in the field I guess.</p>
<p><a href="http://k0v3.files.wordpress.com/2012/02/wp_000083.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000083" src="http://k0v3.files.wordpress.com/2012/02/wp_000083_thumb.jpg?w=404&#038;h=304" alt="WP_000083" width="404" height="304" border="0" /></a><a href="http://k0v3.files.wordpress.com/2012/02/wp_000084.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000084" src="http://k0v3.files.wordpress.com/2012/02/wp_000084_thumb.jpg?w=404&#038;h=304" alt="WP_000084" width="404" height="304" border="0" /></a></p>
<p>Quick meetup with the team from <a href="http://www.pro-exchange.be/">pro-exchange</a> to discus what’s next from our community. Also , the new shirts arrived, which already impressed the Nokia girls <img class="wlEmoticon wlEmoticon-winkingsmile" style="border-style:none;" src="http://k0v3.files.wordpress.com/2012/02/wlemoticon-winkingsmile1.png?w=595" alt="Winking smile" /><a href="http://k0v3.files.wordpress.com/2012/02/wp_000086.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000086" src="http://k0v3.files.wordpress.com/2012/02/wp_000086_thumb.jpg?w=404&#038;h=304" alt="WP_000086" width="404" height="304" border="0" /></a></p>
<p>A first session from <a href="http://www.jasonhelmick.com">Jason Helmick</a> on PowerShell. How to take a single PS cmdlets and turn it into a script, advanced script and finally a module and have it look like the real stuff from MS itself. At the end of the day there was a second session from the same speaker covering PSv3. Both of them were very very entertaining! You can read some more on the adventure of a first international speaking engagement on his blog: <a title="http://www.jasonhelmick.com/tag/techdays/" href="http://www.jasonhelmick.com/tag/techdays/">http://www.jasonhelmick.com/tag/techdays/</a></p>
<p><a href="http://k0v3.files.wordpress.com/2012/02/wp_000087.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000087" src="http://k0v3.files.wordpress.com/2012/02/wp_000087_thumb.jpg?w=404&#038;h=304" alt="WP_000087" width="404" height="304" border="0" /></a><a href="http://k0v3.files.wordpress.com/2012/02/wp_000088.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000088" src="http://k0v3.files.wordpress.com/2012/02/wp_000088_thumb.jpg?w=404&#038;h=304" alt="WP_000088" width="404" height="304" border="0" /></a></p>
<p>Ilse’s session Lync session got overridden because of an interview by Mirosoft Marketing dept. However me and my team are now proud owners of some new hardware we can use for Lync demo purposes.</p>
<p><a href="http://k0v3.files.wordpress.com/2012/02/wp_000091.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;margin:0;" title="WP_000091" src="http://k0v3.files.wordpress.com/2012/02/wp_000091_thumb.jpg?w=404&#038;h=304" alt="WP_000091" width="404" height="304" border="0" /></a><a href="http://k0v3.files.wordpress.com/2012/02/wp_000089.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;margin:0;" title="WP_000089" src="http://k0v3.files.wordpress.com/2012/02/wp_000089_thumb.jpg?w=404&#038;h=304" alt="WP_000089" width="404" height="304" border="0" /></a></p>
<p>So much for the good news. The bad news is our barista took off to TechDays.nl :-(</p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1482/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1482&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2012/02/16/techdays-2012-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f646bcfc3f7534b20fa79e0347353eb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">k0v3</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000083_thumb.jpg" medium="image">
			<media:title type="html">WP_000083</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000084_thumb.jpg" medium="image">
			<media:title type="html">WP_000084</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wlemoticon-winkingsmile1.png" medium="image">
			<media:title type="html">Winking smile</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000086_thumb.jpg" medium="image">
			<media:title type="html">WP_000086</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000087_thumb.jpg" medium="image">
			<media:title type="html">WP_000087</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000088_thumb.jpg" medium="image">
			<media:title type="html">WP_000088</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000091_thumb.jpg" medium="image">
			<media:title type="html">WP_000091</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000089_thumb.jpg" medium="image">
			<media:title type="html">WP_000089</media:title>
		</media:content>
	</item>
		<item>
		<title>TechDays 2012 Day 1</title>
		<link>http://blog.koenvermoesen.be/2012/02/15/techdays-2012-day-1/</link>
		<comments>http://blog.koenvermoesen.be/2012/02/15/techdays-2012-day-1/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 07:07:19 +0000</pubDate>
		<dc:creator>Koen Vermoesen</dc:creator>
				<category><![CDATA[MEET]]></category>
		<category><![CDATA[TechDays]]></category>

		<guid isPermaLink="false">https://k0v3.wordpress.com/?p=1463</guid>
		<description><![CDATA[The day started early as we took the first shift on the MEET boot talking to people about user communities. Some of us gently offered the people an espresso or cappuccino whilst applied some peer pressure to have people sign up for the Microsoft Virtual Academy (“MVA”). More than enough volunteers for the community lounge, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1463&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The day started early as we took the first shift on the <a href="http://technet.microsoft.com/nl-be/hh442430">MEET</a> boot talking to people about user communities. Some of us gently offered the people an espresso or cappuccino whilst applied some peer pressure to have people sign up for the <a href="http://www.microsoftvirtualacademy.com/">Microsoft Virtual Academy</a> (“MVA”).</p>
<p><a href="http://k0v3.files.wordpress.com/2012/02/wp_000076.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000076" src="http://k0v3.files.wordpress.com/2012/02/wp_000076_thumb.jpg?w=404&#038;h=304" alt="WP_000076" width="404" height="304" border="0" /></a></p>
<p>More than enough volunteers for the community lounge, so I attended some sessions myself. As I missed the <a href="http://www.pro-exchange.be/">pro-exchange</a> preview around Lync Mobile clients I was obviously eager to attend the real one. After a quick bite it was up to Microsoft to try to bust some myths on Office 365.</p>
<p><a href="http://k0v3.files.wordpress.com/2012/02/wp_000077.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;margin:0;" title="WP_000077" src="http://k0v3.files.wordpress.com/2012/02/wp_000077_thumb.jpg?w=404&#038;h=304" alt="WP_000077" width="404" height="304" border="0" /></a><a href="http://k0v3.files.wordpress.com/2012/02/wp_000078.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000078" src="http://k0v3.files.wordpress.com/2012/02/wp_000078_thumb.jpg?w=404&#038;h=304" alt="WP_000078" width="404" height="304" border="0" /></a><a href="http://k0v3.files.wordpress.com/2012/02/wp_000079.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;margin:0;" title="WP_000079" src="http://k0v3.files.wordpress.com/2012/02/wp_000079_thumb.jpg?w=404&#038;h=304" alt="WP_000079" width="404" height="304" border="0" /></a></p>
<p>Afterwards I had the chance to talk with lots of people; customers, colleagues, fellow community members etc. Being, albeit just a small, part of the event certainly helps there. Did some interviews with a Flip video cam, together with my colleague Michael a long the way.</p>
<p>Attended two more sessions, the first one on Hybrid deployments of Office 365, while the last one covered SQL Server 2012 which will be released shortly.</p>
<p><a href="http://k0v3.files.wordpress.com/2012/02/wp_000080.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000080" src="http://k0v3.files.wordpress.com/2012/02/wp_000080_thumb.jpg?w=404&#038;h=304" alt="WP_000080" width="404" height="304" border="0" /></a><a href="http://k0v3.files.wordpress.com/2012/02/wp_000081.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000081" src="http://k0v3.files.wordpress.com/2012/02/wp_000081_thumb.jpg?w=404&#038;h=304" alt="WP_000081" width="404" height="304" border="0" /></a></p>
<p>Some general comments on the event:</p>
<ul>
<li>Met several people with completely drained batteries on their smartphones (all of the smart phone OS’s). Perhaps we need to think of a mobile charging station instead of an espresso machine for next year. There seems to be a need for it. Or hand out some of these Duracell chargers as goodies.</li>
<li>A lot of people mentioned the hall way being to crowded.</li>
</ul>
<p>On to a, hopefully, interesting second day. There are some sessions on Windows Server 8 Hyper-V and AD I’d like to attend. We’ll also benefit from the occasion to sit together as pro-exchange core members.</p>
<p>Regards,</p>
<p>Koen</p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/community/meet/'>MEET</a> Tagged: <a href='http://blog.koenvermoesen.be/tag/techdays/'>TechDays</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1463/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1463&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2012/02/15/techdays-2012-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f646bcfc3f7534b20fa79e0347353eb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">k0v3</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000076_thumb.jpg" medium="image">
			<media:title type="html">WP_000076</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000077_thumb.jpg" medium="image">
			<media:title type="html">WP_000077</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000078_thumb.jpg" medium="image">
			<media:title type="html">WP_000078</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000079_thumb.jpg" medium="image">
			<media:title type="html">WP_000079</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000080_thumb.jpg" medium="image">
			<media:title type="html">WP_000080</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wp_000081_thumb.jpg" medium="image">
			<media:title type="html">WP_000081</media:title>
		</media:content>
	</item>
		<item>
		<title>TechDays 2012 Agenda</title>
		<link>http://blog.koenvermoesen.be/2012/02/13/techdays-2012-agenda/</link>
		<comments>http://blog.koenvermoesen.be/2012/02/13/techdays-2012-agenda/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 08:27:57 +0000</pubDate>
		<dc:creator>Koen Vermoesen</dc:creator>
				<category><![CDATA[MEET]]></category>
		<category><![CDATA[TechNet]]></category>
		<category><![CDATA[TechDays]]></category>

		<guid isPermaLink="false">https://k0v3.wordpress.com/?p=1445</guid>
		<description><![CDATA[With one more day to go it’s time to start planning my agenda, just like in 2009 and 2010 (missed 2011), for the 10th edition of TechDays BeLux. The Rules I imposed on myself: Don’t miss any break or lunch. That is the easy part Everything more or less related to the user community I’m [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1445&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With one more day to go it’s time to start planning my agenda, just like in <a href="http://blog.koenvermoesen.be/2009/03/09/techdays-2009-agenda/">2009</a> and <a href="http://blog.koenvermoesen.be/2010/03/26/techdays-calendar/">2010</a> (missed 2011), for the 10th edition of <a href="http://www.techdays.be/">TechDays</a> BeLux.</p>
<p>The Rules I imposed on myself:</p>
<ol>
<li>Don’t miss any break or lunch. That is the easy part <img class="wlEmoticon wlEmoticon-winkingsmile" style="border-style:none;" src="http://k0v3.files.wordpress.com/2012/02/wlemoticon-winkingsmile.png?w=595" alt="Winking smile" /></li>
<li>Everything more or less related to the user community I’m part of myself, <a href="http://www.pro-exchange.be/">pro-exchange</a>, gets priority</li>
<li>Some of my colleagues at <a href="http://xylos.com/solutions/en/homepage/">Xylos</a> are eager to help you with deploying your own cloud, whether it’s either private or hybrid, so it’s certainly a plus to have an opinion of my own around the private cloud buzz of late.</li>
<li>Open slots are filled with Windows Server 8 and Hyper-V 3.</li>
<li>All of the above is overridden by possible chalk talks or involvement in the <a href="http://technet.microsoft.com/nl-be/hh442430">MEET</a> community.</li>
</ol>
<p>Here’s the agenda I composed for myself:</p>
<h1>Day 1</h1>
<p><a href="http://k0v3.files.wordpress.com/2012/02/techdays-be-2010-day-1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="TechDays.be 2010 Day 1" src="http://k0v3.files.wordpress.com/2012/02/techdays-be-2010-day-1_thumb.png?w=629&#038;h=770" alt="TechDays.be 2010 Day 1" width="629" height="770" border="0" /></a></p>
<h1>Day 2</h1>
<p><a href="http://k0v3.files.wordpress.com/2012/02/techdays-2012-day-2.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="TechDays 2012 Day 2" src="http://k0v3.files.wordpress.com/2012/02/techdays-2012-day-2_thumb.png?w=589&#038;h=770" alt="TechDays 2012 Day 2" width="589" height="770" border="0" /></a></p>
<h1>Day 3</h1>
<p><a href="http://k0v3.files.wordpress.com/2012/02/techdays-2012-day-3.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-color:0;border-style:none;border-width:0;" title="TechDays 2012 Day 3" src="http://k0v3.files.wordpress.com/2012/02/techdays-2012-day-3_thumb.png?w=591&#038;h=770" alt="TechDays 2012 Day 3" width="591" height="770" border="0" /></a></p>
<p>I might to do some blogging on/from the event, ref. <a title="http://blog.koenvermoesen.be/tag/techdays/" href="http://blog.koenvermoesen.be/tag/techdays/">http://blog.koenvermoesen.be/tag/techdays/</a>, we’ll see how and if we’re able to compete with <a href="http://www.zdnet.be/event/techdays_2012/">some pros</a> from.</p>
<p>CU @ the TechDays,</p>
<p>Koen</p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/community/meet/'>MEET</a>, <a href='http://blog.koenvermoesen.be/category/community/technet/'>TechNet</a> Tagged: <a href='http://blog.koenvermoesen.be/tag/techdays/'>TechDays</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1445/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1445&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2012/02/13/techdays-2012-agenda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f646bcfc3f7534b20fa79e0347353eb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">k0v3</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/wlemoticon-winkingsmile.png" medium="image">
			<media:title type="html">Winking smile</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/techdays-be-2010-day-1_thumb.png" medium="image">
			<media:title type="html">TechDays.be 2010 Day 1</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/techdays-2012-day-2_thumb.png" medium="image">
			<media:title type="html">TechDays 2012 Day 2</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/02/techdays-2012-day-3_thumb.png" medium="image">
			<media:title type="html">TechDays 2012 Day 3</media:title>
		</media:content>
	</item>
		<item>
		<title>ILvA Afvalkalender on your Windows Phone</title>
		<link>http://blog.koenvermoesen.be/2012/01/15/ilva-afvalkalender-on-your-windows-phone/</link>
		<comments>http://blog.koenvermoesen.be/2012/01/15/ilva-afvalkalender-on-your-windows-phone/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 21:34:05 +0000</pubDate>
		<dc:creator>Koen Vermoesen</dc:creator>
				<category><![CDATA[LifeHack]]></category>
		<category><![CDATA[SmartPhone]]></category>
		<category><![CDATA[WindowsLive]]></category>
		<category><![CDATA[WindowsPhone]]></category>

		<guid isPermaLink="false">https://k0v3.wordpress.com/?p=1425</guid>
		<description><![CDATA[ILvA (Intercommunale Land van Aalst) is the company that is responsible for collecting waste in the part of Flanders I’m living in. Once a year they provide a calendar on paper that, just like all other paper based materials, gets either lost or forgotten about. They also provide a digital version that you can consult [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1425&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ilva.be/">ILvA</a> (Intercommunale Land van Aalst) is the company that is responsible for collecting waste in the part of Flanders I’m living in. Once a year they provide a calendar on paper that, just like all other paper based materials, gets either lost or forgotten about. They also provide a digital version that you can consult on their webpage. However, it seems that nowadays they also provide the same calendar in an *.ICS file that you can subscribe to using Microsoft Outlook for instance.</p>
<p>However I also wanted to see this information on my windows smartphone. Here’s how I went about subscribing to it in Windows Live to get it to sync to my Windows Phone smartphone.</p>
<h1>Download Schedule</h1>
<p>First of all you need to get the correct ICS file for your home address. Go to the ILvA website and click on “Afvalkalender”:</p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/2012-01-15-21-49-34.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="2012-01-15 21 49 34" src="http://k0v3.files.wordpress.com/2012/01/2012-01-15-21-49-34_thumb.png?w=228&#038;h=563" alt="2012-01-15 21 49 34" width="228" height="563" border="0" /></a></p>
<p>Next you need to provide you home address details to get to the correct roster details:</p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/2012-01-15-21-50-001.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="2012-01-15 21 50 00" src="http://k0v3.files.wordpress.com/2012/01/2012-01-15-21-50-00_thumb1.png?w=404&#038;h=215" alt="2012-01-15 21 50 00" width="404" height="215" border="0" /></a></p>
<p>You can then download the agenda for your specific location.</p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-07-56.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="2012-01-15 22 07 56" src="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-07-56_thumb.png?w=622&#038;h=484" alt="2012-01-15 22 07 56" width="622" height="484" border="0" /></a></p>
<h1>Import Schedule</h1>
<p>Go to your <a href="http://www.live.com">Windows Live</a> calendar.</p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-03-331.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="2012-01-15 22 03 33" src="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-03-33_thumb1.png?w=404&#038;h=148" alt="2012-01-15 22 03 33" width="404" height="148" border="0" /></a></p>
<p>Click on the subscribe link:</p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-04-311.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="2012-01-15 22 04 31" src="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-04-31_thumb1.png?w=404&#038;h=154" alt="2012-01-15 22 04 31" width="404" height="154" border="0" /></a></p>
<p>Import the *.ICS file in you main calendar. <em>Note: this is the calendar of the main Windows Live account I use for my smartphone. I do not use Hotmail and/or the calendar on this account for anything.The advantage is that I can have these entries stand out by using a different color scheme<br />
</em></p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-13-21.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="2012-01-15 22 13 21" src="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-13-21_thumb.png?w=493&#038;h=484" alt="2012-01-15 22 13 21" width="493" height="484" border="0" /></a></p>
<p>This is what it looks like:</p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-15-35.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="2012-01-15 22 15 35" src="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-15-35_thumb.png?w=595&#038;h=484" alt="2012-01-15 22 15 35" width="595" height="484" border="0" /></a></p>
<h1>Verify Settings</h1>
<p>Check you phone settings; ensure syncing is turned on for your Windows Live Calendar. I’ve also chosen a color that is different from my professional (which is blue because that’s the main color in the Xylos logo) and personal (mango because there some of that in the Office365 branding) agendas.</p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/wp_000370.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000370" src="http://k0v3.files.wordpress.com/2012/01/wp_000370_thumb.jpg?w=404&#038;h=537" alt="WP_000370" width="404" height="537" border="0" /></a></p>
<p>There it is. No need to monitor the neighbors anymore <img class="wlEmoticon wlEmoticon-smile" style="border-style:none;" src="http://k0v3.files.wordpress.com/2012/01/wlemoticon-smile.png?w=595" alt="Smile" /></p>
<p><a href="http://k0v3.files.wordpress.com/2012/01/wp_000371.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WP_000371" src="http://k0v3.files.wordpress.com/2012/01/wp_000371_thumb.jpg?w=404&#038;h=537" alt="WP_000371" width="404" height="537" border="0" /></a></p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/lifehack/'>LifeHack</a>, <a href='http://blog.koenvermoesen.be/category/tech/smartphone/'>SmartPhone</a> Tagged: <a href='http://blog.koenvermoesen.be/tag/windowslive/'>WindowsLive</a>, <a href='http://blog.koenvermoesen.be/tag/windowsphone/'>WindowsPhone</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1425/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1425&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2012/01/15/ilva-afvalkalender-on-your-windows-phone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f646bcfc3f7534b20fa79e0347353eb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">k0v3</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/2012-01-15-21-49-34_thumb.png" medium="image">
			<media:title type="html">2012-01-15 21 49 34</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/2012-01-15-21-50-00_thumb1.png" medium="image">
			<media:title type="html">2012-01-15 21 50 00</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-07-56_thumb.png" medium="image">
			<media:title type="html">2012-01-15 22 07 56</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-03-33_thumb1.png" medium="image">
			<media:title type="html">2012-01-15 22 03 33</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-04-31_thumb1.png" medium="image">
			<media:title type="html">2012-01-15 22 04 31</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-13-21_thumb.png" medium="image">
			<media:title type="html">2012-01-15 22 13 21</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/2012-01-15-22-15-35_thumb.png" medium="image">
			<media:title type="html">2012-01-15 22 15 35</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/wp_000370_thumb.jpg" medium="image">
			<media:title type="html">WP_000370</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2012/01/wp_000371_thumb.jpg" medium="image">
			<media:title type="html">WP_000371</media:title>
		</media:content>
	</item>
		<item>
		<title>Conditionally formatting a row based on the value in a single cell</title>
		<link>http://blog.koenvermoesen.be/2011/11/30/conditionally-formatting-a-row-based-on-the-value-in-a-single-cell/</link>
		<comments>http://blog.koenvermoesen.be/2011/11/30/conditionally-formatting-a-row-based-on-the-value-in-a-single-cell/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 15:52:24 +0000</pubDate>
		<dc:creator>Koen Vermoesen</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://blog.koenvermoesen.be/?p=1379</guid>
		<description><![CDATA[The title of this post is probably longer than the post itself ;-) I&#8217;ve already mentioned that I use excel to manage task lists from time to time. Sometimes reality catches up and a task is invalid before you get to it. You could obviously remove the task from the list, but I prefer to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1379&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The title of this post is probably longer than the post itself ;-)</p>
<p>I&#8217;ve already <a title="How to use a dynamic range for data validation lists from another sheet" href="http://blog.koenvermoesen.be/2009/01/13/how-to-use-a-dynamic-range-for-data-validation-lists-from-another-sheet/">mentioned</a> that I use excel to manage task lists from time to time. Sometimes reality catches up and a task is invalid before you get to it. You could obviously remove the task from the list, but I prefer to keep a reference of the task and why it became invalid. Instead I set the value of my status column to &#8220;Cancelled&#8221;. (Other possible values are: &#8220;Not started&#8221;, &#8220;Ongoing&#8221;, and &#8220;Done&#8221;.)</p>
<p>Now in case a task gets cancelled I want to apply a strikeout effect to the entire row, not just that one cell. This is not to difficult to establish, but I always forget about one of the details and need to look up an old copy. Hence I&#8217;m writing this post &#8220;for future reference&#8221;, hopefully somebody else out there finds it useful.</p>
<p>Have a task list at hand and select the rows in it:</p>
<p><a href="http://k0v3.files.wordpress.com/2011/11/image-20111130162347.png"><img class="aligncenter size-medium wp-image-1380" title="Image 20111130162347" src="http://k0v3.files.wordpress.com/2011/11/image-20111130162347.png?w=300&#038;h=135" alt="" width="300" height="135" /></a></p>
<p>Office 2010 Ribbon &gt; Home tab &gt; Conditional formatting &gt; new rule</p>
<p><a href="http://k0v3.files.wordpress.com/2011/11/image-20111130163026.png"><img class="aligncenter size-medium wp-image-1381" title="Image 20111130163026" src="http://k0v3.files.wordpress.com/2011/11/image-20111130163026.png?w=300&#038;h=135" alt="" width="300" height="135" /></a></p>
<p>Select &#8220;Use a formula to determine which cells to format&#8221;</p>
<p><a href="http://k0v3.files.wordpress.com/2011/11/image-20111130163140.png"><img class="aligncenter size-medium wp-image-1382" title="Image 20111130163140" src="http://k0v3.files.wordpress.com/2011/11/image-20111130163140.png?w=300&#038;h=289" alt="" width="300" height="289" /></a></p>
<p>The formula syntax needs to be along the lines of:</p>
<p><pre class="brush: plain;">=$e2=&quot;Cancelled&quot;</pre></p>
<p>Click the &#8220;format&#8221; button and check the &#8220;strikeout&#8221; effect:</p>
<p><a href="http://k0v3.files.wordpress.com/2011/11/image-20111130170136.png"><img class="aligncenter size-medium wp-image-1391" title="Image 20111130170136" src="http://k0v3.files.wordpress.com/2011/11/image-20111130170136.png?w=300&#038;h=288" alt="" width="300" height="288" /></a></p>
<p>The end result:</p>
<p><a href="http://k0v3.files.wordpress.com/2011/11/image-20111130164026.png"><img class="aligncenter size-medium wp-image-1384" title="Image 20111130164026" src="http://k0v3.files.wordpress.com/2011/11/image-20111130164026.png?w=300&#038;h=135" alt="" width="300" height="135" /></a></p>
<p>Now go ahead and try to make a rule that sets a green background for tasks where the status is set to done:</p>
<p><a href="http://k0v3.files.wordpress.com/2011/11/image-20111130164345.png"><img class="aligncenter size-medium wp-image-1385" title="Image 20111130164345" src="http://k0v3.files.wordpress.com/2011/11/image-20111130164345.png?w=300&#038;h=135" alt="" width="300" height="135" /></a></p>
<p>Things that usually go wrong (it&#8217;s in the details):</p>
<ul>
<li>Typing the wrong cell number; you need the row number of the first row in the area you selected</li>
<li>Forgetting about one of the equal sings or the quotes</li>
<li>Not specifying the formatting to apply</li>
<li>Incorrectly selecting the area the formatting needs to apply to</li>
</ul>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/tech/office/'>Office</a> Tagged: <a href='http://blog.koenvermoesen.be/tag/excel/'>Excel</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1379/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1379&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2011/11/30/conditionally-formatting-a-row-based-on-the-value-in-a-single-cell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f646bcfc3f7534b20fa79e0347353eb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">k0v3</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/11/image-20111130162347.png?w=300" medium="image">
			<media:title type="html">Image 20111130162347</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/11/image-20111130163026.png?w=300" medium="image">
			<media:title type="html">Image 20111130163026</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/11/image-20111130163140.png?w=300" medium="image">
			<media:title type="html">Image 20111130163140</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/11/image-20111130170136.png?w=300" medium="image">
			<media:title type="html">Image 20111130170136</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/11/image-20111130164026.png?w=300" medium="image">
			<media:title type="html">Image 20111130164026</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/11/image-20111130164345.png?w=300" medium="image">
			<media:title type="html">Image 20111130164345</media:title>
		</media:content>
	</item>
		<item>
		<title>Using PowerShell for Organizing your Photo Library</title>
		<link>http://blog.koenvermoesen.be/2011/09/17/using-powershell-for-organizing-your-photo-library/</link>
		<comments>http://blog.koenvermoesen.be/2011/09/17/using-powershell-for-organizing-your-photo-library/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 19:41:00 +0000</pubDate>
		<dc:creator>Koen Vermoesen</dc:creator>
				<category><![CDATA[LifeHack]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">https://k0v3.wordpress.com/2011/09/17/using-powershell-for-organizing-your-photo-library/</guid>
		<description><![CDATA[Finally I’ve found a decent solution for moving my digital photographs to a date based hierarchy on my NAS: http://stevesmithblog.com/blog/copy-pictures-to-folders-by-date-taken-with-powershell/ My Photos are organized in a &#8220;Year\Year-Month\Year-Month-Day&#8221; structure based on the date the picture was taken. I’m very happy with the solution because a picture can only belong to one folder. No discussion possible. Moving [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1347&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://k0v3.files.wordpress.com/2011/09/20110917210447.png"><img class="alignleft" style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0 none;margin:0 5px 0 0;" title="20110917210447" src="http://k0v3.files.wordpress.com/2011/09/20110917210447_thumb.png?w=84&#038;h=244" alt="20110917210447" width="84" height="244" align="left" border="0" /></a>Finally I’ve found a decent solution for moving my digital photographs to a date based hierarchy on my <a href="http://blog.koenvermoesen.be/tag/nas/">NAS</a>: <a title="http://stevesmithblog.com/blog/copy-pictures-to-folders-by-date-taken-with-powershell/" href="http://stevesmithblog.com/blog/copy-pictures-to-folders-by-date-taken-with-powershell/">http://stevesmithblog.com/blog/copy-pictures-to-folders-by-date-taken-with-powershell/</a></p>
<p>My Photos are organized in a &#8220;Year\Year-Month\Year-Month-Day&#8221; structure based on the date the picture was taken. I’m very happy with the solution because a picture can only belong to one folder. No discussion possible. Moving pictures from multiple digital cameras and smartphones into that structure quickly becomes tiresome. I’ve tried <a href="http://www.antp.be/software/renamer">AntRenamer</a> and <a href="http://mjbpix.com/automatically-move-photos-to-directories-or-folders-based-on-exif-date/">PhotoMove</a> but always ended up doing most of the moves manually anyway. Until I discovered the post above, which refers to an even older post from Belgian SCCM MVP Kim Oppalfens.</p>
<p>I’ve only tweaked the script a little bit to have it match my exact folder structure.</p>
<p><a href="http://k0v3.files.wordpress.com/2011/09/20110917205520.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border:0;" title="20110917205520" src="http://k0v3.files.wordpress.com/2011/09/20110917205520_thumb.png?w=576&#038;h=416" alt="20110917205520" width="576" height="416" border="0" /></a></p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/lifehack/'>LifeHack</a>, <a href='http://blog.koenvermoesen.be/category/powershell/'>PowerShell</a> Tagged: <a href='http://blog.koenvermoesen.be/tag/powershell/'>PowerShell</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1347/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1347&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2011/09/17/using-powershell-for-organizing-your-photo-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f646bcfc3f7534b20fa79e0347353eb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">k0v3</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/09/20110917210447_thumb.png" medium="image">
			<media:title type="html">20110917210447</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/09/20110917205520_thumb.png" medium="image">
			<media:title type="html">20110917205520</media:title>
		</media:content>
	</item>
		<item>
		<title>Where is d&#8217;Artagnan?</title>
		<link>http://blog.koenvermoesen.be/2011/09/07/where-is-dartagnan/</link>
		<comments>http://blog.koenvermoesen.be/2011/09/07/where-is-dartagnan/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 13:56:38 +0000</pubDate>
		<dc:creator>Koen Vermoesen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://k0v3.wordpress.com/2011/09/07/where-is-dartagnan/</guid>
		<description><![CDATA[I’m working for Xylos as you might have read on my about page. At Xylos we are constantly looking for new colleagues. Have a look at the list of current job offerings or consider a spontaneous job application instead. If you prefer a more informal approach, or you’d like to watch the new “The Three [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1333&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.xylos.com/musketeers"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border-width:0;" title="Web_top_banner_680x113_musketeers" src="http://k0v3.files.wordpress.com/2011/09/web_top_banner_680x113_musketeers.jpg?w=555&#038;h=96" alt="Web_top_banner_680x113_musketeers" width="555" height="96" border="0" /></a></p>
<p>I’m working for Xylos as you might have read on my <a href="http://blog.koenvermoesen.be/about-koen/">about page</a>. At <a href="http://www.xylos.com">Xylos</a> we are constantly looking for new colleagues. Have a look at <a href="http://www.xylos.com/jobs/en/jobslist/">the list of current job offerings</a> or consider a <a href="http://www.xylos.com/jobs/en/spontaneous-applications/">spontaneous job application</a> instead.</p>
<p>If you prefer a more informal approach, or you’d like to watch the new “The Three Musketeers” movie, than you might be interested in our job event:</p>
<p>Date: Saturday, 1 October 2011<br />
Time: from 09:30 till 13:30<br />
Location: Utopolis Mechelen</p>
<p>As a matter of fact I will be present myself, but I’d like to see some people to come and talk to me.</p>
<p>Check out <a title="http://www.xylos.com" href="http://www.xylos.com/musketeers/">http://www.xylos.com/musketeers/</a> for more info.</p>
<p>Note: you can do me a favor by referring to me during your application.</p>
<br />Filed under: <a href='http://blog.koenvermoesen.be/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/k0v3.wordpress.com/1333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/k0v3.wordpress.com/1333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/k0v3.wordpress.com/1333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/k0v3.wordpress.com/1333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/k0v3.wordpress.com/1333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/k0v3.wordpress.com/1333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/k0v3.wordpress.com/1333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/k0v3.wordpress.com/1333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/k0v3.wordpress.com/1333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/k0v3.wordpress.com/1333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/k0v3.wordpress.com/1333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/k0v3.wordpress.com/1333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/k0v3.wordpress.com/1333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/k0v3.wordpress.com/1333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.koenvermoesen.be&amp;blog=3561314&amp;post=1333&amp;subd=k0v3&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.koenvermoesen.be/2011/09/07/where-is-dartagnan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f646bcfc3f7534b20fa79e0347353eb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">k0v3</media:title>
		</media:content>

		<media:content url="http://k0v3.files.wordpress.com/2011/09/web_top_banner_680x113_musketeers.jpg" medium="image">
			<media:title type="html">Web_top_banner_680x113_musketeers</media:title>
		</media:content>
	</item>
	</channel>
</rss>
