<?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>Fnode Networks &#187; Computing</title>
	<atom:link href="http://www.fnode.com/category/computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fnode.com</link>
	<description>A Network Systems &#38; Technology Blog</description>
	<lastBuildDate>Mon, 16 Aug 2010 11:27:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Quick tip: change default text editor on Linux shell</title>
		<link>http://www.fnode.com/2009/09/quick-tip-change-default-text-editor-on-linux-shell/</link>
		<comments>http://www.fnode.com/2009/09/quick-tip-change-default-text-editor-on-linux-shell/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 12:52:50 +0000</pubDate>
		<dc:creator>Luca</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=477</guid>
		<description><![CDATA[Doing visudo you get nano instead of your favorite text editor? Mine is vim therefore I issue: DEBIAN/UBUNTU way # update-alternatives --config editor There are 4 alternatives which provide `editor'. Selection Alternative ----------------------------------------------- 1 /usr/bin/vim.tiny 2 /bin/ed *+ 3 /bin/nano 4 /usr/bin/vim.basic Press enter to keep the default[*], or type selection number: Selecting 4 I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Doing visudo you get nano instead of your favorite text editor?<br />
Mine is vim therefore I issue:</p>
<p><strong>DEBIAN/UBUNTU way</strong><br />
<code><br />
# update-alternatives --config editor<br />
There are 4 alternatives which provide `editor'.<br />
  Selection    Alternative<br />
-----------------------------------------------<br />
          1    /usr/bin/vim.tiny<br />
          2    /bin/ed<br />
*+        3    /bin/nano<br />
          4    /usr/bin/vim.basic<br />
Press enter to keep the default[*], or type selection number:<br />
</code><br />
Selecting 4 I&#8217;m ready to use my full syntax colors when I edit any file.</p>
<p><strong>OTHER DISTROS</strong><br />
Edit your .bashrc file and add the following:<br />
<code>EDITOR=vim<br />
export EDITOR</code><br />
Next login you will have your VIM working.<br />
If you want to have it immediately and only for this session just type<br />
<code># export EDITOR=vim</code><br />
and press enter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/09/quick-tip-change-default-text-editor-on-linux-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the file timestamp on Linux</title>
		<link>http://www.fnode.com/2009/08/how-to-change-the-file-timestamp-in-a-linux-system/</link>
		<comments>http://www.fnode.com/2009/08/how-to-change-the-file-timestamp-in-a-linux-system/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 19:09:02 +0000</pubDate>
		<dc:creator>Luca</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=464</guid>
		<description><![CDATA[This tip might comes handy when you do a system check and you want to make sure you don&#8217;t check the same file twice. Let&#8217;s pretend that our &#8220;file1&#8243; is a conf file that needs review. As you can see the output of the command issued below shows that the file was last edited in [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This tip might comes handy when you do a system check and you want to make sure you don&#8217;t check the same file twice.</p>
<p>Let&#8217;s pretend that our &#8220;file1&#8243; is a conf file that needs review. As you can see the output of the command issued below shows that the file was last edited in June.<br />
Today I want to check the file without editing it and make sure next time I won&#8217;t check it again:<br />
<code><br />
$ ls -l<br />
total 0<br />
-rw-r--r-- 1 luca luca 290 2009-06-29 16:33 file1<br />
</code></p>
<p><a href="http://www.manpagez.com/man/1/touch/" target="_blank">Touch</a> is an excellent tool in this case:<br />
<code><br />
$ touch file1<br />
$ ls -l<br />
total 0<br />
-rw-r--r-- 1 luca luca 0 2009-08-29 19:43 file1<br />
</code><br />
The Modification Time has changed and so has the access time.</p>
<p>If you want to change just the modification time leaving the access time untouched try with the -m option<br />
<code><br />
$ touch -m file1<br />
$ ls -l<br />
total 0<br />
-rw-r--r-- 1 luca luca 0 2009-08-29 19:46 file1<br />
$ stat file1<br />
[..]<br />
Access: 2009-08-29 19:43:45.000000000 +0100<br />
Modify: 2009-08-29 19:46:15.000000000 +0100<br />
Change: 2009-08-29 19:46:15.000000000 +0100<br />
</code><br />
And -a is just for the Access Time.</p>
<p>Another interesting option is -t. It lets you set the time and the date with whatever you like. This is often used to do fishy things <img src='http://www.fnode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<code><br />
$ touch -t 200701012301 file1<br />
$ stat file1<br />
[..]<br />
Access: 2007-01-01 23:01:00.000000000 +0000<br />
Modify: 2007-01-01 23:01:00.000000000 +0000<br />
Change: 2009-08-29 19:52:26.000000000 +0100<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/08/how-to-change-the-file-timestamp-in-a-linux-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set multiple IPs on Debian</title>
		<link>http://www.fnode.com/2007/12/how-to-set-multiple-ips-on-debian/</link>
		<comments>http://www.fnode.com/2007/12/how-to-set-multiple-ips-on-debian/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 16:41:47 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/12/27/how-to-set-multiple-ips-on-debian/</guid>
		<description><![CDATA[Setting multiple IPs on Linux or in this case Debian is rather straight forward&#8230; All the network info is stored in the file /etc/network/interfaces and you just need to add the info to the file&#8230; Before making changes to this file, I recommend you check your values at least 3 times! If you have made [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Setting multiple IPs on Linux or in this case Debian is rather straight forward&#8230; All the network info is stored in the file <strong>/etc/network/interfaces</strong> and you just need to add the info to the file&#8230;</p>
<p>Before making changes to this file, I recommend you check your values at least 3 times! If you have made a mistake and trying to do it from a remote location, <strong>YOU WILL LOCK YOURSELF OUT!</strong></p>
<p>This is a sample configuration with device <strong>eth0</strong> having the IP address of <strong>192.168.1.2</strong> on a Class C Network with <strong>192.168.1.1</strong> as the default gateway.</p>
<p><strong>/etc/network/interfaces:</strong><br />
<code><br />
# /etc/network/interfaces – configuration file for ifup(8), ifdown(8)</p>
<p># the loopback interface<br />
auto lo<br />
iface lo inet loopback</p>
<p>auto eth0<br />
iface eth0 inet static</p>
<p>address 192.168.1.2<br />
netmask 255.255.255.0<br />
broadcast 192.168.1.255<br />
gateway 192.168.1.1<br />
</code><br />
In order to add multiple IPs to the same interface, In this case eth0 You need to add it in the following method&#8230;<br />
<code><br />
auto eth0:0<br />
iface eth0:0 inet static</p>
<p>address 192.168.1.3<br />
netmask 255.255.255.0<br />
broadcast 192.168.1.255</p>
<p>auto eth0:1<br />
iface eth0:1 inet static</p>
<p>address 192.168.1.4<br />
netmask 255.255.255.0<br />
broadcast 192.168.1.255</p>
<p>auto eth0:2<br />
iface eth0:2 inet static</p>
<p>address 192.168.1.5<br />
netmask 255.255.255.0<br />
broadcast 192.168.1.255<br />
</code><br />
Thats it, after you have made all the necessary changes, you need to restart the networking by issueing the following command&#8230;</p>
<p><strong># /etc/init.d/networking restart</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/12/how-to-set-multiple-ips-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4GB RAM on 32-Bit Operating System</title>
		<link>http://www.fnode.com/2007/12/4gb-ram-on-32-bit-operating-system/</link>
		<comments>http://www.fnode.com/2007/12/4gb-ram-on-32-bit-operating-system/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 15:12:51 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[32 Bit OS]]></category>
		<category><![CDATA[4GB]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/12/18/4gb-ram-on-32-bit-operating-system/</guid>
		<description><![CDATA[This is a common issue and I have come across of this question numerous times on the ASUS Forums, so I have decided to post some info regarding this issue. If your system has 4GB of RAM or have upgraded to 4GB (Or more) and running a 32-Bit Operating System, It will most likely say [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This is a common issue and I have come across of this question numerous times on the ASUS Forums, so I have decided to post some info regarding this issue.</p>
<p>If your system has 4GB of RAM or have upgraded to 4GB (Or more) and running a 32-Bit Operating System, It will most likely say you have around 3GB of RAM.  Unfortunately there is no way you are going to see all the RAM you paid for.</p>
<p>On the other hand, if you are running a 64-Bit Operating System (Which is designed to support 4GB more), you might be able to see all the RAM but it depends on your motherboard Chipset and the BIOS need to support memory remapping feature.</p>
<p>If you really need to have 4GB or more RAM, you need to check whether the motherboard chipset support at least 8 GB of address space and it must support 64-Bit architecture.</p>
<p>Furthermore, you need to run a 64-Bit Operating System such as Windows XP 64-Bit or Vista 64-Bit to utilise all the installed RAM.</p>
<p>I would recommend you read through the following URL <a href="http://support.microsoft.com/kb/929605/" title="http://support.microsoft.com/kb/929605/">http://support.microsoft.com/kb/929605/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/12/4gb-ram-on-32-bit-operating-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to gain ROOT access to a Linux Box within 10 Seconds</title>
		<link>http://www.fnode.com/2007/09/how-to-gain-root-access-to-a-fedora-box-within-10-seconds/</link>
		<comments>http://www.fnode.com/2007/09/how-to-gain-root-access-to-a-fedora-box-within-10-seconds/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 22:49:23 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/08/14/how-to-gain-root-access-to-a-fedora-box-within-10-seconds/</guid>
		<description><![CDATA[It is pretty easy when it comes to gaining root password to any Linux System as long as you have physical access. This is how to change Fedora&#8217;s ROOT Password. When your box starts up, You will see the GRUB screen… What you need to do is, press the a Key instead of Enter You [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>It is pretty easy when it comes to gaining root password to any Linux System as long as you have physical access.</p>
<p>This is how to change Fedora&#8217;s ROOT Password.</p>
<p>When your box starts up, You will see the GRUB screen…</p>
<p>What you need to do is, press the <strong>a</strong> Key instead of <strong>Enter</strong></p>
<p>You will see something like the following…</p>
<p><code>kernel /vmlinuz-2.6.9-1.667 ro root=LABEL=/ acpi=on rhgb quiet</code></p>
<p>Add 1 at the end of that… So it looks like the following…</p>
<p><code>kernel /vmlinuz-2.6.9-1.667 ro root=LABEL=/ acpi=on rhgb quiet 1</code></p>
<p>This will make the box boot into Runlevel 1</p>
<p>You simply type</p>
<p><code>passwd</code></p>
<p>Enter the new ROOT password and reboot the machine.</p>
<p>Same thing goes for Any Linux System as welll… All you got to do is, add the following kernel argument…</p>
<p><code>init=/bin/bash</code></p>
<p>And then just change the password…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/09/how-to-gain-root-access-to-a-fedora-box-within-10-seconds/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Make BisonCam work on Windows Vista</title>
		<link>http://www.fnode.com/2007/06/make-bisoncam-work-on-windows-vista/</link>
		<comments>http://www.fnode.com/2007/06/make-bisoncam-work-on-windows-vista/#comments</comments>
		<pubDate>Sat, 02 Jun 2007 23:45:52 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/06/02/make-bisoncam-work-on-windows-vista/</guid>
		<description><![CDATA[I had a problem installing the BisonCam Driver on my ASUS Laptop running Windows Vista, The XP driver didn&#8217;t work at all and I expected that&#8230; This is how I got it working&#8230; Download the driver in the following location and install it. http://www.fnode.com/drivers/Bison_Camera_Vista32_NB.zip Then you need to Reboot. Do NOT avoid to reboot because [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="MsoNormal">I had a problem installing the BisonCam Driver on my ASUS Laptop running Windows Vista, The XP driver didn&#8217;t work at all and I expected that&#8230;</p>
<p class="MsoNormal">This is how I got it working&#8230;</p>
<p class="MsoNormal">Download the driver in the following location and install it.</p>
<p class="MsoNormal"><a href="http://www.fnode.com/drivers/Bison_Camera_Vista32_NB.zip">http://www.fnode.com/drivers/Bison_Camera_Vista32_NB.zip</a></p>
<p class="MsoNormal">Then you need to <strong>Reboot</strong>. Do <strong>NOT</strong> avoid to reboot because you are too lazy, otherwise it won&#8217;t work!</p>
<p class="MsoNormal">After that, you need to make some registry modifications. Easy way to do it is to copy the registry code into notepad and save it as a <strong>.reg</strong> file. After that, just double click the <strong>.reg</strong> file and apply the registry modification. (Copy the code in between <strong>Registry Info</strong> tag)</p>
<p class="MsoNormal">You can also download the <strong>.reg</strong> file <a title="Cam Registry File" href="http://www.fnode.com/drivers/cam.reg" target="_blank">Here</a>.</p>
<p class="MsoNormal">The Cam might show the picture as upside down, <span class="content">All you got to do is a Verticle Flip, Its on the Option ==&gt; Video Capture Filter ==&gt; Rotation</span></p>
<p><code><br />
Windows Registry Editor Version 5.00</code></p>
<p>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cam5603D]<br />
&#8220;SensorType&#8221;=dword:0000000a<br />
&#8220;LensType&#8221;=dword:0000000c<br />
&#8220;ImageSize&#8221;=dword:00000001<br />
&#8220;ViewSize&#8221;=dword:00000a50<br />
&#8220;SnapItem&#8221;=dword:00000000<br />
&#8220;MPTest&#8221;=dword:00000000<br />
&#8220;RGB24&#8243;=dword:00000000<br />
&#8220;WideScreen&#8221;=dword:00000000<br />
&#8220;DeviceOffOn&#8221;=dword:00000000<br />
&#8220;CpuUsage&#8221;=dword:00000000<br />
&#8220;DcOffset&#8221;=dword:00000000<br />
&#8220;AeTable&#8221;=dword:00000000<br />
&#8220;PCB_SIZE&#8221;=dword:00000001<br />
&#8220;PropShowItem&#8221;=dword:00000000<br />
&#8220;SXGASize&#8221;=dword:00000001<br />
&#8220;BlockS3S4&#8243;=dword:00000000<br />
&#8220;AETarget&#8221;=dword:00000000<br />
&#8220;FlikerLim&#8221;=dword:00000000<br />
&#8220;InterpolationMethod&#8221;=dword:00000000<br />
&#8220;ADC&#8221;=dword:00000000<br />
&#8220;DC_Level&#8221;=dword:00000000<br />
&#8220;Gama_Offset&#8221;=dword:00000000<br />
&#8220;ImageEffect&#8221;=dword:00000000<br />
&#8220;ChkPacketHdr&#8221;=dword:00000000<br />
&#8220;SaBase&#8221;=dword:00000006<br />
&#8220;SaDivitor&#8221;=dword:00000006<br />
&#8220;SensorYUYV&#8221;=dword:00000000<br />
&#8220;AvgAE&#8221;=dword:00000000<br />
&#8220;Timer1&#8243;=dword:0000000a<br />
&#8220;Timer2&#8243;=dword:0000005a<br />
&#8220;PowerDown&#8221;=dword:00000000<br />
&#8220;DoXPC3&#8243;=dword:00000001<br />
&#8220;Do2KC3&#8243;=dword:00000001</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\BisonCam]<br />
&#8220;AgcGainType&#8221;=dword:00000000</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\WebCam\M2000]<br />
&#8220;StillImage&#8221;=dword:0000000a<br />
&#8220;MultiLangID&#8221;=dword:00000009</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/06/make-bisoncam-work-on-windows-vista/feed/</wfw:commentRss>
		<slash:comments>102</slash:comments>
		</item>
		<item>
		<title>Start XP with Number Lock ON</title>
		<link>http://www.fnode.com/2007/05/start-xp-with-number-lock-on/</link>
		<comments>http://www.fnode.com/2007/05/start-xp-with-number-lock-on/#comments</comments>
		<pubDate>Sun, 27 May 2007 23:09:50 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/05/27/start-xp-with-number-lock-on/</guid>
		<description><![CDATA[Starting Windows XP with Number Lock ON is a pretty simple registry tweak. All you got to do is the following&#8230; Click Start ==&#62; Run and Type REGEDIT Navigate to the following Registry tree KEY_USERS/.DEFAULT/Control Panel/Keyboard Change the value of the key InitialKeyboardIndicators to 2 (initially is it set to 0) That&#8217;s it, When you [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Starting Windows XP with Number Lock ON is a pretty simple registry tweak.  All you got to do is the following&#8230;</p>
<p>Click <strong>Start</strong> ==&gt; <strong>Run</strong> and Type <strong><em>REGEDIT</em></strong></p>
<p>Navigate to the following Registry tree</p>
<p><strong><em>KEY_USERS/.DEFAULT/Control Panel/Keyboard</em></strong></p>
<p>Change the value of the key <strong>InitialKeyboardIndicators</strong> to <strong>2</strong> (initially is it set to 0)</p>
<p>That&#8217;s it, When you reboot XP again, Number Lock should be on!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/05/start-xp-with-number-lock-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AdobeUpdater.exe CPU Resource Hog</title>
		<link>http://www.fnode.com/2007/05/adobeupdaterexe-cpu-resource-hog/</link>
		<comments>http://www.fnode.com/2007/05/adobeupdaterexe-cpu-resource-hog/#comments</comments>
		<pubDate>Sun, 13 May 2007 01:26:13 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/05/13/adobeupdaterexe-cpu-resource-hog/</guid>
		<description><![CDATA[I have been experiencing some strange issue with Adobe software, when I launch it, there will be a program called AdobeUpdater.exe will automatically executes. This .exe will use about 99% of the CPU runtime and will not be able to kill it via Process Kill, which means a reboot is eminent. I have tried two [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I have been experiencing some strange issue with Adobe software, when I launch it, there will be a program called AdobeUpdater.exe will automatically executes.</p>
<p>This .exe will use about 99% of the CPU runtime and will not be able to kill it via Process Kill, which means a reboot is eminent.</p>
<p>I have tried two methods, one worked, one didn&#8217;t</p>
<p>I Renamed <strong>updater.api</strong> under <strong>C:\Program Files\Adobe\Acrobat 8.0\Acrobat\plug_ins</strong></p>
<p>That didn&#8217;t work at all&#8230;</p>
<p>Than I tried renaming <strong>AdobeUpdater.exe</strong> to <strong>AdobeUpdater2.exe</strong> under</p>
<p><strong>C:\Program Files\Common Files\Adobe\Updater5</strong></p>
<p>Which seems to work and hence this is a temporary solution.</p>
<p>According to my research, Adobe is aware of this problem so, I guess they will be releasing a patch soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/05/adobeupdaterexe-cpu-resource-hog/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Disabling livecall.exe on Windows Live Messenger (WLM)</title>
		<link>http://www.fnode.com/2007/05/disabling-windows-live-call-on-windows-live-messenger-wlm/</link>
		<comments>http://www.fnode.com/2007/05/disabling-windows-live-call-on-windows-live-messenger-wlm/#comments</comments>
		<pubDate>Fri, 11 May 2007 17:34:17 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[IM]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/05/11/disabling-windows-live-call-on-windows-live-messenger-wlm/</guid>
		<description><![CDATA[Windows Live Call is a resource hog, unless you use this feature there is no need to have it. And it takes about 40 MB of the RAM. Removing Live Call will make the Live Messenger sign in much faster. Before starting, Shutdown Live Messenger and make sure it is not running. (make sure the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Windows Live Call is a resource hog, unless you use this feature there is no need to have it. And it takes about 40 MB of the RAM. Removing Live Call will make the Live Messenger sign in much faster.</p>
<p>Before starting, Shutdown Live Messenger and make sure it is not running. (make sure the icon is not on the taskbar)</p>
<p>You should first remove all the Windows Live Messenger Shortcuts. Here are the common places where you would have a Messenger Shortcut.</p>
<p>Desktop: If you have other user account, its worth deleting it.</p>
<p><strong>Program List: C:\Documents and Settings\USERNAME\Start Menu\Programs</strong></p>
<p>Then go to the Windows Live Messenger Install Directory, <strong>C:\Program Files\MSN Messenger</strong></p>
<p>And remove the following Files and move them into a Directory of your choice. (just make one into the WLM install Directory)</p>
<p><code><br />
htc.8.1.0178.00.dll<br />
livecall.exe<br />
pcsexeps.dll<br />
softphone.dll<br />
softphoneps.dll<br />
softphoneres.dll<br />
</code><br />
Now, you can create your shortcut again manually, It should stop Live Messenger from repairing the files. Follow this link on creating shortcuts http://support.microsoft.com/kb/140443</p>
<p>NB: I have also removed and recreated the following registry, I don&#8217;t think there is a need to do it, but If <strong>livecall.exe</strong> starts again, you can try this method again…</p>
<p><strong>Software\Microsoft\Windows\CurrentVersion\Run</strong></p>
<p>You can either use Startup Control Panel or follow the instructions on this URL <a href="http://support.microsoft.com/kb/270035" title="http://support.microsoft.com/kb/270035" target="_blank">http://support.microsoft.com/kb/270035</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/05/disabling-windows-live-call-on-windows-live-messenger-wlm/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>How to lock Windows XP when Idle</title>
		<link>http://www.fnode.com/2007/04/how-to-lock-windows-xp-when-idle/</link>
		<comments>http://www.fnode.com/2007/04/how-to-lock-windows-xp-when-idle/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 15:24:08 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/04/24/how-to-lock-windows-xp-when-idle/</guid>
		<description><![CDATA[Go to Start &#8211;&#62; Control Panel Open up Scheduled Tasks Click on File &#8211;&#62; New &#8211;&#62; Scheduled Tasks Name it whatever you like, I named it Auto Lock Open up Auto Lock Under the Task Tab, add the following to the Run: Textbox %windir%\system32\rundll32.exe user32.dll, LockWorkStation Click on the Schedule Tab Under Schedule Task: drop [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span lang="EN-GB">Go to <strong>Start</strong> &#8211;&gt; <strong>Control Panel</strong> </span></p>
<p class="MsoNormal"><span lang="EN-GB">Open up <strong>Scheduled Tasks</strong></span></p>
<p class="MsoNormal"><span lang="EN-GB">Click on <strong>File</strong> &#8211;&gt; <strong>New</strong> &#8211;&gt; <strong>Scheduled Tasks</strong></span></p>
<p class="MsoNormal"><span lang="EN-GB">Name it whatever you like, I named it <strong>Auto Lock</strong></span></p>
<p class="MsoNormal"><span lang="EN-GB">Open up <strong>Auto Lock</strong> Under the <strong>Task</strong> Tab, add the following to the <strong>Run:</strong> Textbox</span></p>
<p class="MsoNormal"><span lang="EN-GB">%windir%\system32\rundll32.exe user32.dll, LockWorkStation</span></p>
<p class="MsoNormal"><span lang="EN-GB">Click on the <strong>Schedule</strong> Tab </span></p>
<p class="MsoNormal"><span lang="EN-GB">Under <strong>Schedule Task:</strong> drop down menu, select <strong>When Idle</strong></span></p>
<p class="MsoNormal"><span lang="EN-GB">On the <strong>Schedule Task When Idle option</strong>, set an appropriate Idle time, I set it as 10 Minute(s)</span></p>
<p class="MsoNormal"><span lang="EN-GB">Click <strong>Apply</strong>, and you will have a popup to add password. Type in the password and confirm it. (I use the same password as my XP login password)</span></p>
<p class="MsoNormal"><span lang="EN-GB">That&#8217;s it, It should auto lock your PC after it reaches the set idle time.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/04/how-to-lock-windows-xp-when-idle/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
