<?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>Innovative Technology Weblog &#187; Stefan Stranger</title>
	<atom:link href="http://www.buit.org/author/stefan/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.buit.org</link>
	<description>Innovative Technology presented by Innovative People</description>
	<lastBuildDate>Mon, 28 Nov 2011 19:54:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Outlook RSS Feeds to HTML Blogroll</title>
		<link>http://www.buit.org/2007/07/26/outlook-rss-feeds-to-html-blogroll/</link>
		<comments>http://www.buit.org/2007/07/26/outlook-rss-feeds-to-html-blogroll/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 20:02:54 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.buit.org/2007/07/26/outlook-rss-feeds-to-html-blogroll/</guid>
		<description><![CDATA[I wanted to update my blogroll on my weblog&#160;but because I&#8217;m subscribed to quite some rss feeds I did not wanted to do this manually. There&#160;had to&#160;be an easier way to do this. And I was correct, after doing some Googling I found out that you could use XSL transformation to convert OPML to HTML. [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to update my blogroll on my <a href="http://weblog.stranger.nl/">weblog</a>&nbsp;but because I&#8217;m subscribed to quite some rss feeds I did not wanted to do this manually. There&nbsp;had to&nbsp;be an easier way to do this. And I was correct, after doing some <a href="http://nayyeri.net/archive/2007/02/17/create-a-blogroll-from-opml-files.aspx" target="_blank">Googling</a> I found out that you could use XSL transformation to convert OPML to HTML. But I&#8217;m not a XSL (EXtensible Stylesheet Language) or XML specialist but luckily I went yesterday evening to a session (TechNight) about tooling from my <a href="http://www.getronics.com" target="_blank">company</a>. And one of the tools demo-ed was <a href="http://www.altova.com/products/xmlspy/xml_editor.html" target="_blank">XML Spy</a> which I tried to use with the XSL template downloaded from <a href="http://nayyeri.net/archive/2007/02/17/create-a-blogroll-from-opml-files.aspx" target="_blank">Keyvan Nayyeri blog about creating a Blogroll from OPML Files</a>. But this template did not completely worked for Outlook exported RSS feeds <img src='http://www.buit.org/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>So after this demo I just asked who knew more about XML and XLS and with the help of&nbsp;<a href="http://www.linkedin.com/in/getronics" target="_blank">Wouter van der Harg</a>&nbsp;I&#8217;ve now XSLT (XSL Transformations) which transforms the Outlook OPML file to a Blogroll HTML file. Kudos&#8217;&nbsp;to Wouter!</p>
<p>So here are the steps for creating a Blogroll from your Outlook RSS feeds.</p>
<ol>
<li>Use the Outlook Import and Export Wizard to Export your RSS Feeds to an OPML file.
<li>Rename the *.opml file to *.xml
<li>Open in XML Spy (or an other <a href="http://xmlcooktop.com/update/" target="_blank">XML editor</a>) the Exported RSS Feeds XML.
<li>Assign the XSL Template to the Exported RSS Feeds XML file.<br /><a href="http://www.buit.org/wp-content/uploads/2007/07/windowslivewriteroutlookrssfeedstoblogroll-12f66xml-spy-14.png" atomicselection="true" rel="lightbox[229]"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="219" src="http://www.buit.org/wp-content/uploads/2007/07/windowslivewriteroutlookrssfeedstoblogroll-12f66xml-spy-1-thumb4.png" width="640" border="0"></a>
<li>Click on XSL Transformation and your Blogroll is created.</li>
</ol>
<p>&nbsp;</p>
<p>XSL Template</p>
<pre><span style="color: blue">&lt;?</span><span style="color: maroon">xml</span> <span style="color: red">version</span>="<span style="color: blue">1.0</span>" <span style="color: red">encoding</span>="<span style="color: blue">UTF-8</span>"<span style="color: blue">?&gt;</span>
<span style="color: blue">&lt;</span><span style="color: maroon">xsl:stylesheet</span> <span style="color: red">xmlns:xsl</span>="<span style="color: blue">http://www.w3.org/1999/XSL/Transform</span>" <span style="color: red">xmlns</span>="<span style="color: blue">http://www.w3.org/1999/xhtml</span>" <span style="color: red">version</span>="<span style="color: blue">1.0</span>"<span style="color: blue">&gt;</span>
	<span style="color: blue">&lt;</span><span style="color: maroon">xsl:output</span> <span style="color: red">method</span>="<span style="color: blue">xml</span>" <span style="color: red">version</span>="<span style="color: blue">1.0</span>" <span style="color: red">encoding</span>="<span style="color: blue">UTF-8</span>" <span style="color: red">omit-xml-declaration</span>="<span style="color: blue">no</span>" <span style="color: red">indent</span>="<span style="color: blue">yes</span>"/<span style="color: blue">&gt;</span>
	<span style="color: blue">&lt;</span><span style="color: maroon">xsl:template</span> <span style="color: red">match</span>="<span style="color: blue">/opml</span>"<span style="color: blue">&gt;</span>
		<span style="color: blue">&lt;</span><span style="color: maroon">xsl:text</span> <span style="color: red">disable-output-escaping</span>="<span style="color: blue">yes</span>"<span style="color: blue">&gt;</span><span style="color: blue">&lt;</span>![CDATA[
		<span style="color: blue">&lt;</span>!DOCTYPE html PUBLIC "<span style="color: blue">-//W3C//DTD XHTML 1.0 Strict//EN</span>" "<span style="color: blue">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</span>"<span style="color: blue">&gt;</span>
		]]<span style="color: blue">&gt;</span><span style="color: blue">&lt;</span>/<span style="color: maroon">xsl:text</span><span style="color: blue">&gt;</span>
		<span style="color: blue">&lt;</span><span style="color: maroon">html</span> <span style="color: red">xml:lang</span>="<span style="color: blue">en</span>"<span style="color: blue">&gt;</span>
			<span style="color: blue">&lt;</span><span style="color: maroon">head</span><span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span><span style="color: maroon">meta</span> <span style="color: red">http-equiv</span>="<span style="color: blue">Content-Type</span>" <span style="color: red">content</span>="<span style="color: blue">text/html; charset=UTF-8</span>" /<span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span><span style="color: maroon">title</span><span style="color: blue">&gt;</span>
					<span style="color: blue">&lt;</span><span style="color: maroon">xsl:value-of</span> <span style="color: red">select</span>="<span style="color: blue">head/title/text()</span>" /<span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span>/<span style="color: maroon">title</span><span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span><span style="color: maroon">style</span> <span style="color: red">type</span>="<span style="color: blue">text/css</span>"<span style="color: blue">&gt;</span>
					a:link, a:active, a:visited, a:hover
					{
						color: #ce0000;
						text-decoration: none;
					}
				<span style="color: blue">&lt;</span>/<span style="color: maroon">style</span><span style="color: blue">&gt;</span>
			<span style="color: blue">&lt;</span>/<span style="color: maroon">head</span><span style="color: blue">&gt;</span>
			<span style="color: blue">&lt;</span><span style="color: maroon">body</span><span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span><span style="color: maroon">h1</span><span style="color: blue">&gt;</span>
					<span style="color: blue">&lt;</span><span style="color: maroon">xsl:value-of</span> <span style="color: red">select</span>="<span style="color: blue">head/title/text()</span>" /<span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span>/<span style="color: maroon">h1</span><span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span><span style="color: maroon">ul</span><span style="color: blue">&gt;</span>
					<span style="color: blue">&lt;</span><span style="color: maroon">xsl:apply-templates</span> <span style="color: red">select</span>="<span style="color: blue">body/outline</span>"<span style="color: blue">&gt;</span>
					<span style="color: blue">&lt;</span><span style="color: maroon">xsl:sort</span> <span style="color: red">select</span>="<span style="color: blue">@text</span>" <span style="color: red">data-type</span>="<span style="color: blue">text</span>" <span style="color: red">order</span>="<span style="color: blue">ascending</span>" <span style="color: red">case-order</span>="<span style="color: blue">upper-first</span>"/<span style="color: blue">&gt;</span>
					<span style="color: blue">&lt;</span>/<span style="color: maroon">xsl:apply-templates</span><span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span>/<span style="color: maroon">ul</span><span style="color: blue">&gt;</span>
			<span style="color: blue">&lt;</span>/<span style="color: maroon">body</span><span style="color: blue">&gt;</span>
		<span style="color: blue">&lt;</span>/<span style="color: maroon">html</span><span style="color: blue">&gt;</span>
	<span style="color: blue">&lt;</span>/<span style="color: maroon">xsl:template</span><span style="color: blue">&gt;</span>
	<span style="color: blue">&lt;</span><span style="color: maroon">xsl:template</span> <span style="color: red">match</span>="<span style="color: blue">outline</span>"<span style="color: blue">&gt;</span>
		<span style="color: blue">&lt;</span><span style="color: maroon">li</span><span style="color: blue">&gt;</span>
			<span style="color: blue">&lt;</span><span style="color: maroon">xsl:attribute</span> <span style="color: red">name</span>="<span style="color: blue">class</span>"<span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span><span style="color: maroon">xsl:value-of</span> <span style="color: red">select</span>="<span style="color: blue">@type</span>" /<span style="color: blue">&gt;</span>
			<span style="color: blue">&lt;</span>/<span style="color: maroon">xsl:attribute</span><span style="color: blue">&gt;</span>
			<span style="color: blue">&lt;</span>a<span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span><span style="color: maroon">xsl:attribute</span> <span style="color: red">name</span>="<span style="color: blue">href</span>"<span style="color: blue">&gt;</span>
					<span style="color: blue">&lt;</span><span style="color: maroon">xsl:value-of</span> <span style="color: red">select</span>="<span style="color: blue">@htmlUrl</span>" /<span style="color: blue">&gt;</span>
					<span style="color: blue">&lt;</span><span style="color: maroon">xsl:if</span> <span style="color: red">test</span>="<span style="color: blue">not(@htmlUrl)</span>"<span style="color: blue">&gt;</span>
						<span style="color: blue">&lt;</span><span style="color: maroon">xsl:value-of</span> <span style="color: red">select</span>="<span style="color: blue">@xmlUrl</span>" /<span style="color: blue">&gt;</span>
					<span style="color: blue">&lt;</span>/<span style="color: maroon">xsl:if</span><span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span>/<span style="color: maroon">xsl:attribute</span><span style="color: blue">&gt;</span>
				<span style="color: blue">&lt;</span><span style="color: maroon">xsl:value-of</span> <span style="color: red">select</span>="<span style="color: blue">@text</span>" /<span style="color: blue">&gt;</span>
			<span style="color: blue">&lt;</span>/<span style="color: maroon">a</span><span style="color: blue">&gt;</span>
		<span style="color: blue">&lt;</span>/<span style="color: maroon">li</span><span style="color: blue">&gt;</span>
	<span style="color: blue">&lt;</span>/<span style="color: maroon">xsl:template</span><span style="color: blue">&gt;</span>
<span style="color: blue">&lt;</span>/<span style="color: maroon">xsl:stylesheet</span><span style="color: blue">&gt;</span></pre>
<p>Regards,<br />Stefan Stranger<br /><a href="http://weblog.stranger.nl">http://weblog.stranger.nl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2007/07/26/outlook-rss-feeds-to-html-blogroll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware ESX3 server running within VMware Workstation 6</title>
		<link>http://www.buit.org/2007/06/06/vmware-esx3-server-running-within-vmware-workstation-6/</link>
		<comments>http://www.buit.org/2007/06/06/vmware-esx3-server-running-within-vmware-workstation-6/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 20:45:44 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.buit.org/2007/06/06/vmware-esx3-server-running-within-vmware-workstation-6/</guid>
		<description><![CDATA[Source: xtravirt Paul Davey from xtravirt wrote a Guide to installing VMware ESX3 on workstation 6. &#8220;This paper illustrates how to install and configure VMware ESX3 Server to run within VMware Workstation 6.&#160;From this, VirtualCenter, VMotion, HA and DRS features can be configured. Although performance is significantly reduced from that of a physical server, this [...]]]></description>
			<content:encoded><![CDATA[<p>Source: <a href="http://www.xtravirt.com/index.php?option=com_content&amp;task=view&amp;id=60&amp;Itemid=118" target="_blank">xtravirt</a></p>
<p>Paul Davey from xtravirt wrote a <a href="http://www.xtravirt.com/index.php?option=com_remository&amp;Itemid=75&amp;func=startdown&amp;id=9" target="_blank">Guide to installing VMware ESX3 on workstation 6</a>.</p>
<p>&#8220;This paper illustrates how to install and configure VMware ESX3 Server to run within VMware Workstation 6.&nbsp;From this, VirtualCenter, VMotion, HA and DRS features can be configured. </p>
<p>Although performance is significantly reduced from that of a physical server, this type of environment opens considerable possibilities for portable client demonstrations and is excellent for self training and small lab environments.
<p>This paper assumes the reader has good technical knowledge of VMWare Virtual Infrastructure 3. The paper assumes that you know how to install the VirtualCenter2, License Server and Virtual Infrastructure Client.
<p>The hardware used in this whitepaper was an IBM Thinkpad T60P laptop, Core Duo, 3GB memory, 120GB SATA Hard Disk.
<p><strong>Note:</strong>&nbsp;Intel CPU(s) on the hardware running Workstation 6 must have the VT technology or the performance of ESX&nbsp;will be very poor.&nbsp; It is believed that the same applies with AMD chips with AMD-V compatible CPU&#8217;s being recommended,&nbsp;although&nbsp;it is currently untested by us on this platform.&#8221;
<p>Regards,<br />Stefan Stranger<br /><a href="http://weblog.stranger.nl">http://weblog.stranger.nl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2007/06/06/vmware-esx3-server-running-within-vmware-workstation-6/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Does virtualization makes monitoring obsolete?</title>
		<link>http://www.buit.org/2007/02/26/does-virtualization-makes-monitoring-obsolete/</link>
		<comments>http://www.buit.org/2007/02/26/does-virtualization-makes-monitoring-obsolete/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 20:09:32 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[System Center]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.buit.org/2007/02/26/does-virtualization-makes-monitoring-obsolete/</guid>
		<description><![CDATA[Last week I was in session about virtualization and one question kept running through my mind. â€œWhat will be the impact of Virtualization on Monitoring?â€? At first you would think that not much will change if you monitor virtual machines instead of physical machines. But the way virtualization has taken off and the more virtualization [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I was in session about virtualization and one question kept running through my mind. â€œWhat will be the impact of Virtualization on Monitoring?â€? At first you would think that not much will change if you monitor virtual machines instead of physical machines. But the way virtualization has taken off and the more virtualization is used this must change the way we monitor today. Let starts with some of my experiences with virtualization.</p>
<p>Read more <a target="_blank" href="http://www.buit.org/does-virtualization-makes-monitoring-obsolete/">here</a>.</p>
<p>Please let me know if you agree or disagree.Â  I really like to receive your comments!</p>
<p>Regards,<br />
Stefan Stranger<br />
<a href="http://weblog.stranger.nl/"><font color="#669966">http://weblog.stranger.nl</font></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2007/02/26/does-virtualization-makes-monitoring-obsolete/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Vista Planning Query using the SMS database</title>
		<link>http://www.buit.org/2007/02/08/vista-planning-query-using-the-sms-database/</link>
		<comments>http://www.buit.org/2007/02/08/vista-planning-query-using-the-sms-database/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 08:07:13 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.buit.org/2007/02/08/vista-planning-query-using-the-sms-database/</guid>
		<description><![CDATA[Enhansoft created a SQL Query that will help you detemine the number of workstations with issues deploying Vista. Or you could use theÂ GSA Isn&#8217;t that right Rob? Regards, Stefan Stranger http://weblog.stranger.nl]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.enhansoft.com/index_files/FreeTools.htm">Enhansoft</a> created a SQL Query that will help you detemine the number of workstations with issues deploying Vista.</p>
<p>Or you could use theÂ GSA <img src='http://www.buit.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Isn&#8217;t that right Rob?</p>
<p>Regards,<br />
Stefan Stranger<br />
<a href="http://weblog.stranger.nl">http://weblog.stranger.nl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2007/02/08/vista-planning-query-using-the-sms-database/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Amnesty Generator will generate a new Sidebar gadget with the click of a button.</title>
		<link>http://www.buit.org/2007/02/06/amnesty-generator-will-generate-a-new-sidebar-gadget-with-the-click-of-a-button/</link>
		<comments>http://www.buit.org/2007/02/06/amnesty-generator-will-generate-a-new-sidebar-gadget-with-the-click-of-a-button/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 21:18:21 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.buit.org/2007/02/06/amnesty-generator-will-generate-a-new-sidebar-gadget-with-the-click-of-a-button/</guid>
		<description><![CDATA[Source: Bink.nu Easily convert millions of web widgets, games and videos â€“ designed to live on home pages, blogs or MySpace â€“ into gadgets for your Sidebar. If you like widgets on the web, youâ€™ll love them on your Sidebar. Key Features Now you can place Google gadgets, Grazr RSS readers, YouTube videos and more [...]]]></description>
			<content:encoded><![CDATA[<p>Source: <a href="http://bink.nu/Article9463.bink" target="_blank">Bink.nu</a></p>
<p>Easily convert millions of web widgets, games and videos â€“ designed to live on home pages, blogs or MySpace â€“ into gadgets for your Sidebar. If you like widgets on the web, youâ€™ll love them on your Sidebar.</p>
<p><strong>Key Features</strong>
<p>Now you can place Google gadgets, Grazr RSS readers, YouTube videos and more onto your Sidebar.
<p>Copy and paste the HTML code for a web widget directly into Amnesty Generator and generate a new Sidebar gadget with the click of a button.
<ol>
<li>
<p>â˜…Create gadgets without any coding experience</p>
<li>
<p>â˜…Autofill feature does the work for you</p>
<li>
<p>â˜…Inline step-by-step instructions included</p>
<li>
<p>â˜…Supports Flash widgets, games and video</p>
</li>
</ol>
<p><strong>System Requirements</strong>
<p>Amnesty Generator is designed for Windows.
<ol>
<li>
<p>â˜…Windows Vista</p>
<li>
<p>â˜…Adobe Flash Player (recommended)</p>
</li>
</ol>
<p>Read more at <a href="http://amnesty.mesadynamics.com/GeneratorWin.html" target="_blank">Amnesty Widgets</a>.
<p>Regards,<br />Stefan Stranger<br /><a href="http://weblog.stranger.nl">http://weblog.stranger.nl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2007/02/06/amnesty-generator-will-generate-a-new-sidebar-gadget-with-the-click-of-a-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radio interview of Pauwl Lunow on BNR (Dutch) about Vista</title>
		<link>http://www.buit.org/2007/02/02/radio-interview-of-pauwl-lunow-on-bnr-dutch-about-vista/</link>
		<comments>http://www.buit.org/2007/02/02/radio-interview-of-pauwl-lunow-on-bnr-dutch-about-vista/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 08:39:15 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.buit.org/2007/02/02/radio-interview-of-pauwl-lunow-on-bnr-dutch-about-vista/</guid>
		<description><![CDATA[Yesterday evening Pauwl Lunow was interviewed by BNR Nieuwsradio about Vista. You can listen to this radio program on BNR. Regards, Stefan Stranger http://weblog.stranger.nl]]></description>
			<content:encoded><![CDATA[<p>Yesterday evening Pauwl Lunow was interviewed by BNR Nieuwsradio about Vista. You can listen to this radio program on <a title="Weblog | De electronische eeuw" href="http://www.bnr.nl/Weblog.asp?WeblogId=16" target="_blank"><font color="#669966">BNR</font></a>.</p>
<p>Regards,<br />
Stefan Stranger<br />
<a href="http://weblog.stranger.nl/"><font color="#669966">http://weblog.stranger.nl</font></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2007/02/02/radio-interview-of-pauwl-lunow-on-bnr-dutch-about-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Exchange Server 2007 VHD &#8211; 32-bit version</title>
		<link>http://www.buit.org/2007/01/24/microsoft-exchange-server-2007-vhd-32-bit-version/</link>
		<comments>http://www.buit.org/2007/01/24/microsoft-exchange-server-2007-vhd-32-bit-version/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 08:53:50 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.buit.org/2007/01/24/microsoft-exchange-server-2007-vhd-32-bit-version/</guid>
		<description><![CDATA[A Pre-configured Virtual Machine with Exchange Server 2007. This download comes as a pre-configured VHD. This download enables you evaluate how Microsoft Exchange Server 2007 and Microsoft Office Live Communications Server 2005 together can help create an optimized messaging system for your organization. Go to Microsoft Download Center. Regards,Stefan Strangerhttp://weblog.stranger.nl]]></description>
			<content:encoded><![CDATA[</p>
<p>A Pre-configured Virtual Machine with Exchange Server 2007.</p>
<p>This download comes as a pre-configured VHD. This download enables you evaluate how Microsoft Exchange Server 2007 and Microsoft Office Live Communications Server 2005 together can help create an optimized messaging system for your organization.</p>
<p>Go to <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6e6501f6-481a-4117-bc22-c745400bcda0&amp;DisplayLang=en" target="_blank">Microsoft Download Center</a>.</p>
<p>Regards,<br />Stefan Stranger<br /><a href="http://weblog.stranger.nl">http://weblog.stranger.nl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2007/01/24/microsoft-exchange-server-2007-vhd-32-bit-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For those who are not Vista Certified yet</title>
		<link>http://www.buit.org/2007/01/21/for-those-who-are-not-vista-certified-yet/</link>
		<comments>http://www.buit.org/2007/01/21/for-those-who-are-not-vista-certified-yet/#comments</comments>
		<pubDate>Sun, 21 Jan 2007 20:31:33 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.buit.org/2007/01/21/for-those-who-are-not-vista-certified-yet/</guid>
		<description><![CDATA[I found the next site (running on Drupal) for those who are beginners to Vista. No not Rob Molenaar and Kevin Reeuwijk;-) Vista4Beginners.com: Mission Statement Microsoft&#8217;s new operating system &#8211; Windows Vista brings lots of new features and changes compared to Windows XP. Some of them are significant and some or not. The transition from [...]]]></description>
			<content:encoded><![CDATA[<p>I found the next <a title="Vista4beginners" href="http://www.vista4beginners.com" target="_blank">site</a> (running on Drupal) for those who are beginners to Vista. No not Rob Molenaar and Kevin Reeuwijk;-)</p>
<p>Vista4Beginners.com:</p>
<p><strong>Mission Statement</strong></p>
<p>Microsoft&#8217;s new operating system &#8211; Windows Vista brings lots of new features and changes compared to Windows XP. Some of them are significant and some or not. The transition from Windows XP to Windows Vista is a big step for everybody. Even so, IT professionals will learn and adopt Vista faster than most people. But what about normal people, who are not working in the IT business? After years of working with Windows XP, Vista might be much too different and difficult to use.</p>
<p><em>Vista4beginners.com</em> is here to help you. The team behind this site will try to provide simple and easy to understand tutorials about Windows Vista. We will try to cover as much topics as possible, starting with the most simple things like playing music on your Vista PC. You will see the site expand continuously as we will try to include as much content as possible.</p>
<p>Regards,<br />
Stefan Stranger</p>
<p>http://weblog.stranger.nl</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2007/01/21/for-those-who-are-not-vista-certified-yet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Interested in Architecture?</title>
		<link>http://www.buit.org/2006/12/09/interested-in-architecture/</link>
		<comments>http://www.buit.org/2006/12/09/interested-in-architecture/#comments</comments>
		<pubDate>Sat, 09 Dec 2006 20:26:45 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.buit.org/2006/12/09/interested-in-architecture/</guid>
		<description><![CDATA[If you are interested in Architecture you should look at the Microsoft Architecture Resource Center. You can find the lastest articles from the Microsoft Architecture Journal and much more. I hope I find time to finish reading my TOGAF book &#160; Regards,Stefan Strangerhttp://weblog.stranger]]></description>
			<content:encoded><![CDATA[<p>If you are interested in Architecture you should look at the <a href="http://www.microsoft.com/architecture/" target="_blank">Microsoft Architecture Resource Center.</a> You can find the lastest articles from the <a href="http://www.msarchitecturejournal.com/">Microsoft Architecture Journal</a> and much more.</p>
<p>I hope I find time to finish reading my <a href="http://www.togaf.org/" target="_blank">TOGAF</a> book <img src='http://www.buit.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>Regards,<br />Stefan Stranger<br /><a href="http://weblog.stranger">http://weblog.stranger</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2006/12/09/interested-in-architecture/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vista Lite with vLite</title>
		<link>http://www.buit.org/2006/11/30/vista-lite-with-vlite/</link>
		<comments>http://www.buit.org/2006/11/30/vista-lite-with-vlite/#comments</comments>
		<pubDate>Thu, 30 Nov 2006 12:10:09 +0000</pubDate>
		<dc:creator>Stefan Stranger</dc:creator>
				<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.buit.org/2006/11/30/vista-lite-with-vlite/</guid>
		<description><![CDATA[Source: Techlog Windows Vista from Microsoft takes a lot of resources, we all know that. So here is the tool for easy removal of unwanted components and bootable ISO creation in order to make Vista run faster and to your liking. This tool doesn&#8217;t use any kind of hacking, all files and registry entries are [...]]]></description>
			<content:encoded><![CDATA[<p>Source: <a href="http://www.techlog.nl/archive/2006/11/30/vlite_v06_beta" target="_blank">Techlog</a></p>
<p>Windows Vista from Microsoft takes a lot of resources, we all know that. So here is the tool for easy removal of unwanted components and bootable ISO creation in order to make Vista run faster and to your liking.<br />
This tool doesn&#8217;t use any kind of hacking, all files and registry entries are in their original form and protected as they would be if you install the full version only without the components you select for the removal.<br />
It configures the installation directly, before the installation, meaning you&#8217;ll have to remake the ISO and reinstall it. This method is much cleaner, not to mention easier and more logical than doing it after installation on every reinstall.</p>
<p>Read more at <a href="http://www.vlite.net/index.html" target="_blank">vLite</a></p>
<p>Regards,<br />
Stefan Stranger<br />
<a href="http://weblog.stranger.nl">http://weblog.stranger.nl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2006/11/30/vista-lite-with-vlite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

