<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Arogl Darthu's Blog - Infra</title>
    <link>http://blog.arogldarthu.nl/</link>
    <description>profound astoundment</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <pubDate>Mon, 26 Feb 2007 13:15:55 GMT</pubDate>

    <image>
        <url>http://blog.arogldarthu.nl/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Arogl Darthu's Blog - Infra - profound astoundment</title>
        <link>http://blog.arogldarthu.nl/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>BIOS IDE Detection Hell</title>
    <link>http://blog.arogldarthu.nl/archives/8-BIOS-IDE-Detection-Hell.html</link>
            <category>Infra</category>
    
    <comments>http://blog.arogldarthu.nl/archives/8-BIOS-IDE-Detection-Hell.html#comments</comments>
    <wfw:comment>http://blog.arogldarthu.nl/wfwcomment.php?cid=8</wfw:comment>

    <slash:comments>6</slash:comments>
    <wfw:commentRss>http://blog.arogldarthu.nl/rss.php?version=2.0&amp;type=comments&amp;cid=8</wfw:commentRss>
    

    <author>nospam@example.com (Twan Jacobs)</author>
    <content:encoded>
    OK, I admit... It&#039;s been a while since I put together a PC. But this is really too weird. At startup, even before having an OS installed, there was a tremendous delay when the BIOS tried to detect the IDE devices. Just two, a hard disk drive on the primary and a CDROM on the secondary. How hard can that be to detect?&lt;br /&gt;
&lt;br /&gt;
Well appearently very hard, because the waiting started to bother me from the first boot I had to make. So you start tweaking the BIOS settings. The &lt;a href=&quot;http://www.techarp.com/bog.aspx&quot;  title=&quot;BOG&quot;&gt;BIOS Optimization Guide&lt;/a&gt; seemed a good place to start. But allas, whatever I tried it was of no use.&lt;br /&gt;
&lt;br /&gt;
Hours later, after searching the web for known issues with my drives and/or mobo, I finally keyed the right phrase into google and asked &lt;a href=&quot;http://www.google.nl/search?hl=nl&amp;client=firefox-a&amp;channel=s&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=gji&amp;q=slow+boot+in+bios&amp;btnG=Zoeken&amp;meta=&quot;  title=&quot;Direct Hit&quot;&gt;&#039;slow boot in bios&#039;&lt;/a&gt;. And there my answer was, only one click and some scrolling away. &lt;a href=&quot;http://www.computing.net/windowsxp/wwwboard/forum/136748.html&quot;  title=&quot;Bingo&quot;&gt;Googles first result&lt;/a&gt;, opened a discussion thread called &#039;Slow Booting&#039; and hidden under &#039;Response Number 6&#039; I found what I was looking for.&lt;br /&gt;
&lt;br /&gt;
Hold on: the jumpers on the IDE devices need to be set to &lt;strong&gt;cable select&lt;/strong&gt;. The setting &lt;strong&gt;master&lt;/strong&gt; is not good enough anymore. Why, why, WHY!? 
    </content:encoded>

    <pubDate>Fri, 23 Feb 2007 22:28:22 +0000</pubDate>
    <guid isPermaLink="false">http://blog.arogldarthu.nl/archives/8-guid.html</guid>
    
</item>
<item>
    <title>Multiple websites in IIS on WinXP Pro</title>
    <link>http://blog.arogldarthu.nl/archives/6-Multiple-websites-in-IIS-on-WinXP-Pro.html</link>
            <category>Infra</category>
    
    <comments>http://blog.arogldarthu.nl/archives/6-Multiple-websites-in-IIS-on-WinXP-Pro.html#comments</comments>
    <wfw:comment>http://blog.arogldarthu.nl/wfwcomment.php?cid=6</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.arogldarthu.nl/rss.php?version=2.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    

    <author>nospam@example.com (Twan Jacobs)</author>
    <content:encoded>
    Something a lot of developers crave for, is to be able to run multiple websites in IIS on a WinXP Pro machine. I always thought this to be impossible... But there is (sort of) a solution. You can achieve to have multiple websites on WinXP Pro, with one drawback: only one website can run at a time. How?&lt;br /&gt;
&lt;br /&gt;
Open a command window and type:&lt;br /&gt;
&lt;div class=&quot;dos&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;C:\Inetpub\AdminScripts&amp;gt; adsutil.vbs create_vserv W3SVC/&lt;span style=&quot;color: #cc66cc;&quot;&gt;2&lt;/span&gt;&lt;br /&gt;C:\Inetpub\AdminScripts&amp;gt; adsutil.vbs &lt;a href=&quot;http://www.ss64.com/nt/copy.html&quot;&gt;&lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;copy&lt;/span&gt;&lt;/a&gt; W3SVC/&lt;span style=&quot;color: #cc66cc;&quot;&gt;1&lt;/span&gt; W3SVC/&lt;span style=&quot;color: #cc66cc;&quot;&gt;2&lt;/span&gt; &lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
The first command creates a new virtual server in the IIS metabase. The second command copies all the necessary meta data from your default Web site to the new Web site to make it work properly.&lt;br /&gt;
&lt;br /&gt;
Thanks to &lt;a href=&quot;http://weblogs.asp.net/stevencohn/articles/59782.aspx&quot;  target=&quot;_blank&quot; title=&quot;Read all about it on Steven&#039;s blog&quot;&gt;Steven M. Cohn&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Thu, 14 Dec 2006 10:45:50 +0000</pubDate>
    <guid isPermaLink="false">http://blog.arogldarthu.nl/archives/6-guid.html</guid>
    
</item>

</channel>
</rss>