<?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>LeVeilleur.net &#187; Non classé</title>
	<atom:link href="http://www.leveilleur.net/index.php/category/non-classe/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leveilleur.net</link>
	<description></description>
	<lastBuildDate>Thu, 03 Jun 2010 21:21:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>fr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New website : vNext.be</title>
		<link>http://www.leveilleur.net/index.php/2010/06/03/new-website-vnext-be/</link>
		<comments>http://www.leveilleur.net/index.php/2010/06/03/new-website-vnext-be/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 20:57:06 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.leveilleur.net/?p=339</guid>
		<description><![CDATA[
http://www.vnext.be
Hello every one,
I&#8217;ll not  post anymore on leveilleur.net website, I just created a new blog, specialized in System Center technologies and Microsoft powershell.
The new website is vNext.be, I hope to see you there !  

http://www.vnext.be
Christopher Keyaert
 
]]></description>
			<content:encoded><![CDATA[<h1 style="text-align: center;">
<a  href="http://www.vnext.be" onclick="javascript:pageTracker._trackPageview('/external/www.vnext.be');" >http://www.vnext.be</a></h1>
<p>Hello every one,</p>
<p>I&#8217;ll not  post anymore on leveilleur.net website, I just created a new blog, specialized in System Center technologies and Microsoft powershell.<br />
The new website is <strong><span style="color: #ff0000;">vNext.be<span style="color: #000000;"><span style="font-weight: normal;">, I hope to see you there ! <img src='http://www.leveilleur.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></span></span></strong></p>
<h1 style="text-align: center;"><strong><span style="color: #ff0000;">
<a  href="http://www.vnext.be" onclick="javascript:pageTracker._trackPageview('/external/www.vnext.be');" >http://www.vnext.be</a></span></strong></h1>
<p><span style="color: #ff0000;"><strong>Christopher Keyaert</strong></span></p>
<p><strong><span style="color: #ff0000;"> </span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2010/06/03/new-website-vnext-be/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Website is back online</title>
		<link>http://www.leveilleur.net/index.php/2009/12/01/website-is-back-online/</link>
		<comments>http://www.leveilleur.net/index.php/2009/12/01/website-is-back-online/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 20:54:20 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.leveilleur.net/index.php/2009/12/01/website-is-back-online/</guid>
		<description><![CDATA[Hello guys,
After one month offline due to my moving, my Internet connexion is back now :0)
Enjoy
Christopher
]]></description>
			<content:encoded><![CDATA[<p>Hello guys,</p>
<p>After one month offline due to my moving, my Internet connexion is back now :0)</p>
<p>Enjoy<br />
Christopher</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2009/12/01/website-is-back-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PowerShell : List Users from AD Groups</title>
		<link>http://www.leveilleur.net/index.php/2009/06/10/powershell-list-users-from-ad-groups/</link>
		<comments>http://www.leveilleur.net/index.php/2009/06/10/powershell-list-users-from-ad-groups/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 07:23:11 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.leveilleur.net/?p=181</guid>
		<description><![CDATA[
############################
#Param
############################
$lists= "Group1", "Group2"
$ExportCsv = "D:\test.csv"

############################
#Functions
############################
Add-pssnapin Quest.ActiveRoles.ADManagement
Function Get-MemberName()
	{
	Process
		{
		ForEach($Member In $_)
			{
			Get-QADUser –ObjectAttributes @{distinguishedName=$Member}
			}
		}
	}
#########################
# Script
#########################
$MyArray = @()
foreach($group in $lists)
	{
	$Ret = $null
	$Ret = (Get-QADGroup $group).members &#124; Get-MemberName
	foreach($line in $Ret)
		{
		$obj = New-Object PSObject
		$obj &#124; Add-Member NoteProperty -Name "Group" -Value ($Group).ToUpper()
		$obj &#124; Add-Member NoteProperty -Name "FirstName" -Value $line.FirstName
		$obj &#124; Add-Member NoteProperty -Name "LastName" -Value $line.LastName
		$obj &#124; Add-Member NoteProperty -Name "LogonName" -Value [...]]]></description>
			<content:encoded><![CDATA[<pre>
############################
#Param
############################
$lists= "Group1", "Group2"
$ExportCsv = "D:\test.csv"

############################
#Functions
############################
Add-pssnapin Quest.ActiveRoles.ADManagement
Function Get-MemberName()
	{
	Process
		{
		ForEach($Member In $_)
			{
			Get-QADUser –ObjectAttributes @{distinguishedName=$Member}
			}
		}
	}
#########################
# Script
#########################
$MyArray = @()
foreach($group in $lists)
	{
	$Ret = $null
	$Ret = (Get-QADGroup $group).members | Get-MemberName
	foreach($line in $Ret)
		{
		$obj = New-Object PSObject
		$obj | Add-Member NoteProperty -Name "Group" -Value ($Group).ToUpper()
		$obj | Add-Member NoteProperty -Name "FirstName" -Value $line.FirstName
		$obj | Add-Member NoteProperty -Name "LastName" -Value $line.LastName
		$obj | Add-Member NoteProperty -Name "LogonName" -Value ($line.LogonName).ToUpper()
		$MyArray += $obj
		}
	}
$MyArray | Export-Csv $ExportCsv
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2009/06/10/powershell-list-users-from-ad-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell :  Save Html, Body, &#8230;.</title>
		<link>http://www.leveilleur.net/index.php/2009/02/10/powershell-save-html-body/</link>
		<comments>http://www.leveilleur.net/index.php/2009/02/10/powershell-save-html-body/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 12:52:02 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[saveas]]></category>

		<guid isPermaLink="false">http://www.leveilleur.net/?p=157</guid>
		<description><![CDATA[Voici trois méthodes permettant de sauver une page web ou plus simplement du code html

# Internetexplorer.application
$obj=New-Object -ComObject internetexplorer.application
$obj.visible=$true
$obj.navigate2("http://www.google.com")
while($obj.ReadyState -ne 4){start-sleep -m 100}
$obj.Document.documentElement.outerHTML

# xml http
$url = "http://www.cnn.com"
$xHTTP = new-object -com msxml2.xmlhttp;
$xHTTP.open("GET",$url,$false);
$xHTTP.send();
$xHTTP.ResponseText; # returns the html doc


# net.webclient
$url="http://www.cnn.com"
$wc = new-object net.webclient
$html = $wc.DownloadString($url)
]]></description>
			<content:encoded><![CDATA[<p>Voici trois méthodes permettant de sauver une page web ou plus simplement du code html<br />
</p>
<pre># Internetexplorer.application
$obj=New-Object -ComObject internetexplorer.application
$obj.visible=$true
$obj.navigate2("http://www.google.com")
while($obj.ReadyState -ne 4){start-sleep -m 100}
$obj.Document.documentElement.outerHTML</pre>
<p></p>
<pre># xml http
$url = "http://www.cnn.com"
$xHTTP = new-object -com msxml2.xmlhttp;
$xHTTP.open("GET",$url,$false);
$xHTTP.send();
$xHTTP.ResponseText; # returns the html doc
</pre>
<p></p>
<pre># net.webclient
$url="http://www.cnn.com"
$wc = new-object net.webclient
$html = $wc.DownloadString($url)</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2009/02/10/powershell-save-html-body/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Londres, Big Ben, London Eye, Mrs Tussaud, Oxford Street &#8230;</title>
		<link>http://www.leveilleur.net/index.php/2008/11/01/londres-big-ben-london-eye-mrs-tussaud-oxford-street/</link>
		<comments>http://www.leveilleur.net/index.php/2008/11/01/londres-big-ben-london-eye-mrs-tussaud-oxford-street/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 14:12:34 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.leveilleur.net/index.php/2008/11/01/londres-big-ben-london-eye-mrs-tussaud-oxford-street/</guid>
		<description><![CDATA[Voici quelques photos de notre séjour à Londres :

La suite : 
http://www.leveilleur.net/index.php/galerie-photos/ 
]]></description>
			<content:encoded><![CDATA[<p>Voici quelques photos de notre séjour à Londres :</p>
<p style="text-align: center"><img src="http://www.hostipics.net/files/2008-11/01/O1225548493pict3865.jpg" width="450" height="600" /></p>
<p>La suite : 
<a  href="http://www.leveilleur.net/index.php/galerie-photos/">http://www.leveilleur.net/index.php/galerie-photos/ </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2008/11/01/londres-big-ben-london-eye-mrs-tussaud-oxford-street/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migration de la galerie</title>
		<link>http://www.leveilleur.net/index.php/2008/01/07/migration-de-la-galerie/</link>
		<comments>http://www.leveilleur.net/index.php/2008/01/07/migration-de-la-galerie/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 14:18:42 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Non classé]]></category>
		<category><![CDATA[galerie]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://blog2.leveilleur.net/index.php/2008/01/07/migration-de-la-galerie/</guid>
		<description><![CDATA[
Vous l&#8217;avez peut être déjà  remarqué, mais j&#8217;ai décidé de migrer la galerie photo sur l&#8217;application Picasa de Google. Cette galerie est beaucoup plus puissante et rapide que la précédente.
Je vous invite donc à  aller y faire un tour dès à  présent. J&#8217;y ai d&#8217;ailleurs rajouter les dernières photos de nos vacances.
L&#8217;url [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.hostipics.net/files/2008-01/07/O1199711820picasaweblogo.fr.jpg" /></p>
<p>Vous l&#8217;avez peut être déjà  remarqué, mais j&#8217;ai décidé de migrer la galerie photo sur l&#8217;application Picasa de Google. Cette galerie est beaucoup plus puissante et rapide que la précédente.</p>
<p>Je vous invite donc à  aller y faire un tour dès à  présent. J&#8217;y ai d&#8217;ailleurs rajouter les dernières photos de nos vacances.</p>
<p>L&#8217;url par contre ne change pas : 
<a  href="http://gallery.leveilleur.net" hreflang="fr" onclick="javascript:pageTracker._trackPageview('/external/gallery.leveilleur.net');" >http://gallery.leveilleur.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2008/01/07/migration-de-la-galerie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commande de l&#8217;Asus MyPal 696</title>
		<link>http://www.leveilleur.net/index.php/2007/09/04/commande-de-l-asus-mypal-696/</link>
		<comments>http://www.leveilleur.net/index.php/2007/09/04/commande-de-l-asus-mypal-696/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 15:28:43 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://blog2.leveilleur.net/index.php/2007/09/04/commande-de-l-asus-mypal-696/</guid>
		<description><![CDATA[Etant Ã  la recherche d&#8217;un gps polyvalent, c&#8217;est Ã  dire pouvant Ãªtre utiliser aussi en voiture qu&#8217;Ã  moto (via notre intercom bluetooth), je me suis tournÃ© vers l&#8217;Asus MyPal 696. Il s&#8217;agit en fait d&#8217;un PDA tournant sous Windows Mobile 6 et celui-ci possÃ¨de une antenne GPS SIRF III intÃ©grÃ©e. Il suffit [...]]]></description>
			<content:encoded><![CDATA[<p>Etant Ã  la recherche d&#8217;un gps polyvalent, c&#8217;est Ã  dire pouvant Ãªtre utiliser aussi en voiture qu&#8217;Ã  moto (via notre intercom bluetooth), je me suis tournÃ© vers l&#8217;Asus MyPal 696. Il s&#8217;agit en fait d&#8217;un PDA tournant sous Windows Mobile 6 et celui-ci possÃ¨de une antenne GPS SIRF III intÃ©grÃ©e. Il suffit alors de le coupler avec un logiciel de navigation comme TomTom 6 et vous voilÃ  avec une gps totalement autonome.</p>
<p>Pourquoi un PDA et non un gps tout en un ? Dans le commerce, on trouve dÃ©jÃ  des TomTom One V2 Ã  +- 200â‚¬, compatible Bluetooth, mais ce que l&#8217;on ne dit pas, c&#8217;est qu&#8217;ils sont incompatibles avec les oreillettes avec les oreillettes bluetooth. Donc dans mon cas, inutilisable avec mon intercom Scala Rider. Le pourquoi de cette incompatibilitÃ© ? Tout simplement, parce que dans la gamme TomTom (Et d&#8217;autres marques, comme le Zumo de Garmin), existe un gps spÃ©cifique moto, le Rider pour TomTom, qui lui est compatible avec les oreillettes bluetooth, mais il se trouve Ã  un prix de 500 â‚¬.</p>
<p>De plus, ce PDA dispose du Wifi, ce qui est interessant pour pouvoir checker ses mails lors de ses dÃ©placements.</p>
<p>Je ne manquerais pas de faire une compte rendu complet dÃ¨s la rÃ©ception de celui-ci.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2007/09/04/commande-de-l-asus-mypal-696/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toutes les photos de Croix en Ternois</title>
		<link>http://www.leveilleur.net/index.php/2007/07/06/toutes-les-photos-de-croix-en-ternois/</link>
		<comments>http://www.leveilleur.net/index.php/2007/07/06/toutes-les-photos-de-croix-en-ternois/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 14:36:21 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://blog2.leveilleur.net/index.php/2007/07/06/toutes-les-photos-de-croix-en-ternois/</guid>
		<description><![CDATA[Elles sont disponibles sur la galerie&#160;: 
http://gallery.leveilleur.net/category.php?cat=78
]]></description>
			<content:encoded><![CDATA[<p>Elles sont disponibles sur la galerie&nbsp;: 
<a  href="http://gallery.leveilleur.net/category.php?cat=78" hreflang="fr" onclick="javascript:pageTracker._trackPageview('/external/gallery.leveilleur.net/category.php');" >http://gallery.leveilleur.net/category.php?cat=78</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2007/07/06/toutes-les-photos-de-croix-en-ternois/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quelques photos de Croix en Ternois</title>
		<link>http://www.leveilleur.net/index.php/2007/07/05/quelques-photos-de-croix-en-ternois/</link>
		<comments>http://www.leveilleur.net/index.php/2007/07/05/quelques-photos-de-croix-en-ternois/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 13:43:00 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://blog2.leveilleur.net/index.php/2007/07/05/quelques-photos-de-croix-en-ternois/</guid>
		<description><![CDATA[Voici quelques photos de ma premiÃ¨re sortie piste, sous pluie battante, Ã  Croix en Ternois

 
 
 
 
 

]]></description>
			<content:encoded><![CDATA[<p>Voici quelques photos de ma premiÃ¨re sortie piste, sous pluie battante, Ã  Croix en Ternois</p>
<p>
<a  href="http://www.hostipics.net/?id2=image&amp;image=2007-07/05/O1183635357imprimer1.jpg" onclick="javascript:pageTracker._trackPageview('/external/www.hostipics.net/');" ><img src="http://www.hostipics.net/files/2007-07/05/V1183635357imprimer1.jpg" alt="" /></a> 
<a  href="http://www.hostipics.net/?id2=image&amp;image=2007-07/05/O1183635357imprimer2.jpg" onclick="javascript:pageTracker._trackPageview('/external/www.hostipics.net/');" ><img src="http://www.hostipics.net/files/2007-07/05/V1183635357imprimer2.jpg" alt="" /></a> 
<a  href="http://www.hostipics.net/?id2=image&amp;image=2007-07/05/O1183635357imprimer3.jpg" onclick="javascript:pageTracker._trackPageview('/external/www.hostipics.net/');" ><img src="http://www.hostipics.net/files/2007-07/05/V1183635357imprimer3.jpg" alt="" /></a> 
<a  href="http://www.hostipics.net/?id2=image&amp;image=2007-07/05/O1183635358imprimer4.jpg" onclick="javascript:pageTracker._trackPageview('/external/www.hostipics.net/');" ><img src="http://www.hostipics.net/files/2007-07/05/V1183635358imprimer4.jpg" alt="" /></a> 
<a  href="http://www.hostipics.net/?id2=image&amp;image=2007-07/05/O1183635358imprimer5.jpg" onclick="javascript:pageTracker._trackPageview('/external/www.hostipics.net/');" ><img src="http://www.hostipics.net/files/2007-07/05/V1183635358imprimer5.jpg" alt="" /></a> 
<a  href="http://www.hostipics.net/?id2=image&amp;image=2007-07/05/O1183635393imprimer6.jpg" onclick="javascript:pageTracker._trackPageview('/external/www.hostipics.net/');" ><img src="http://www.hostipics.net/files/2007-07/05/V1183635393imprimer6.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2007/07/05/quelques-photos-de-croix-en-ternois/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Michelin rappelle 7.500 pneus Pilot Power en France</title>
		<link>http://www.leveilleur.net/index.php/2007/06/25/michelin-rappelle-7500-pneus-pilot-power-en-france/</link>
		<comments>http://www.leveilleur.net/index.php/2007/06/25/michelin-rappelle-7500-pneus-pilot-power-en-france/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 12:57:05 +0000</pubDate>
		<dc:creator>Christopher Keyaert</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://blog2.leveilleur.net/index.php/2007/06/25/michelin-rappelle-7500-pneus-pilot-power-en-france/</guid>
		<description><![CDATA[Michelin a dÃ©tectÃ© une anomalie sur certains pneus pouvant entrainer des dÃ©fauts sur la bande de roulement.Un dÃ©faut concernant uniquement les Pilot Power et Pilot Power 2CT.
Pneus&#160;: Michelin Power et Michelin Power 2ct
Taille&#160;: 120/70
Fabrication&#160;: Made In France
Inscription sur le flanc&#160;:  DOT 6UCW 980T ou DOT 6UCW 979T
TÃ©lÃ©phone France&#160;: 0820 20 63 63
TÃ©lÃ©phone Belgique&#160;: 0800 [...]]]></description>
			<content:encoded><![CDATA[<p>Michelin a dÃ©tectÃ© une anomalie sur certains pneus pouvant entrainer des dÃ©fauts sur la bande de roulement.Un dÃ©faut concernant uniquement les Pilot Power et Pilot Power 2CT.</p>
<p>Pneus&nbsp;: Michelin Power et Michelin Power 2ct<br />
Taille&nbsp;: 120/70<br />
Fabrication&nbsp;: Made In France<br />
Inscription sur le flanc&nbsp;:  DOT 6UCW 980T ou DOT 6UCW 979T</p>
<p>TÃ©lÃ©phone France&nbsp;: 0820 20 63 63<br />
TÃ©lÃ©phone Belgique&nbsp;: 0800 111 3</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leveilleur.net/index.php/2007/06/25/michelin-rappelle-7500-pneus-pilot-power-en-france/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
