<?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>TechBlog &#187; Operating Systems</title>
	<atom:link href="http://techblog.byllemos.com/tag/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.byllemos.com</link>
	<description>Accelerating into the Future with Wisdom about Technology! Ingrid Byllemos</description>
	<lastBuildDate>Tue, 05 Jan 2010 00:04:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Windows Runtime Debugger</title>
		<link>http://techblog.byllemos.com/2009/04/windows-runtime-debugger/</link>
		<comments>http://techblog.byllemos.com/2009/04/windows-runtime-debugger/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 19:26:48 +0000</pubDate>
		<dc:creator>iby</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Debugger]]></category>

		<guid isPermaLink="false">http://techblog.byllemos.com/?p=234</guid>
		<description><![CDATA[<p>If you have installed Visual Studio you will notice the Windows Runtime Debugger has been replaced with the &#8220;Just-In-Time Debugger&#8221;. Sometimes this is Ok, but if you are running jobs that need to be running silence, then this is not&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>If you have installed Visual Studio you will notice the Windows Runtime Debugger has been replaced with the &#8220;Just-In-Time Debugger&#8221;. Sometimes this is Ok, but if you are running jobs that need to be running silence, then this is not always a good thing. </p>
<p>So what to do? Just change the Windows Runtime Debugger back to Dr Watson. You can do this by using the command <strong>drwtsn32 -i</strong>. Just run it in a command prompt and the Windows Runtime Debugger is back to Dr. Watson.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.byllemos.com/2009/04/windows-runtime-debugger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reconfiguring a 64bit IIS to use 32bit ASP</title>
		<link>http://techblog.byllemos.com/2008/09/reconfiguring-a-64bit-iis-to-32bit-asp/</link>
		<comments>http://techblog.byllemos.com/2008/09/reconfiguring-a-64bit-iis-to-32bit-asp/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 19:45:02 +0000</pubDate>
		<dc:creator>iby</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[ExpandIT]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Online Connector]]></category>
		<category><![CDATA[Operating Systems]]></category>

		<guid isPermaLink="false">http://techblog.byllemos.com/?p=71</guid>
		<description><![CDATA[<p>I just installed the <a title="ExpandIT" href="http://www.expandit.dk/" target="_blank">ExpandIT</a> Online Connector on a Server which is running the 64bit version of Windows 2003.</p>
<p>The Installation went well &#8211; and everything seams to be running &#8211; until I noticed, that the ASP&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I just installed the <a title="ExpandIT" href="http://www.expandit.dk/" target="_blank">ExpandIT</a> Online Connector on a Server which is running the 64bit version of Windows 2003.</p>
<p>The Installation went well &#8211; and everything seams to be running &#8211; until I noticed, that the ASP pages could not use the ActiveX object for the ExpandIT Online Connector.</p>
<p><span id="more-71"></span>After doing some tests, I found out that the reason was that the Internet Information Services (IIS) was using ASP.NET in a 64bit version and not in 32bit version.</p>
<p>So what to do? You can reconfigure the IIS to use the 32bit version of ASP.NET <img src='http://techblog.byllemos.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>This is done in the following steps:</p>
<blockquote><p>1) Start the command prompt (Start -&gt; Run -&gt; CMD)</p></blockquote>
<blockquote><p>2) Then enable the 32-bit mode by using the following command:</p>
<p>cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1</p></blockquote>
<blockquote><p>3) Install the 32 bit version of ASP.NET:</p>
<p>To install ASP.NET 1.1. use the following command:<br />
%SYSTEMROOT%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i</p>
<p>To install ASP.NET 2.0 use this command:<br />
%SYSTEMROOT%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i</p>
<p>I would recommend only to install the ASP.NET 2.0 -  ASP.NET 1.1 is not needed <img src='http://techblog.byllemos.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p></blockquote>
<blockquote><p>4) Finaly you have to enable the use of ASP, by going to the Web service extension list in Internet Information Services Manager and setting the ASP to allowed.</p></blockquote>
<p>Now you should be able to use ExpandIT Online Connector on the server <img src='http://techblog.byllemos.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.byllemos.com/2008/09/reconfiguring-a-64bit-iis-to-32bit-asp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XP with 4 GB RAM</title>
		<link>http://techblog.byllemos.com/2008/03/xp-with-4-gb-ram/</link>
		<comments>http://techblog.byllemos.com/2008/03/xp-with-4-gb-ram/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 22:52:20 +0000</pubDate>
		<dc:creator>iby</dc:creator>
				<category><![CDATA[XP]]></category>
		<category><![CDATA[3GB]]></category>
		<category><![CDATA[4GB]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[PAE]]></category>
		<category><![CDATA[Ram]]></category>

		<guid isPermaLink="false">http://techblog.byllemos.com/?p=48</guid>
		<description><![CDATA[<p>Many people will tell you that it is not possible to run at 32 bit version of XP with more than 3 GB Ram. They say that XP would not recognize the Ram above the 3 GB &#8211; actually for&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Many people will tell you that it is not possible to run at 32 bit version of XP with more than 3 GB Ram. They say that XP would not recognize the Ram above the 3 GB &#8211; actually for most of you XP will show the 3 GB as 2,5.</p>
<p><span id="more-48"></span><br />
They are wrong! XP is a 32 bit version, which means it supports up till 4 GB. Just do a little calculation and you will see that I am right in my suggestion.</p>
<blockquote><p>2<sup>32</sup> = 4.294.967.296</p>
<p>4.294.967.296 / (1.024 x 1.024) = 4.096</p></blockquote>
<p>To get XP to recognize the remaining Ram you have to do a little trick. In the boot.ini (hidden file, which is found in the root of c) you have to add some new switches /3GB and /PAE.</p>
<p>Per default the user-mode memory space is limited to 2 GB with the /3GB it will be limited to 3 GB. This switch is a feature from the Windows 2000 / 20003 servers and was introduced to XP, so that device-driver developers could test their drivers without have to install a Windows server.</p>
<p>Note this switch should be used with caution; it can cause applications to have address dependencies related problems. Also it can cause an error with Active Directories (resource starvation). Though, these problems are mostly seen on a Windows 2003 Server.</p>
<p>By using the /PAE switch, it will let your device drivers use the Ram up till the 4 GB.</p>
<p>These changes may not work on all chipsets, cpu&#8217;s, motherboards. But after I enabled the switches, I&#8217;m able to see 3,5 GB and it seams that XP is using the ram above the 3 GB when I am looking on the usages in the Task Manager <img src='http://techblog.byllemos.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.byllemos.com/2008/03/xp-with-4-gb-ram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View your IP address</title>
		<link>http://techblog.byllemos.com/2007/10/view-your-ip-address/</link>
		<comments>http://techblog.byllemos.com/2007/10/view-your-ip-address/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 15:18:50 +0000</pubDate>
		<dc:creator>iby</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://techblog.byllemos.com/?p=12</guid>
		<description><![CDATA[<p>A quick way to view your IP address is by using the command IPCONFIG.</p>
<p>Just start a command prompt:</p>
<blockquote><p>Start -&#62; Run -&#62; Cmd</p></blockquote>
<p>and then type:</p>
<p><span id="more-12"></span></p>
<blockquote><p>IPCONFIG /ALL</p></blockquote>
<p>In case of you want to change you IP (works&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>A quick way to view your IP address is by using the command IPCONFIG.</p>
<p>Just start a command prompt:</p>
<blockquote><p>Start -&gt; Run -&gt; Cmd</p></blockquote>
<p>and then type:</p>
<p><span id="more-12"></span></p>
<blockquote><p>IPCONFIG /ALL</p></blockquote>
<p>In case of you want to change you IP (works only when you are running DHCP) &#8211; you can do i by using a release in combination with a renew.</p>
<blockquote><p>IPCONFIG /RELEASE</p>
<p>IPCONFIG /RENEW</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://techblog.byllemos.com/2007/10/view-your-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Usefull XP shortcuts</title>
		<link>http://techblog.byllemos.com/2007/10/usefull-xp-shortcuts/</link>
		<comments>http://techblog.byllemos.com/2007/10/usefull-xp-shortcuts/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 15:46:50 +0000</pubDate>
		<dc:creator>iby</dc:creator>
				<category><![CDATA[XP]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://techblog.byllemos.com/?p=13</guid>
		<description><![CDATA[<p>Here are some usefull XP shortcuts:</p>
<p><span id="more-13"></span></p>
<table>
<tr>
<td width="200"><strong>Shortcut</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td>CTRL+C</td>
<td>Copy</td>
</tr>
<tr>
<td>CTRL+X</td>
<td>Cut</td>
</tr>
<tr>
<td>CTRL+V</td>
<td>Paste</td>
</tr>
<tr>
<td>CTRL+Z</td>
<td>Undo</td>
</tr>
<tr>
<td>F2 key</td>
<td>Rename the selected item</td>
</tr>
<tr>
<td>CTRL+A</td>
<td>Select</td></tr></table><p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Here are some usefull XP shortcuts:</p>
<p><span id="more-13"></span></p>
<table>
<tr>
<td width="200"><strong>Shortcut</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td>CTRL+C</td>
<td>Copy</td>
</tr>
<tr>
<td>CTRL+X</td>
<td>Cut</td>
</tr>
<tr>
<td>CTRL+V</td>
<td>Paste</td>
</tr>
<tr>
<td>CTRL+Z</td>
<td>Undo</td>
</tr>
<tr>
<td>F2 key</td>
<td>Rename the selected item</td>
</tr>
<tr>
<td>CTRL+A</td>
<td>Select all</td>
</tr>
<tr>
<td>F3 key</td>
<td>Search for a file or a folder</td>
</tr>
<tr>
<td>ALT+ENTER</td>
<td>View the properties for the selected item</td>
</tr>
<tr>
<td>ALT+F4</td>
<td>Close the active item, or quit the active program</td>
</tr>
<tr>
<td>ALT+TAB</td>
<td>Switch between the open items</td>
</tr>
<tr>
<td>CTRL+TAB</td>
<td>Move forward through the tabs</td>
</tr>
<tr>
<td>CTRL+SHIFT+TAB</td>
<td>Move backward through the tabs</td>
</tr>
<tr>
<td>F5 key</td>
<td>Update the active window</td>
</tr>
<tr>
<td>ESC</td>
<td>Cancel the current task</td>
</tr>
<tr>
<td>CTRL+SHIFT+ESC</td>
<td>Open Task Manager</td>
</tr>
<tr>
<td>Windows Logo</td>
<td>Display or hide the Start menu</td>
</tr>
<tr>
<td>Windows Logo+D</td>
<td>Display the desktop</td>
</tr>
<tr>
<td>Windows Logo+M</td>
<td>Minimize all of the windows</td>
</tr>
<tr>
<td>Windows Logo+SHIFT+M</td>
<td>Restore the minimized windows</td>
</tr>
<tr>
<td>Windows Logo+E</td>
<td>Open My Computer</td>
</tr>
<tr>
<td>Windows Logo+F</td>
<td>Search for a file or a folder</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://techblog.byllemos.com/2007/10/usefull-xp-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shutdown XP Faster</title>
		<link>http://techblog.byllemos.com/2007/10/shutdown-xp-faster/</link>
		<comments>http://techblog.byllemos.com/2007/10/shutdown-xp-faster/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 14:26:09 +0000</pubDate>
		<dc:creator>iby</dc:creator>
				<category><![CDATA[XP]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Shutdown]]></category>
		<category><![CDATA[Tweak]]></category>

		<guid isPermaLink="false">http://techblog.byllemos.com/?p=11</guid>
		<description><![CDATA[<p>When XP is shutting down it checks that all applications and services are shut down. Sometimes, some of the services are not shutting down, thus XP gives them time to shut down on its own. The amount of time XP&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>When XP is shutting down it checks that all applications and services are shut down. Sometimes, some of the services are not shutting down, thus XP gives them time to shut down on its own. The amount of time XP waits for the service to shut down is stored in the system registry. By changing this setting XP will shutdown faster.</p>
<p><span id="more-11"></span></p>
<p>Here is how to do it:</p>
<ol>
<li>Start<strong> regedit </strong>(Start -&gt; Run -&gt; Regedit)</li>
<li>Navigate to the Registry key <strong>HKEY CURRENT USER\Control Panel\Desktop</strong></li>
<li>Double click on the <strong>AutoEndTasks</strong> entry and replace the 0 with a 1 in the Value data text box</li>
<li>Double click on the <strong>WaitToKillAppTimeout</strong> entry (if the dword value does not exist, then create it) and change the value to 2000</li>
<li>Double click on the <strong>HungAppTimeout</strong> entry (if the dword value does not exist, then create it) and change the value to 1000</li>
<li>Reboot</li>
</ol>
<p>If you still have problems, then make the following changes:</p>
<ol>
<li>Start<strong> regedit </strong>(Start -&gt; Run -&gt; Regedit)</li>
<li>Navigate to the Registry key <strong>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control</strong></li>
<li>Double click on the <strong>WaitToKillServiceTimeout</strong> entry and change the value to 2000</li>
<li>Reboot</li>
</ol>
<p>Notice that lowest value XP will accept is 1000 (1 sec).</p>
<p>Be also aware of, that the WaitToKillService tweak can cause problems. If an application is in process of saving data a &#8220;kill&#8221;can case the loss of data.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.byllemos.com/2007/10/shutdown-xp-faster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

