<?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>spherebox.com &#187; Operating Systems</title>
	<atom:link href="http://spherebox.siansiew.com/category/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://spherebox.siansiew.com</link>
	<description>Leveraging on technology to achieve our goals.</description>
	<lastBuildDate>Sun, 18 Dec 2011 08:16:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Disable UAC in Windows Vista</title>
		<link>http://spherebox.siansiew.com/2007/07/22/how-to-disable-uac-in-windows-vista/</link>
		<comments>http://spherebox.siansiew.com/2007/07/22/how-to-disable-uac-in-windows-vista/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 01:23:57 +0000</pubDate>
		<dc:creator>ck</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/07/22/how-to-disable-uac-in-windows-vista/</guid>
		<description><![CDATA[This could be something already commonly known among experienced Windows Vista users, but there are still a fair amount of users who are unaware of it. User Account Control (UAC) is a feature introduced in Windows Vista to improve the security of Windows by limiting applications to standard user privileges until an administrator authorizes an [...]]]></description>
			<content:encoded><![CDATA[<p>This could be something already commonly known among experienced Windows Vista users, but there are still a fair amount of users who are unaware of it.</p>
<p><a href="http://en.wikipedia.org/wiki/User_Account_Control" target="_blank">User Account Control (UAC)</a> is a feature introduced in Windows Vista to improve the security of Windows by limiting applications to standard user privileges until an administrator authorizes an increase in privilege level. For instance, you&#8217;ll see a notification like this every time you run an EXE file.</p>
<p><img src="http://spherebox.com/wp-content/uploads/2007/07/uac-vs1.jpg" alt="UAC notification" /></p>
<p>While it could be an useful security feature for inexperienced users, there have been complaints that UAC notifications slow down various tasks, such as new software installation when the user sure that the installation file is 100% safe.</p>
<p>To disable UAC, first go to <em>Control Panel\User Accounts, </em>then click on &#8220;Turn User Account Control on/off&#8221;</p>
<p><img src="http://spherebox.com/wp-content/uploads/2007/07/useraccount.jpg" alt="User Account" /></p>
<p>Un-tick the check box and proceed by clicking OK</p>
<p><img src="http://spherebox.com/wp-content/uploads/2007/07/turnoff.jpg" alt="Untick the checkbox and proceed" /></p>
<p>And finally, you&#8217;ll be asked to restart the computer, the usual way of how Windows works :-)</p>
<p><img src="http://spherebox.com/wp-content/uploads/2007/07/restart.jpg" alt="Restart" /></p>
<p>After that, you&#8217;ll be able to enjoy the level of freedom and convenience you had in Windows XP, of course you must still practice caution and prevent any malicious files from running on your system.</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/07/22/how-to-disable-uac-in-windows-vista/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Check what port an application is using</title>
		<link>http://spherebox.siansiew.com/2007/07/11/check-what-port-an-application-is-using/</link>
		<comments>http://spherebox.siansiew.com/2007/07/11/check-what-port-an-application-is-using/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 05:41:51 +0000</pubDate>
		<dc:creator>Ben Jim</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/07/11/check-what-port-an-application-is-using-what-port/</guid>
		<description><![CDATA[There are a couple of applications that may fail to start and complaint because its port is being used by a different application. This is a quick and dirty way of knowing which application is responsible for tying up a port on a Windows box. Open up a command prompt: Start &#124; Run &#124; type [...]]]></description>
			<content:encoded><![CDATA[<p>There are a couple of applications that may fail to start and complaint because its port is being used by a different application. This is a quick and dirty way of knowing which application is responsible for tying up a port on a Windows box.</p>
<p>Open up a command prompt:</p>
<ol>
<li><strong>Start | Run |</strong> type<strong> cmd  | Enter</strong></li>
<li>Type <strong>netstat -aon | findstr &#8220;[port number]&#8220;</strong></li>
<li>Take note of the numbers on the last line. This is the PID or Process ID.</li>
<li>Type <strong>tasklist | findstr &#8220;[PID]&#8220;</strong> and this will return the application corresponding to that PID.</li>
<li>Once PID is determined, you can now kill it in Task Manager or kill it typing tskill  at the command prompt.</li>
</ol>
<p><img src="http://spherebox.com/wp-content/uploads/2007/07/ports1.JPG" alt="ports1.JPG" /></p>
<p>For example:</p>
<ol>
<li>I type <strong>netstat -aon | findstr &#8220;8080&#8243;</strong> at command prompt (I&#8217;m on a proxy by the way)</li>
<li>I see that the PID is 3624</li>
<li>I type <strong>tasklist | findstr &#8220;3624&#8243;</strong> to find what PID 3624 is and it points to <em>msnmsgr.exe</em> which is MSN/Live Messenger.</li>
<li>I can now kill MSN Messenger from Task Manager or type <strong>tskill  3624</strong></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/07/11/check-what-port-an-application-is-using/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Securing UltraVNC over Internet with DSM Plugins</title>
		<link>http://spherebox.siansiew.com/2007/06/25/securing-ultravnc-over-internet-with-dsm-plugins/</link>
		<comments>http://spherebox.siansiew.com/2007/06/25/securing-ultravnc-over-internet-with-dsm-plugins/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 02:42:54 +0000</pubDate>
		<dc:creator>Ben Jim</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/06/25/securing-ultravnc-over-internet-with-dsm-plugins/</guid>
		<description><![CDATA[As promised, for those who are on UltraVNC, securing your VNC over Internet is very easy with a DMS plugin available for encryption. There are currently 3 encryption plugins for UltraVNC, namely MSRC4, ARC4 and AESV2. I&#8217;ll demonstrate how to use the MSRC4 plugin as this is well documented on the UltraVNC forum and it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://spherebox.com/wp-content/uploads/2007/05/logo.gif" alt="logo.gif" align="left" /><a href="http://spherebox.com/2007/05/25/securing-vnc-over-internet/" target="_blank">As promised</a>, for those who are on UltraVNC, securing your VNC over Internet is very easy with a DMS plugin available for encryption. There are currently 3 encryption plugins for UltraVNC, namely MSRC4, ARC4 and AESV2. I&#8217;ll demonstrate how to use the MSRC4 plugin as this is well documented on the UltraVNC forum and it&#8217;s the most up-to-date in development.</p>
<p>First off all, download the plugin from <a href="http://msrc4plugin.home.comcast.net/msrc4plugin.html" target="_blank"> here</a> and extract the content to your  root of your UltraVNC folder (defaulted to &#8220;C:\Program Files\UltraVNC&#8221;). <strong>Note:</strong> extract to the root of the folder and not the plugin folder (that&#8217;s just a container).</p>
<p><img src="http://spherebox.com/wp-content/uploads/2007/05/msrc4-plugin.JPG" alt="msrc4-plugin.JPG" /></p>
<p><strong>Server Configuration</strong><br />
Now on your UltraVNC Server and you should see MSRC4Plugin in the DSM DSM plugin drop down box.<br />
<img src="http://spherebox.com/wp-content/uploads/2007/05/config.JPG" alt="config.JPG" /></p>
<p>Check <strong>Use</strong> and hit the <strong>Config</strong> button.A MSRC4 Plugin Configuration window will pop up.<br />
<img src="http://spherebox.com/wp-content/uploads/2007/05/gen-key.JPG" alt="gen-key.JPG" /></p>
<p>You will notice that there aren&#8217;t any encryption plugin keys present(naturally since we haven&#8217;t created any) so make your first key. Select the default <strong>128 bit</strong> hit <strong>Gen Key</strong>.The configuration tool will close after generating the key and this key will be used from now on on every client computer to allow you to  view your server running on that specific key-based encryption. You will notice a new file in your UltraVNC installation folder called rc4.key.</p>
<p><strong>Important:</strong> Make sure you bring along this key file (rc4.key) along with your UltraVNC or the client will not be able to interact or see the server.</p>
<p><img src="http://spherebox.com/wp-content/uploads/2007/05/rc4-key.JPG" alt="rc4-key.JPG" /></p>
<p><strong>Client Configuration</strong><br />
Copy this rc4.key to your UltraVNC client&#8217;s root directory as with the steps in the Server. When you launch your UltraVNC client, check the box called &#8220;Use DSMPlugin&#8221; and enter your server&#8217;s IP address. Click on connect, enter your password.Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/06/25/securing-ultravnc-over-internet-with-dsm-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing VNC over Internet</title>
		<link>http://spherebox.siansiew.com/2007/05/25/securing-vnc-over-internet/</link>
		<comments>http://spherebox.siansiew.com/2007/05/25/securing-vnc-over-internet/#comments</comments>
		<pubDate>Fri, 25 May 2007 09:11:39 +0000</pubDate>
		<dc:creator>Ben Jim</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/05/25/securing-vnc-over-internet/</guid>
		<description><![CDATA[Continuing CK&#8217;s article on VNC where he left off, here&#8217;s the VNC-over-Internet remote administration version of the guide. The first part of the tutorial is the setting-up of VNC-over-internet and the second part deals with hardening your VNC in regards to security best-practices. This article is gonna be a long one, so take a deep [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://spherebox.com/wp-content/uploads/2007/05/vnc.jpg' alt='vnc.jpg' align="left"/>Continuing <a href="http://spherebox.com/2007/04/04/vnc-configuration-for-dummies/">CK&#8217;s article on VNC</a> where he left off, here&#8217;s the VNC-over-Internet remote administration version of the guide. The first part of the tutorial is the setting-up of VNC-over-internet and the second part deals with hardening your VNC in regards to security best-practices. This article is gonna be a long one, so take a deep breath and let&#8217;s go! </p>
<p><u><b>Part One</b></u><br />
By now you should have VNC installed and you&#8217;d be able to connect via LAN. Make sure you register the VNC Server as a system service if you want it to run automatically on Windows start-up. </p>
<p>Now lets expand this control over the Internet. To control your PC over Internet you&#8217;ll have to;</p>
<p>1) Know your IP address. If you&#8217;re on a static IP then all&#8217;s well, if you&#8217;re given a dynamic IP by your ISP then you will need;<br />
a) take note of your IP whenever you leave home.<br />
b) register with any of the numerous free dynamic DNS services. What this service does is offer a service to keep a domain name linked to a changing IP address on those who are on dynamic IPs via a dynamic update client that runs on your local computer and updates the dynamic DNS service site. Logging into the site will give you your ip.</p>
<p>2) Permit traffic on the SSH port 22 on the server (the pc you want to control) and if you&#8217;re on a router you need to port forward the VNC traffic to your server in which VNC Server is listening. How this is done depends on which firewall and/or router you are using. eg. in Windows XP SP2&#8242;s Firewall, go to <b>Start | Control Panel | Windows Firewall | Exceptions tab | Add port | port name SSH, port 22, TCP</b>. </p>
<p><img src='http://spherebox.com/wp-content/uploads/2007/05/sp2-firewall-open-port-22.jpg' alt='sp2-firewall-open-port-22.jpg' /></p>
<p>If youâ€™re behind a router or your bridge-modem is in router mode, you&#8217;ll need to forward TCP port 22 to the server. This means that any traffic coming in through port 22 (the SSH port) will be passed through the router and directed to the server. Here&#8217;s a useful <a href="http://portforward.com">site</a> detailing on how to port forward on popular routers.</p>
<p><img src='http://spherebox.com/wp-content/uploads/2007/05/am300-port-forwarding-22.JPG' alt='am300-port-forwarding-22.JPG' /></p>
<p>This is what port forwarding looks like on my Linksys AM300 modem/router.</p>
<p><u><b>Part Two</b></u><br />
Because access to a VNC Server allows access to your whole computer, security is of upmost important. VNC is inherently unsecure, thus the need to encrypt the traffic moving between both machines (client and server) as encryption in VNC is only used when the initial connection (when you login). Once connected, all VNC data is unencrypted, and a malicious user could snoop your VNC session with a number of scanning programs available that will scan a subnet looking for PCs listening on any ports which VNC uses. </p>
<p>The purpose of VNC + SSH is to remove this security risk. SSH, or the Secure Shell, allows secure (encrypted and authenticated) connections between any two machines running SSH. The wide variaty of connections supported by SSH include file transfer protocols, TCP/IP port forwarding, terminal sessions et cetera.  SSH is capable of using a number of encryption algorithms like AES-256, TripleDES, and-so-forth (I think that&#8217;s enuff tech jargons to throw around).  By tunnelling VNC over a SSH connection, you will be able to acces the host and have all traffic strongly encrypted. </p>
<p><b>Getting &#038; Installing OpenSSH</b><br />
There&#8217;s two ways to go about this. You can either get the standalone installation file of OpenSSH <a href="http://sshwindows.sourceforge.net/">here</a> or download <a href="http://www.cygwin.com/">Cygwin</a> and grab the relevant OpenSSH packages. Cygwin is a powerful *nix API emulator which has many uses that can replace the usual cmd.exe of our windows. What this means is it allows *nix programs/binaries (or bin) to be run in Windows. Maybe a tutorial for this will be up next on the power of Cygwin.</p>
<p>After downloading Cygwin, hit the Set-up exe file. Cygwin is actually an installation and update utility that retrieves the bin packages from the Internet.  As you can guess, the package we&#8217;re interested in is called <b>OpenSSH</b> and can be found in the <b>Net</b> category. After Installation is complete you need to add Cygwin environmental variables to your server to add the OpenSSH service and point to the bin file. Do this by right clicking on <b>My Computer | Selecting Properties | going to the Advanced tab and hitting the | Environment Variables</b> button and;</p>
<p>1. Add the variable <b>CYGWIN</b> and <b>ntsec tty</b> by using the <b>Add</b> button.</p>
<p><img src='http://spherebox.com/wp-content/uploads/2007/05/ntsec-tty.JPG' alt='ntsec-tty.JPG' /></p>
<p>2. Add <b>C:\cygwin\bin</b> (or whatever your installation directory is, for me it was C:\Program Files\Cygwin\bin) to the at the end of the existing line of the <b>PATH</b> environment variable  by using the <b>Edit</b> button.  (<b>Warn</b>: Don&#8217;t remove the existing lines, just append this line to the end of the line or you&#8217;ll screw your paths)</p>
<p><img src='http://spherebox.com/wp-content/uploads/2007/05/path.JPG' alt='path.JPG' /></p>
<p>3. Configure OpenSSH on Cygwin by typing  <b>ssh-host-config</b> at the prompt with the following answers;</p>
<p><img src='http://spherebox.com/wp-content/uploads/2007/05/ssh-config-host.JPG' alt='ssh-config-host.JPG' /></p>
<p><code><br />
â€œPrivilege Separation?â€ Yes<br />
â€œCreate local user SSHd?â€ Yes<br />
â€œInstall SSHd as a service?â€ Yes<br />
â€œCYGWIN = â€ enter ntsec<br />
</code></p>
<p>4. We can now start the SSH daemon (thats service to you Windows folks) by either typing <b>net start sshd</b> within Cygwin, typing <b>cygrunsrv.exe -S sshd</b>  or simply rebooting the machine. You can check if SSH is runningby by typing <b>netstat -a</b> in the command prompt and look for the line with <b>ssh</b>. To stop the SSH service type <b>net stop sshd</b></p>
<p><b>Connecting to VNC thru SSH</b><br />
Adjust the VNC server settings. </p>
<p>1. Select <b>allow loopback connections</b> on the VNC server.</p>
<p><img src='http://spherebox.com/wp-content/uploads/2007/05/allow-loopback-vnc.JPG' alt='allow-loopback-vnc.JPG' /></p>
<p>2. Create a local forwarded tunnel using the command <b>ssh -p 5900 admin @60.49.120.110 -L 5900:127.0.0.1:5900</b> command to forward port 5900 (the default VNC port if you haven&#8217;t changed it to another, if so replace this with your specified value instead) on the client where the public IP of your router is 60.49.120.110. The loopback interface address (that&#8217;s 127.0.0.1 to you) must be used.</p>
<p><b>Connect to the VNC server over the SSH tunnel</b><br />
To complete the procedure, start the VNC viewer on the and point to the server at 127.0.0.1:0:5900. At this point, the connection is forwarded from the client machine to the VNC server over SSH and you should receive the VNC authentication prompt. All network traffic is transparently encrypted by the SSH tunnel.</p>
<p><b>Troubleshooting Checklist</b><br />
Since this involves multiple setups and an unususally long guide, here is a brief troubleshooting checklist should you run into problems.</p>
<p>1) If you can SSH from the server to the server (SSH locally) = SSH server is functioning.<br />
2) If you can SSH from a computer over LAN to the SSH server = IP and LAN connection is functioning.<br />
3) If you can SSH from a computer over WAN (i.e. on the other side of the NAT router) to your SSH server, then you know that the router&#8217;s port-forwarding is working.</p>
<p>The same rules apply to VNC.</p>
<p>Securing UltraVNC is much easier but that&#8217;s for another article. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/05/25/securing-vnc-over-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Update</title>
		<link>http://spherebox.siansiew.com/2007/05/12/microsoft-update/</link>
		<comments>http://spherebox.siansiew.com/2007/05/12/microsoft-update/#comments</comments>
		<pubDate>Sat, 12 May 2007 10:00:43 +0000</pubDate>
		<dc:creator>Benny Chew</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/05/12/microsoft-update/</guid>
		<description><![CDATA[If you have visited Microsoft&#8217;s Windows Update site since a couple of months back, you probably would&#8217;ve noticed a fairly large sign encouraging you to install Microsoft Update. After installing and using it for quite some time (and subsequently disabling it recently), here&#8217;s my (short) write up on it. Sporting a similar interface to Windows [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://spherebox.com/wp-content/uploads/2007/05/ms-update-logo.png" title="MS Update logo" alt="MS Update logo" align="left" />If you have visited Microsoft&#8217;s <a href="http://windowsupdate.microsoft.com/" target="_blank">Windows Update</a> site since a couple of months back, you probably would&#8217;ve noticed a fairly large sign encouraging you to install <a href="http://update.microsoft.com/" target="_blank">Microsoft Update</a>. After installing and using it for quite some time (and subsequently disabling it recently), here&#8217;s my (short) write up on it.</p>
<p><a href="http://spherebox.com/wp-content/uploads/2007/03/ms_update_1.png" title="ms_update_1.png"><img src="http://spherebox.com/wp-content/uploads/2007/03/ms_update_1.thumbnail.png" alt="ms_update_1.png" /></a></p>
<p>Sporting a similar interface to Windows Update, Microsoft Update not only is able to do the job of finding updates for Windows but also for other Microsoft software on your computer such as the <a href="http://office.microsoft.com/" target="_blank">Office</a> suite or <a href="http://msdn.microsoft.com/vstudio/" target="_blank">Visual Studio</a> if you&#8217;re into software/web development using Microsoft technologies.</p>
<p>Once installed, Microsoft Update integrates into the standard Windows Automatic Update which most users would have been prompted to enable once you have Windows set up and running. There aren&#8217;t any additional settings or changes once it&#8217;s installed so there&#8217;s no added complexity, if you&#8217;re worried on that. ;)</p>
<p>Unfortunately, not long after installing it, my laptop started freezing up for prolonged periods on start up (which was extremely annoying since it reduced my battery life by a lot). I <a href="http://siansiew.com/2006/08/07/removewga/" target="_blank">originally blamed</a> <a href="http://en.wikipedia.org/wiki/Windows_Genuine_Advantage" target="_blank">WGA</a> for it, but the problem recurred after I removed WGA and found the symptoms listed in the <a href="http://support.microsoft.com/kb/916089/en-us" target="_blank">MS knowledgebase</a>.</p>
<p>If you have installed Microsoft Update and are experiencing these symptoms, you could either persevere with it, disable it or install the hotfix listed <a href="http://support.microsoft.com/kb/927891/" target="_blank">here</a>. I decided to disable it instead of installing the hotfix, so I can&#8217;t say for sure the hotfix works, but disabling it does.  Here are the steps, followed by the screenshots:</p>
<ol>
<li>Go to the Microsoft Update page.</li>
<li>Click on &#8216;Change settings&#8217;.</li>
<li>Scroll down the page, check &#8216;Disable Microsoft Update software and let me use Windows Update only&#8217; and click on &#8216;Apply changes now&#8217; button.</li>
</ol>
<p><a href="http://spherebox.com/wp-content/uploads/2007/05/ms-update-1.png" title="Microsoft Update - change settings"><img src="http://spherebox.com/wp-content/uploads/2007/05/ms-update-1.thumbnail.png" alt="Microsoft Update - change settings" /></a></p>
<p><a href="http://spherebox.com/wp-content/uploads/2007/05/ms-update-2.png" title="Microsoft Update - disable"><img src="http://spherebox.com/wp-content/uploads/2007/05/ms-update-2.thumbnail.png" alt="Microsoft Update - disable" /></a></p>
<p>If you do decide to disable Microsoft Update but still want to keep your MS Office up to date, you can use <a href="http://office.microsoft.com/officeupdate/" target="_blank">Office Update</a> instead. ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/05/12/microsoft-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ProcessExplorer for Windows</title>
		<link>http://spherebox.siansiew.com/2007/02/26/windows-processexplorer/</link>
		<comments>http://spherebox.siansiew.com/2007/02/26/windows-processexplorer/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:11:05 +0000</pubDate>
		<dc:creator>ck</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/02/26/windows-processexplorer/</guid>
		<description><![CDATA[These few months, I had been suffering an annoying problem whereby whenever I startup my company notebook, I had to wait for around 10 minutes due to a system process called &#8220;svchost.exe&#8221; that took away all the CPU time, and because of that I couldn&#8217;t do anything until the process &#8220;cool down&#8221; by itself Clueless [...]]]></description>
			<content:encoded><![CDATA[<p>These few months, I had been suffering an annoying problem whereby whenever I startup my company  notebook, I had to wait for around 10 minutes due to a system process called &#8220;<a href="http://support.microsoft.com/kb/314056" target="_blank">svchost.exe</a>&#8221; that took away all the CPU time, and because of that I couldn&#8217;t do anything until the process &#8220;cool down&#8221; by itself</p>
<p>Clueless about what was the real culprit, I did a <a href="http://www.google.com">google</a> and  finally came across a program called &#8220;<a href="http://www.microsoft.com/technet/sysinternals/utilities/ProcessExplorer.mspx" target="_blank">ProcessExplorer</a>&#8220;. This useful utility is similar to the good old &#8220;Windows Task Manager&#8221; but it has some extra goodies that allow me to drill down to another level to see what programs are making use of the generic system processes like <em>explorer.exe</em> and <em>svchost.exe, </em>and even to kill it on the spot<em>.</em> This actually helped me to identify the culprit &#8211; <em>Automatic Update </em>was the service that took away all my CPU resource and I&#8217;ve eventually set it to &#8220;Manual&#8221;.</p>
<p dragover="true" align="center"><a href="http://spherebox.com/wp-content/uploads/2007/02/image004.jpg" title="Conventional Task Manager"><img src="http://spherebox.com/wp-content/uploads/2007/02/image004.thumbnail.jpg" alt="Conventional Task Manager" /> </a><a href="http://spherebox.com/wp-content/uploads/2007/02/processexplorer.jpg" title="ProcessExplorer"><img src="http://spherebox.com/wp-content/uploads/2007/02/processexplorer.thumbnail.jpg" alt="ProcessExplorer" /></a></p>
<p dragover="true">Other than that, there are plenty unique capabilities of <em>ProcessExplorer</em> for handling leaks, troubleshooting, and provide more insight into the way Windows and applications work. What&#8217;s more, the installation of <em>ProcessExplorer</em> is effortless (it doesn&#8217;t need installation at all, to be precise), and it also supports the latest <a href="http://www.microsoft.com/windows/products/windowsvista/default.mspx" target="_blank">Windows Vista</a>.</p>
<p align="left"><em>ProcessExplorer</em> can be downloaded <a href="http://www.microsoft.com/technet/sysinternals/utilities/ProcessExplorer.mspx" target="_blank">here</a>, and for your reference, please checkout the screenshot above for comparison between conventional <em>Task Manager</em> and <em dragover="true">ProcessExplorer</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/02/26/windows-processexplorer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Vista and Office 2007 Launch Ceremony</title>
		<link>http://spherebox.siansiew.com/2007/02/03/windows-vista-and-office-2007-launch-ceremony/</link>
		<comments>http://spherebox.siansiew.com/2007/02/03/windows-vista-and-office-2007-launch-ceremony/#comments</comments>
		<pubDate>Sat, 03 Feb 2007 15:42:47 +0000</pubDate>
		<dc:creator>ck</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/02/03/windows-vista-and-office-2007-launch-ceremony/</guid>
		<description><![CDATA[Microsoft&#8217;s flagship product &#8211; Windows Vista and productivity suite Office 2007 were officially launched in Malaysia at Lowyat Plaza today. It was pretty grand and in fact the atmosphere was greater than I expected. If you want to see more, I&#8217;ve posted some footage here, hope you guys enjoy it :)]]></description>
			<content:encoded><![CDATA[<p><img src="http://spherebox.com/wp-content/uploads/2007/02/dsc00216.JPG" alt="Launch ceremony" /></p>
<p>Microsoft&#8217;s flagship product &#8211; <em>Windows Vista</em> and productivity suite <em>Office 2007</em> were officially launched in Malaysia at Lowyat Plaza today. It was pretty grand and in fact the atmosphere was greater than I expected.</p>
<p>If you want to see more, I&#8217;ve posted some footage <a href="http://ck.spherebox.com/2007/02/03/vista-launch-lyp-day-1-footage/" target="_blank">here</a>, hope you guys enjoy it :)</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/02/03/windows-vista-and-office-2007-launch-ceremony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Windows Vista (Home Premium) review</title>
		<link>http://spherebox.siansiew.com/2007/02/01/microsoft-windows-vista-home-premium-review/</link>
		<comments>http://spherebox.siansiew.com/2007/02/01/microsoft-windows-vista-home-premium-review/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 08:11:40 +0000</pubDate>
		<dc:creator>ck</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/02/01/microsoft-windows-vista-home-premium-review/</guid>
		<description><![CDATA[Got my new rig in the last day of Jan 2007, together with a copy of OEM Windows Vista Home Premium edition. As promised, I&#8217;m writing a review of the OS. While this review is obviously not as complete or professional as other articles that you could find elsewhere, it gives you my very own [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://spherebox.com/wp-content/uploads/2007/02/dsc00155.JPG" id="image148" alt="My OEM pack" /><br />
Got my new rig in the last day of Jan 2007, together with a copy of OEM <a href="http://www.microsoft.com/windows/products/windowsvista/default.mspx" target="_blank">Windows Vista</a> Home Premium edition. As promised, I&#8217;m writing a review of the OS.</p>
<p>While this review is obviously not as complete or professional as other articles that you could find elsewhere, it gives you my very own and neutral opinions on this Microsoft&#8217;s flagship product.</p>
<p> <em><strong>Introduction</strong></em></p>
<p>Windows Vista is the first major OS product from Microsoft since the release of Windows XP, more than 5 years ago. During this period, OSes like MacOS X and some Linux distros have been released and offering much more than what Windows XP is capable of, and because of this, the release of Windows Vista is often being considered &#8220;over-hyped&#8221;. However, the hype given to Windows Vista is understandable, as Microsoft is still the biggest software company in the planet, and Windows is still the most popular operating system around.</p>
<p>In this article, I&#8217;ll concentrate on the improvements compare to its predecessor (Windows XP), rather than comparing it with other OSes such as <a href="http://www.linux.org/" target="_blank">Linux</a> or <a href="http://www.apple.com/macosx/" target="_blank">MacOS X</a>. It will also not cover each and every aspect of the OS, but only the functions that deserve a mention IMO.</p>
<p>My Windows Vista is being tested with the rig specified <a href="http://ck.spherebox.com/2007/01/31/my-new-c2d-powered-rig/" target="_blank">here</a></p>
<p><em><strong>User Interface</strong></em></p>
<p><a href="http://spherebox.com/wp-content/uploads/2007/02/flip3d.jpg" class="imagelink" title="Flip 3D"><img src="http://spherebox.com/wp-content/uploads/2007/02/flip3d.thumbnail.jpg" id="image136" alt="Flip 3D" /></a><span class="imagelink"> <a href="http://spherebox.com/wp-content/uploads/2007/02/transparent-window.jpg" class="imagelink" title="Transparent Window - now it looks more like a real Window eh?"><img src="http://spherebox.com/wp-content/uploads/2007/02/transparent-window.thumbnail.jpg" id="image137" alt="Transparent Window - now it looks more like a real Window eh?" /></a><span class="imagelink"> <a href="http://spherebox.com/wp-content/uploads/2007/02/visual-style-personalization.jpg" class="imagelink" title="VS Customisation"><img src="http://spherebox.com/wp-content/uploads/2007/02/visual-style-personalization.thumbnail.jpg" id="image138" alt="VS Customisation" /></a></span></span></p>
<p>With the introduction of new stuff like <a href="http://en.wikipedia.org/wiki/Aero_Glass" target="_blank">Aero</a>, Flip 3D, higher resolution icons, <a href="http://en.wikipedia.org/wiki/Windows_gadgets" target="_blank">Windows Gadgets</a> (to be further discussed) etc, Windows Vista is indeed an eye candy. Whether or not Windows is copying the idea from other OS (you know it), doesn&#8217;t appear to be a problem to me (who cares?) The most important thing is, those functions are eye-pleasing as well as practical.</p>
<p>Anyway, the eye-catching user interface comes with a hefty price (literally), it requires relatively higher hardware requirements. To check whether your system is ready for Windows Vista, you can <a href="http://www.microsoft.com/windows/products/windowsvista/buyorupgrade/upgradeadvisor.mspx" target="_blank">download the upgrade advisor here</a>. With a low-end graphic card like Nvidia GeForce 7300GS, it only gives me a 3.7 experience index in &#8220;Graphics&#8221;, however, I&#8217;m still able to run Aero smoothly.</p>
<p dragover="true">For those who are complaining the hardware requirements are too overly high, or Windows Vista is taking up their system resources especially their precious RAM, you always have the option to disable Aero or Flip3D, it&#8217;s not like you have no choice.  To enjoy the bells and whistles, you must pay for the price, simple as that.</p>
<p><em><strong>Windows Sidebar Gadgets</strong></em></p>
<p><img src="http://spherebox.com/wp-content/uploads/2007/02/gadgets2.jpg" id="image141" alt="Gadgets" align="left" />Despite the claim that this is a rip off from MacOS X, it is probably a good news for Windows-based Desk modders, since they don&#8217;t have to use third party software from Stardock anymore, as it has been integrated into Windows itself.</p>
<p>Windows Gadgets are basically small applications that can be attached to the sidebar, like RSS feeds, calculator, calendar, CPU meter, weather and whatnots.</p>
<p>I personally think this is a great and definitely a nice to have function for users with good system spec (high RAM, to be precise). It&#8217;s not only just visually appealing, but some of the gadgets like calendar and clock are also practical to be used.</p>
<p>What&#8217;s more, you can always <a href="http://microsoftgadgets.com/" target="_blank">download extra gadgets</a> from the Internet for free, and the installation of gadget is nothing but just a mouse click. This gives users some kind of flexibility.</p>
<p><strong>Security</strong></p>
<p><a href="http://spherebox.com/wp-content/uploads/2007/02/defender.jpg" title="Windows Defender" class="imagelink"><img src="http://spherebox.com/wp-content/uploads/2007/02/defender.thumbnail.jpg" alt="Windows Defender" id="image142" /></a><span class="imagelink"> <a href="http://spherebox.com/wp-content/uploads/2007/02/ie7.jpg" title="IE 7" class="imagelink"><img src="http://spherebox.com/wp-content/uploads/2007/02/ie7.thumbnail.jpg" alt="IE 7" id="image143" /></a><span class="imagelink"> <a href="http://spherebox.com/wp-content/uploads/2007/02/windowssecurity-alert.jpg" title="UAC can be turned off, so can the security alert" class="imagelink"><img src="http://spherebox.com/wp-content/uploads/2007/02/windowssecurity-alert.thumbnail.jpg" alt="UAC can be turned off, so can the security alert" id="image144" /></a></span></span></p>
<p>With the widespread of Internet access, security has become a major concern not only to business users, but also to home users. Microsoft has definitely learned the lessons in WinXP and IE6, and has substantially improved its security in Windows Vista by offering Windows Defender, IE7, a proper Firewall, Bitlocker* and Encryting File system* (in Business and Ultimate version only). However, unlike Microsoft&#8217;s previous plan, no Antivirus is bundled with the OS, meaning to say,  you&#8217;ll still have to look for a third party antivirus elsewhere.</p>
<p>While Microsoft&#8217;s effort in improving security is much appreciated, they might have overdone it. By default, Windows is asking the user for confirmation each and every time an executable file is being executed. I understand that this function is good for inexperienced users as well as preventing EXE files from being executed automatically, it does not change the fact that most of the experienced users find it extremely annoying. Anyway, this can be easily gotten rid of, by turning off the UAC (even though Windows Vista doesn&#8217;t recommend it)</p>
<p><em><strong>Compatiblity</strong></em></p>
<p><a href="http://spherebox.com/wp-content/uploads/2007/02/compatiblity.jpg" class="imagelink" title="Compatibility mode"><img src="http://spherebox.com/wp-content/uploads/2007/02/compatiblity.thumbnail.jpg" id="image145" alt="Compatibility mode" align="left" /></a>The main reason why I go for 32-bit is that, it really takes a long long time for 64-bit to get common. But still, due to the fact that Windows Vista is a new OS, and compatibility issues is inevitable.</p>
<p>Anyway, most of the things work well, I&#8217;ve managed to install these applications without any problem (all are latest version to date):</p>
<p><em>7-Zip, K-lite Mega Codec pack,  Paint.NET, Avast!, CCleaner, Flashget, Firefox, OpenOffice, Skype</em></p>
<p>However, I was facing some problems with my D-link USB Wireless adapter, and the onboard soundcard. It took me a really long time to get those issues resolved (you know, those minor issues).</p>
<p>And also, while there are wide range of free antivirus to choose from, Avast! is probably the only free antivirus that works well in Vista as of now.</p>
<p>What we can do is really just wait, as I&#8217;m pretty sure that applications and drivers in near future will definitely cater of Windows Vista.</p>
<p>For the full list of applications/games compatibility, <a href="http://www.iexbeta.com/wiki/index.php/Windows_Vista_Software_Compatibility_List" target="_blank">please read here</a>.</p>
<p><em><strong>Stability</strong></em></p>
<p>Despite Microsoft&#8217;s claim that Windows Vista is the most tested software ever from the software firm, the stability of the system has not yet been convincing. I&#8217;ve encountered several situations whereby applications stopped responding, and needed to close.</p>
<p>For example, when I&#8217;m configuring my mic with WLM and configuring speech recognition at the same time, the system will hang and I&#8217;ll have to end the task by going to task manager. I&#8217;m also encountering stability problem with VMWare player that I&#8217;ve chosen to uninstall it.</p>
<p>While Windows Vista is working fine most of the time, what I&#8217;m trying to say is, stability is really something that Microsoft needs to improve and I hope hotfixes will be released ASAP to solve all these.</p>
<p><em><strong>Windows Search</strong></em></p>
<p><a href="http://spherebox.com/wp-content/uploads/2007/02/search.jpg" class="imagelink" title="Windows Search"><img src="http://spherebox.com/wp-content/uploads/2007/02/search.thumbnail.jpg" id="image147" alt="Windows Search" align="left" /></a>Yet another major improvements in Windows Vista is definitely its search function. While it probably takes you 10 minutes just to search a file, you can do it instantly in Windows Vista (a.k.a search as you type).</p>
<p>While this function has been offered by other third party software like Google Desktop search, it&#8217;s always good to have it integrated in the OS instead.</p>
<p><em><strong>Windows Anytime Upgrade</strong></em></p>
<p><img src="http://spherebox.com/wp-content/uploads/2007/02/anytime-upgrade.jpg" alt="Anytime Upgrade" id="image146" /></p>
<p>Purchased Home Basic edition, but find out that you REALLY need the functions offered by Ultimate edition?</p>
<p>Rest assured, while not denying that it is a marketing strategy from Microsoft, <a href="http://en.wikipedia.org/wiki/Windows_Anytime_Upgrade" target="_blank">Windows Anytime Upgrade</a> provides you the flexibility of upgrading your current OS to a more powerful version, without having to buy the full version again, and without having to re-install the whole OS.</p>
<p>Just for your information, this function is not available to Malaysian users yet, as of today. But I&#8217;m considering upgrading it to Windows Vista Ultimate whenever it is available.</p>
<p><strong>Untested features </strong></p>
<p>Readyboost, Readydrive, Superfetch etc. Feature like Readyboost is pretty hard to test as it requires a really big USB drive and the difference might be too small for me to notice especially when I&#8217;m having 2GB of RAM. However, I might post separate articles regarding these features in future if I&#8217;ve found a proper way to test them.</p>
<p>EDIT: Added an article about Windows Vista Speech Recognition <a href="http://ck.spherebox.com/2007/02/03/windows-vistas-speech-recognition/" target="_blank">here</a></p>
<p><strong>My Final Say</strong></p>
<p>Some of you might be thinking, I&#8217;ve just got my OEM Vista yesterday and it only takes a day for me to fully review it? It must be kidding! For your info, I&#8217;ve been testing Vista since the Beta stage, and it took me a whole night to explore the improvements in the final build.</p>
<p>My verdict is, Windows Vista is a much better version if compare to Windows XP, however, considering the rather long development and testing duration, Microsoft could have definitely done much better than this. But anyway, the first service pack is scheduled to be released this year itself, and I&#8217;d expect it to be more robust and stable OS by then.</p>
<p>If you insist me to rate it, I&#8217;d give a 7.5/10 for now :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/02/01/microsoft-windows-vista-home-premium-review/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Is Windows Vista &#8220;over-hyped&#8221;?</title>
		<link>http://spherebox.siansiew.com/2007/01/23/is-windows-vista-over-hyped/</link>
		<comments>http://spherebox.siansiew.com/2007/01/23/is-windows-vista-over-hyped/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 16:03:20 +0000</pubDate>
		<dc:creator>ck</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/01/23/is-windows-vista-over-hyped/</guid>
		<description><![CDATA[The general availability (GA) of Windows Vista is just around the corner, reviews/articles/rumors/screenshots have been posted in a lot of tech-oriented sites, developers are getting themselves ready, and some Microsoft fanboys just can&#8217;t wait for this first major OS release since the good-ol Windows XP. However, Linus Torvalds, the creator of Linux, doesn&#8217;t look particularly [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="Windows Vista" title="Windows Vista" src="http://ck.spherebox.com/wp-content/uploads/2006/12/250pxwindowsvistazo3.png" /></p>
<p>The general availability (GA) of <a target="_blank" href="http://www.microsoft.com/windowsvista/">Windows Vista</a> is just around the corner, reviews/articles/rumors/screenshots have been posted in a lot of tech-oriented sites, developers are getting themselves ready, and some Microsoft fanboys just can&#8217;t wait for this first major OS release since the good-ol <a target="_blank" href="http://www.microsoft.com/windowsxp/">Windows XP</a>.</p>
<p>However, <a target="_blank" href="http://en.wikipedia.org/wiki/Linus_Torvalds">Linus Torvalds</a>, the creator of <a target="_blank" href="http://en.wikipedia.org/wiki/Linux">Linux</a>, doesn&#8217;t look particularly impressed (rather predictable) and refers Windows Vista to as &#8220;Over-hyped&#8221;. &#8220;I don&#8217;t actually think that something like Vista will change how people work that much,&#8221; Torvalds told Computerworld. &#8220;I think it, to some degree, has been over-hyped as being something completely new and I don&#8217;t actually think it is.&#8221;</p>
<p>In Sydney for this year&#8217;s linux.conf.au Linux and open source conference, Torvalds said the Vista interfaces may look different but it doesn&#8217;t really change fundamentals of the operating system &#8220;in many ways&#8221;. <a target="_blank" href="http://www.linuxworld.com.au/index.php/id;261269498;fp;2;fpid;1">Read the full story HERE</a></p>
<p>In my humble opinion, it is hard to judge whether it is a case of sour grapes, but I do somehow agree with Linus that undue hype has been given to Vista, probably because of its relatively long development period.</p>
<p>But still, no one can deny that Microsoft is a good marketing company. Remember how Microsoft advertised its IE7&#8242;s Tabbed-browsing and RSS support as if those technologies have never existed before? :P</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/01/23/is-windows-vista-over-hyped/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add a digital file shredder to your desktop.</title>
		<link>http://spherebox.siansiew.com/2007/01/16/add-a-digital-file-shredder-to-your-desktop/</link>
		<comments>http://spherebox.siansiew.com/2007/01/16/add-a-digital-file-shredder-to-your-desktop/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 14:08:48 +0000</pubDate>
		<dc:creator>Ben Jim</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://spherebox.com/2007/01/16/add-a-digital-file-shredder-to-your-desktop/</guid>
		<description><![CDATA[The only way to ensure that deleted files, as well as files that you encrypt with EFS, are safe from recovery is to use a secure delete application. There are numerous softwares to securely delete sensitive files off your hard drive. In this tutorial we will be using SDelete (by previously sysinternal) which can be [...]]]></description>
			<content:encoded><![CDATA[<p><img align="left" id="image131" src="http://spherebox.com/wp-content/uploads/2007/01/shredder-1.JPG" alt="shredder-1.JPG" />The only way to ensure that deleted files, as well as files that you encrypt with EFS, are safe from recovery is to use a secure delete application. There are numerous softwares to securely delete sensitive files off your hard drive. In this tutorial we will be using SDelete (by previously sysinternal) which can be downloaded from <a href="http://www.microsoft.com/technet/sysinternals/utilities/SDelete.mspx">here</a>. It is a command line application which makes it ideal for creating batch files.</p>
<p>This would be a good setup for those who are working with sensitive data and don&#8217;t want to wait for a zero-fill reformat to destroy those sensitive data files. Save a batch file on your desktop right next to your recycling bin, so you can now just drag and drop sensitive files onto the batch file icon to shred them digitally. Use the normal Recycle Bin for file you don&#8217;t wanna shred. For those with paws instead of hands I advise caution. </p>
<p>Download, extract and save SDelete.exe to your c:\windows\system32</p>
<p>Open a new notepad and key in the following&#8230;</p>
<p><code>@echo off<br />
echo . --- W A R N I N G ---<br />
echo .<br />
echo .the file(s)/folders(s) will be shredded! Are you sure?<br />
echo .<br />
echo . use CTRL-C to abort or...<br />
echo .<br />
pause<br />
sdelete -p 4 -s %1<br />
pause</code></p>
<p>and save it as a *.bat file on your desktop. As mentioned earlier, you can now just drag and drop sensitive files onto the batch file icon to shred them digitally.</p>
<p><img id="image132" src="http://spherebox.com/wp-content/uploads/2007/01/shredder-2.JPG" alt="shredder-2.JPG" /></p>
<p>Please note that shredding digital files, like it&#8217;s real world equivalent isn&#8217;t a 100% process. As in the real world where people can use a sellotape to paste back the shredded strings and reconstruction the original documents, completely removing traces of the file in all operating systems is similarly unlikely. In NTFS, it is extremely likely that copies of the target file will be made elsewhere in the volume. Also, if there is anything in the I/O stack performing write coalescing, then the file you&#8217;re trying to securely erase may only be overwritten on the physical disk once and not x number of times as suppose to be done by the shredding application.</p>
]]></content:encoded>
			<wfw:commentRss>http://spherebox.siansiew.com/2007/01/16/add-a-digital-file-shredder-to-your-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
