<?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>954NETWORK BLOG! &#187; General Computing</title>
	<atom:link href="http://blog.954network.com/category/tech-tips/general-computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.954network.com</link>
	<description>Information Technology Solutions Blog - Presented by 954Network, Inc.</description>
	<lastBuildDate>Thu, 08 Oct 2009 14:16:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Schedule Hard Drive Defrag through Logon Script</title>
		<link>http://blog.954network.com/2009/06/03/schedule-hard-drive-defrag-through-logon-script/</link>
		<comments>http://blog.954network.com/2009/06/03/schedule-hard-drive-defrag-through-logon-script/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:57:34 +0000</pubDate>
		<dc:creator>digitalkid</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Defragment Login Script]]></category>
		<category><![CDATA[Schedule Automatic Defrag]]></category>
		<category><![CDATA[Schedule Defragment]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=181</guid>
		<description><![CDATA[Hello again,
Recently I had a need to schedule a monthly defrag on all of the client machines in one of the networks that I manage. As usual, finding an efficient way of centrally deploying such a task is much easier than going to each machine and manually creating the task. I accomplished this by editing [...]]]></description>
			<content:encoded><![CDATA[<p>Hello again,</p>
<p>Recently I had a need to schedule a monthly defrag on all of the client machines in one of the networks that I manage. As usual, finding an efficient way of centrally deploying such a task is much easier than going to each machine and manually creating the task. I accomplished this by editing the SBS_LOGIN_SCRIPT.bat that is present on all SBS 2003 servers by default. Of course, if you are not in an SBS environment, you can apply this to any other login scripts that you may already have or create a new one and deploy it through Group Policy.</p>
<p>For my purposes, I needed a defrag to run automatically monthly on all machines so I used an app called schtasks.exe that is already installed on all 2000/XP machines. You can read the syntax by typing &#8220;schtasks /?&#8221; at the command prompt. Below is the line I added to my login script.</p>
<p>schtasks.exe /create /SC MONTHLY /D 20 /TN DefragMonthly /TR &#8220;C:\Windows\System32\defrag.exe\&#8221;C: -f&#8221; /ST 00:45:00 /SD 06/01/2009 /RU SYSTEM</p>
<p>Now, let me explain that as it may look cryptic..</p>
<p>/create &#8211; Indicates you are creating a scheduled task.<br />
/SC &#8211; Specifies the Schedule Frequency (MONTHLY in this case).<br />
/D &#8211; The Day of the month is should run (the 20th of each month in this case).<br />
/TN &#8211; The Task Name (MonthlyDefrag in this case).<br />
/TR &#8211; Task Run specifies the task to be ran or the application to be executed (&#8221;C:\Windows\System32\defrag.exe\&#8221;C: -f&#8221; in this case ((defrag.exe /? for more info on this))).<br />
/ST &#8211; Start Time is the Hour at which the task should start in 24 hour format.<br />
/SD &#8211; The Start Date, pretty self explanatory.<br />
/RU &#8211; The user to run the task as (SYSTEM in this case &#8211; Must be SYSTEM or and Administrator).</p>
<p>After adding the above line to the Login Script, a new scheduled task will be added to the machines that run the login script. You can then wait until after the schedule was set to be run and check if it ran.</p>
<p>That is it for now..</p>
<p>DigitalKid (Jason)<br />
<a href="http://www.954network.com">www.954network.com</a></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2009/06/03/schedule-hard-drive-defrag-through-logon-script/&amp;t=Schedule+Hard+Drive+Defrag+through+Logon+Script&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2009/06/03/schedule-hard-drive-defrag-through-logon-script/&amp;title=Schedule+Hard+Drive+Defrag+through+Logon+Script&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Schedule+Hard+Drive+Defrag+through+Logon+Script;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2009/06/03/schedule-hard-drive-defrag-through-logon-script/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 8 Review</title>
		<link>http://blog.954network.com/2009/03/21/internet-explorer-8-review/</link>
		<comments>http://blog.954network.com/2009/03/21/internet-explorer-8-review/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 15:41:33 +0000</pubDate>
		<dc:creator>digitalkid</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[IE8 Review]]></category>
		<category><![CDATA[Internet Explorer 8 Features]]></category>
		<category><![CDATA[Internet Explorer 8 Review]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=165</guid>
		<description><![CDATA[As Microsoft Goes, competing in the Browser Industry has been a battle. After all of the exploits and holes that have been discovered and exploited over the years, many users have switched to alternative browsers such as FireFox. To combat this trend, MS released IE (Internet Explorer) 7 &#8211; Which enhanced security and added many [...]]]></description>
			<content:encoded><![CDATA[<p>As Microsoft Goes, competing in the Browser Industry has been a battle. After all of the exploits and holes that have been discovered and exploited over the years, many users have switched to alternative browsers such as FireFox. To combat this trend, MS released IE (<strong>I</strong>nternet <strong>E</strong>xplorer) 7 &#8211; Which enhanced security and added many features that Microsoft&#8217;s browsers had lacked in comparison with others such as tabbed browsing. Now they have improved upon IE 7 and released IE 8. I recently installed the new browser and took a short tour of the new features, below are my thoughts.</p>
<p><strong>Accelerators:</strong> These allow you to complete tasks (Such as Spell Checks, Mapping, Translations etc). There are endless numbers of accelerators that you can add to IE 8 &#8211; Social Networking, Search, Translations, Maps and On and On. You can find the gallery of Accelerators here: <a href="http://ieaddons.com/en/">http://ieaddons.com/en/</a>. Some seem very useful, others not so much - Most of which are entertaining and will contribute to your Internet time wasting by adding direct interaction with sites like Face Book and others.</p>
<p><strong>Enhanced Navigation Features:</strong> IE 8 has added a few new features to navigation. One that I find to be pretty cool as a techie is the Compatibility View feature. Since IE8 is a new release, some sites may not display properly within the browser. That is where Compatibility View comes in. You can find this feature next to the &#8220;refresh&#8221; button on the address bar. This is similar to the &#8220;User Agent String Utility&#8221; accept now these features are built right into the browser &#8211; No need to install a second application.</p>
<p>Speaking of the Address bar, there are a few enhancements here as well. For example, if you cannot remember a site that you visited a few days/weeks/months (depending on your history settings and browsing habits) IE 8 Will search across all aspects of your history and suggest sites. This is especially useful when doing research online.</p>
<p>Tab Grouping is also a helpful feature. When you click a link that opens another tab, the 2 related tabs (having the link in common) are color coded to each other. They are also opened next to each other as opposed to at the end of the tabs as with IE 7.</p>
<p><strong>Increased Performance:</strong> Now IE starts quicker and loads pages faster. I am somewhat skeptical of this as I think it also depends on how many add-ons and plug-ins and other features that you have installed/enabled. I guess results will vary from user to user. I can say that it definitely loads faster for me but I have very few add-ins enabled and virtually no plug-ins installed.</p>
<p><strong>InPrivate Browsing:</strong> Browse the web without saving history Cookies etc. This is useful when using a public computer or a friends PC. No form or password data (or any other data) is maintained on the computer after it is entered into the sites that you visit. This is also useful for the paranoid and those trying to &#8220;Cover their Tracks&#8221;.</p>
<p><strong>Web Slices:</strong> Keep track of changes to your favorite sites. This is basically like a favorites system. For example, if you wanted to keep track of what is going on on MSNBC, you would see a green &#8220;Web Slice&#8221; icon in the upper right corner of the browser. By clicking the Web Slice icon, you add this site to the web slice favorites bar so that you can keep up with that &#8220;Slice&#8221; of the web.</p>
<p><strong>Smart Screen Filter:</strong> Websites that have been deemed unsafe can be screened using this feature. You can also submit a site to the list of questionable sites. This does not seem very useful to me personally but may be useful for parents etc. You can enable this feature by clicking on the &#8220;Safety&#8221; drop down on the Right side of the browser window and choosing &#8220;InPrivate Filtering&#8221;.</p>
<p>All in All, my experience with Internet Explorer 8 so far Has been a good one. I will have to use it for a few more days before I am sure that I like it though and I will definitely have to thoroughly test it before deploying it to any of my clients. As with any new browser, it will take some time to learn all of the new features and test as many sites as possible for compatibility and functionality. I will also be testing the Web Slice features as I have always HATED the favorites system.</p>
<p>Jason (Digitalkid)<br />
<a href="http://www.954network.com"><span style="color: #215679;">www.954network.com</span></a></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2009/03/21/internet-explorer-8-review/&amp;t=Internet+Explorer+8+Review&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2009/03/21/internet-explorer-8-review/&amp;title=Internet+Explorer+8+Review&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Internet+Explorer+8+Review;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2009/03/21/internet-explorer-8-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Symantec Backup Exec 10d-11d-12.X email alert configuration.</title>
		<link>http://blog.954network.com/2009/02/24/symantec-backup-exec-10d-11d-12x-email-alert-configuration/</link>
		<comments>http://blog.954network.com/2009/02/24/symantec-backup-exec-10d-11d-12x-email-alert-configuration/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 14:39:56 +0000</pubDate>
		<dc:creator>digitalkid</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Microsoft Exchange]]></category>
		<category><![CDATA[BackupExec Email Alerts]]></category>
		<category><![CDATA[BackupExec Email Relay]]></category>
		<category><![CDATA[Not receiving email alerts backupexec]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=134</guid>
		<description><![CDATA[Firstly, I would like to say hello again. I have not posted in quite a while as I have been preoccupied with the holidays and the end of the tax year and beginning of the new year.
Now that we have that out of the way, I have seen a lot of people wondering how to [...]]]></description>
			<content:encoded><![CDATA[<p>Firstly, I would like to say hello again. I have not posted in quite a while as I have been preoccupied with the holidays and the end of the tax year and beginning of the new year.</p>
<p>Now that we have that out of the way, I have seen a lot of people wondering how to configure email alerts from Symantec BackupExec. Most are having issues receiving the alerts once they have configured the server settings. The application seems to not want to send email through a local Exchange Server (Relay). I have had this issue in the past myself and have a few ways to get around this that I thought I would share with you - so lets get started.</p>
<p>First off, when configuring the Alert Settings, in older versions of BackupExec (9.X, 10.X, 11.X), you will notice that there are no options for SMTP authentication, which means you need a relay. One way around this is if your ISP allows you to relay through their servers when behind an IP assigned by them. If this applies to you, you can ask them what their outbound SMTP server address is and use that as a relay. This typically works with BellSouth and FDN in my experience. Ask your ISP or just test this configuration and see if it works with your Internet Provider.</p>
<p>The second method is relatively easy and only requires that you use localhost as your SMTP server. You can do this in a few situations. The first is if you have BackupExec installed on your Exchange server or SBS Server locally. Simply open Exchange System Manager, Expand Administrative Groups &gt; First Administrative Group &gt; Servers &gt; [You Server Name] &gt; Protocols &gt; SMTP. Right Click the Default SMTP Virtual Server and choose properties. Go to the Access tab and click the Relay button. You should see that your local subnet as well as the local host are allowed to relay. If you do not see this, add these items to the allow relay list and configure BackupExec to use Localhost (127.0.0.1) as the mail server. Test these settings under the recipients configuration. This should also work for remote machines, just add the IP address of the remote machine that you want to allow to relay.</p>
<p>The third method uses the MAPI configuration. To do this, you will need to create a contact in Active Directory Users and Computers that has the email address that you would like to receive alerts to assigned to it. I am not going to go into how to create a contact in this post. After creating the contact, open BackupExec, go to Email and Pager notifications. Choose the MAPI Configuration tab and specify your Exchange Server under MAPI mail server. For mailbox name, Specify the contact that you created earlier. When messages are sent to this contact, they should go to the email address that is associated with the contact. I am not sure if this works on servers that are remote to the Exchange server though so you will have to experiment if your BackupExec installation is not on the same machine that Exchange lives on.</p>
<p>If all of the above do not work for you, I suggest upgrading to the latest version of BackupExec (version 12.X as of this post) which allows SMTP authentication to be configured for outbound email. Alternatively, you could install SMTP on a remote server (whether it runs BackupExec or not) and allow relay only from the servers that you want alerts sent from. This can be done under Add/Remove Programs &gt; Add/Remove Windows Components: Under &#8211; Application Server &gt; Internet Information Services &gt; SMTP Service. I will not go into the details of this configuration but it is fairly easy to set up and as always, google.com can assist.</p>
<p>Jason (Digitalkid)<br />
<a href="http://www.954network.com">www.954network.com</a></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2009/02/24/symantec-backup-exec-10d-11d-12x-email-alert-configuration/&amp;t=Symantec+Backup+Exec+10d-11d-12.X+email+alert+configuration.&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2009/02/24/symantec-backup-exec-10d-11d-12x-email-alert-configuration/&amp;title=Symantec+Backup+Exec+10d-11d-12.X+email+alert+configuration.&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Symantec+Backup+Exec+10d-11d-12.X+email+alert+configuration.;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2009/02/24/symantec-backup-exec-10d-11d-12x-email-alert-configuration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 7 Vulnerability</title>
		<link>http://blog.954network.com/2008/12/17/internet-explorer-7-vulnerability/</link>
		<comments>http://blog.954network.com/2008/12/17/internet-explorer-7-vulnerability/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 15:44:49 +0000</pubDate>
		<dc:creator>digitalkid</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[IE 7 Vulnerability]]></category>
		<category><![CDATA[Internet Explorer Exploit 12/08]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=124</guid>
		<description><![CDATA[Recently, a new vulnerability has been discovered in Internet Explorer 7, affecting Windows XP, Server 2003/2008 and Windows Vista. Known as the &#8220;Internet Explorer XML Zero-Day&#8221;, it has already been seen in the wild in China. The vulnerability allows a remote attacker to take control of a users PC after successful exploitation. The exploit occurs [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, a new vulnerability has been discovered in Internet Explorer 7, affecting Windows XP, Server 2003/2008 and Windows Vista. Known as the &#8220;Internet Explorer XML Zero-Day&#8221;, it has already been seen in the wild in China. The vulnerability allows a remote attacker to take control of a users PC after successful exploitation. The exploit occurs when a user visits a web site that has been poisoned by the exploit code. The user then inadvertently is infected with a Trojan, allowing remote code execution and full control of the infected computer.</p>
<p>Microsoft has not yet released a patch but is aware of the vulnerability and has released an advisory <a href="http://www.microsoft.com/technet/security/advisory/961051.mspx" target="_blank">HERE</a> as well as a work around that can be performed by Administrators <a href="http://support.microsoft.com/kb/961051" target="_blank">HERE</a>. This vulnerability is considered Critical. Users should remain vigilant when surfing the Internet and check often for future updates to patch the flaw if the work around is not performed.</p>
<p><strong>UPDATE:</strong> Microsoft has released a patch for this flaw through Windows Update. You can find more information about the patch <a href="http://support.microsoft.com/default.aspx/kb/960714" target="_blank">HERE.</a></p>
<p>Jason (Digitalkid)<br />
<a href="http://www.954network.com">www.954network.com</a></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2008/12/17/internet-explorer-7-vulnerability/&amp;t=Internet+Explorer+7+Vulnerability&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2008/12/17/internet-explorer-7-vulnerability/&amp;title=Internet+Explorer+7+Vulnerability&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Internet+Explorer+7+Vulnerability;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2008/12/17/internet-explorer-7-vulnerability/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install MAC OS X on Lenovo S10 from External Hard Drive</title>
		<link>http://blog.954network.com/2008/12/10/install-mac-os-x-on-lenovo-s10-from-external-hard-drive/</link>
		<comments>http://blog.954network.com/2008/12/10/install-mac-os-x-on-lenovo-s10-from-external-hard-drive/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 18:19:06 +0000</pubDate>
		<dc:creator>digitalkid</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Install OS X From Exernal USB Hard Drive]]></category>
		<category><![CDATA[Install OS X From Exernal USB Hard Drive on Lenovo S10]]></category>
		<category><![CDATA[Install OS X on Lenovo S10]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=98</guid>
		<description><![CDATA[Before I even begin, I would like to give credit where it is due. I used this article to guide me through the installation but I added a few steps along the way including how to do the installation from an External USB Hard Drive as opposed to an External DVD or USB Thumb Drive [...]]]></description>
			<content:encoded><![CDATA[<p>Before I even begin, I would like to give credit where it is due. I used <a href="http://www.netbooktech.com/2008/10/13/guide-to-installing-os-x-on-lenovo-ideapad-s10/" target="_blank">this</a> article to guide me through the installation but I added a few steps along the way including how to do the installation from an External USB Hard Drive as opposed to an External DVD or USB Thumb Drive (Both are also options). I would also like to thank all of the folks that found all of the drivers mentioned and linked to in this post.</p>
<p>I should also mention (As mentioned in the article above) that the WiFi (Airport) does not work out of the box nor does the sound or power options (Sleep, Dim etc.) or the LAN connection. The wireless is an easy fix but I am still working on the others and will post my results, if any, when I find a solution.</p>
<p><a href="http://blog.954network.com/wp-content/uploads/2008/12/img_0298.jpg"><img class="size-medium wp-image-99 alignnone" title="img_0298" src="http://blog.954network.com/wp-content/uploads/2008/12/img_0298-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Lets Get Started!</p>
<ol>
<li>Get a USB External Hard Drive if you do not already have one and Delete Partitions. Then create a 5 Gig FAT32 Partition. You can use the rest of the space as you see fit. I used the rest as an NTFS partition so that I could transfer files back and forth from my Vista Machine to the S10 (MAC) knowing that I would have no network connectivity to download WiFi Drivers.</li>
<li>Download the following applications:<br />
a. Leopard HD Install Helper &#8211; <a href="http://rapidshare.com/files/167528022/Leopard_hd_install_helper_v0.3.zip" target="_blank">HERE</a><br />
b. MSIWindowsx86.iso &#8211; Sorry, you will have to hunt this one down!</li>
<li>Run the Leopard HD Install Helper. Select the Image (MSIWindowsx86.iso) and The Destination drive (The FAT32 Partition) and click the start button. You may notice that the app is in a different language or is all question marks. Included in the Zip file is a GUI reference image.</li>
<li>Once you have accomplished the above tasks, Restart the S10 and During boot, Hold the &#8220;FN&#8221; key and push the &#8220;F11&#8243; key (FN+F11 = F12 for Boot Menu).</li>
<li>Select your USB external Hard Drive to boot. You will receive an error stating &#8220;No Operating System Found&#8221;, hit enter and you will be presented with the boot selection screen. Choose MAC Installation and Push Enter.</li>
<li>Once in setup, Choose your language and click next.</li>
<li>You should now be at the Welcome Screen. You now need to prepare your internal hard drive for the installation. Click &#8220;Utilities &gt; Disk Utility&#8221;.</li>
<li>At this point, you need to choose what drive to format and create partitions on. I went with the internal HDD which had XP Pro on it. erase/format the drive. I went with Mac File System (Journaled).</li>
<li>After this step is complete, click the continue button on the Welcome Screen and select the newly formatted drive to install the OS to. Click install and go get some coffee, it will be a while.</li>
<li>Once you reboot after the installation completes, you will be asked if you wan to transfer information from another Mac or backup and various other options. This typically results in an endless loop of rebooting regardless of your choice. You can bypass this step by booting with the -s option as follows:<br />
a. when you boot the machine and before you reach the login page, hit any key.<br />
b. You should now be at the terminal, type /sbin/fsck -fy and hit enter.<br />
c. Then type /sbin/mount -uw / and hit enter.<br />
d. cd to /Volumes/YOUR DISK HERE/var/db and type touch .AppleSetupDone and hit enter.</li>
<li>After completing the steps above, type passwd to set a root password for the laptop. Do not forget this password. Type exit and hit enter to reboot.</li>
<li>At the login window, login as root with the password that you just created. Go to System Preferences and create a regular user to your specifications. Log out as root and back in as the user you just created.</li>
</ol>
<p> </p>
<p>You are now running OS X on your Lenovo S10 but the WiFi still does not work. This is a relatively easy fix and can be accomplished using the instructions below.</p>
<p> </p>
<ol>
<li>Unplug the USB drive from your new OS X Installation and plug it into a machine with Internet access.</li>
<li>Download the Drivers from this thread &#8211; <a href="http://forum.insanelymac.com/index.php?showtopic=51725" target="_blank">HERE</a> and extract the files to your external hard drive on the second partition that you created. Plug the drive back into the S10 and copy the extracted file to your home directory.</li>
<li>To install the Driver, open a terminal window and cd to your home directory if necessary. type sudo ./bcm43xx_enabler_0.5.1pre.sh and enter your password when prompted (Alternatively you can log in as root and follow the same procedure minus the sudo). Accept all defaults and reboot. You should now be able to connect to your wireless network.</li>
<li>I then updated the sysytem with System Preferences &gt; Software Update. It is safe to update to 10.5.5 and all other updates that may be available although You will need to run the network installation script mentioned above after the update. This also breaks the screen resolution requiring you to install yet another driver (Read On!).</li>
<li>Download the video drivers <a href="http://www.freedrive.com/file/407744" target="_blank">HERE</a> as well as Kext Helper <a href="http://www.cheetha.net/Kext_Helper/Software.html" target="_blank">HERE</a> (and please, RTFM with Kext Helper!)</li>
<li>Once you have downloaded those packages, unzip them and drag the Kext files into Kext Helper, type in your Root password and click easy install. Reboot.</li>
</ol>
<p> </p>
<p>That is as far as I have gotten with mine as well like the forum mentioned at the top and the guide that I followed. I am going to try to work on the sound as well as the Power Options and LAN connection over the next few weeks and will post any results in the future.</p>
<p> </p>
<p><strong>UPDATE:</strong>After alot of google searches, I got the audio to work on the S10 Under OS X. Thanks to <a href="http://ipis-osx.wikidot.com/forum/t-101853/audieee:the-less-ugly-stop-gap" target="_blank">THIS</a> post. It was actually pretty easy to execute, just took a while to find the article linked above!:</p>
<p>You need the following applications:</p>
<ul>
<li><a href="http://www.mediafire.com/?enez1guzz1g" target="_blank">AzaliaAudio.pkg.zip</a></li>
<li><a href="http://www.elroyonline.com/misc/eeepc/Audieee_1.0.1.zip" target="_blank">Audieee 1.0.1</a></li>
<li>Apple Developer Tools (On DVD or Download from ADC)</li>
</ul>
<p>Basically, all that has to be done is to Remove AppleHDA.kext if it is installed (System Drive &gt; System &gt; Library &gt; Extensions). Install AzaliaAudio and Re-Boot. Install the Apple Developer Tools. Launch Audieee.</p>
<p>That&#8217;s It! Now your sound should work flawlessly. I also put Audieee in my start-up programs under my user preferences so it auto starts when I log in.</p>
<p>Jason (Digitalkid)<br />
<a href="http://www.954network.com">www.954network.com</a></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2008/12/10/install-mac-os-x-on-lenovo-s10-from-external-hard-drive/&amp;t=Install+MAC+OS+X+on+Lenovo+S10+from+External+Hard+Drive&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2008/12/10/install-mac-os-x-on-lenovo-s10-from-external-hard-drive/&amp;title=Install+MAC+OS+X+on+Lenovo+S10+from+External+Hard+Drive&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Install+MAC+OS+X+on+Lenovo+S10+from+External+Hard+Drive;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2008/12/10/install-mac-os-x-on-lenovo-s10-from-external-hard-drive/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Windows Vista &#8211; Speed Tips</title>
		<link>http://blog.954network.com/2008/11/24/windows-vista-speed-tips/</link>
		<comments>http://blog.954network.com/2008/11/24/windows-vista-speed-tips/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 21:16:18 +0000</pubDate>
		<dc:creator>digitalkid</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Slow Windows Vista]]></category>
		<category><![CDATA[Speed Up Vista]]></category>
		<category><![CDATA[Vista Speed]]></category>
		<category><![CDATA[Vista Tweaks]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=92</guid>
		<description><![CDATA[As many Windows Vista users know, Vista can be a real resource hog. This could not be more true on machines that are a few years old or upgraded to Vista from XP. As a Vista user, I have figured out a few ways to alleviate some of the slow down. Most of these methods [...]]]></description>
			<content:encoded><![CDATA[<p>As many Windows Vista users know, Vista can be a real resource hog. This could not be more true on machines that are a few years old or upgraded to Vista from XP. As a Vista user, I have figured out a few ways to alleviate some of the slow down. Most of these methods are relatively easy to implement, no registry edits or crazy long instructions so lets get started.</p>
<ol>
<li><strong>1. Aero -</strong> Vista has a new pretty user interface with lots of neat and exciting features but is it really necessary? If you are not one that is interested in aesthetics but rather functionality, turning off all of the effects is possible but it will make your snazzy new Vista box look like an XP machine. Here&#8217;s how:<br />
   a. Click Start and Right-Click Computer. Click Properties.<br />
   b. In the &#8220;Tasks&#8221; Section on the left, click &#8220;Advanced System Settings&#8221; and accept the UAC prompt.<br />
   c. In the next screen, click the settings button under the performance category.<br />
   d. Click the radio button labeled &#8220;Adjust for best performance&#8221; and click Apply.</li>
</ol>
<p>See what you think of this setup. You can customize which effects are enabled in the list to adjust to your liking. One way or the other, reducing the number of effects will improve overall performance as well as battery life on laptops.</p>
<p><strong>2. Unnecessary Services -</strong> As with past versions of Windows, there are some services that are started by default that are necessicarily required for proper operation but there are trade offs. To get to the services list, Click start and in the search field type &#8220;services.msc&#8221; (Without Quotes) and hit enter. Accept the UAC prompt to continue. You will now see a list of services, their current state and their start up state. Below is a short list of some that can be stopped and disabled as well as a brief word about what functionality you will loose.</p>
<ol>
<li>   a. Bluetooth Support &#8211; Loose the ability to use Bluetooth devices.<br />
   b. Diagnostic Policy Service &#8211; This disables the searching for solutions when a program crashes.<br />
   c. IP Helper &#8211; This enables IPv6 over IPv4 networks, which is not commonly used.<br />
   d. Windows Error Reporting &#8211; Disables sending of error reports to Microsoft.<br />
   c. Server &#8211; Enables you to share files on your network. If you do not share files, you can disable.<br />
   d. Tablet PC Input Service &#8211; Enables Tablet PC Pen and Ink input. Disable if not using tablet PC.</li>
</ol>
<p>I am sure that there are many other services that can be disabled based on the way you use your computer but the above can be disabled by most users without adverse effects.</p>
<p><strong>3. Disable Startup Items -</strong> Disabling start up applications has always been a no-brainer when trying to speed up your computer. The less applications that are loaded into memory at start up the faster the start up will be and the less memory will be consumed once start up is complete. This can be done in MSCONFIG as with previous versions of Windows. To access MSCONFIG, click start and in the search dialog, type &#8220;msconfig&#8221; (Without Quotes) and hit enter. Go to the start up tab and disable anything that is not necessary. These settings will vary from computer to computer but you can re-enable anything that seems to have an adverse effect.</p>
<p><strong>4. Limit Windows Search -</strong> Windows Vista has Instant search which means that it constantly scans and indexes the files that are on your computer and when you search for something it can be found quickly. While this sounds like a great option (Which it is) the indexing can be a burden on performance. Luckily there is a way to adjust what windows will search/index.</p>
<p>   a. Right-Click Start Button (Windows Pearl) and choose &#8220;Properties&#8221;<br />
   b. Click &#8220;Customize..&#8221; and scroll through the list for Search.<br />
   c. Adjust what is searched on your start menu to your preference.</p>
<p>You can also adjust what is indexed to your liking under Control Panel &gt; Indexing Options or Disable indexing all together by Stopping the Indexing service (You can find the service in the same location mentioned in number 2 above &#8211; Unnecessary Services).</p>
<p><strong>5. Disable Thumbnail View -</strong> While some like to see a thumbnail of the image files etc. when browsing their folders, I prefer details. This will speed up the time it takes to scroll through folders and navigate through other directories. Do disable thumbnail view, do the following.</p>
<p>   a. Open your My Documents Folder.<br />
   b. Click Tools and choose Folder Options.<br />
   c. In that window, click the &#8220;View&#8221; tab and check the top box labeled &#8220;Always show icons, never thumbnails&#8221;<br />
   d. Click &#8220;Apply to Folders&#8221;</p>
<p>This speeds up browsing folders and files. You can also change the default view to one of the other views (Details, Icons, Thumbnails etc) by changing it in the view menu and then following steps b, c, and d above. As it goes, I am sure there are many other things that can be done to speed up Vista, so if you have any, feel free to post-em here!</p>
<p>Jason (Digitalkid)<br />
<a href="http://www.954network.com">www.954network.com</a></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2008/11/24/windows-vista-speed-tips/&amp;t=Windows+Vista+-+Speed+Tips&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2008/11/24/windows-vista-speed-tips/&amp;title=Windows+Vista+-+Speed+Tips&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Windows+Vista+-+Speed+Tips;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2008/11/24/windows-vista-speed-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Like Aero from Vista? Check BERYL on Ubuntu Linux</title>
		<link>http://blog.954network.com/2008/11/19/like-aero-from-vista-check-beryl-on-ubuntu-linux/</link>
		<comments>http://blog.954network.com/2008/11/19/like-aero-from-vista-check-beryl-on-ubuntu-linux/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 21:27:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Aero vs Ubuntu Beryl]]></category>
		<category><![CDATA[Vista vs Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=81</guid>
		<description><![CDATA[Some of the hype that has surronded Windows Vista is the new User Interface named Aero. While Aero is nice, I prefer my Ubuntu box with Beryl. I found a great video demonstrating the capabilities of each. I am for Ubuntu! I have a very simulay setup on my Ubuntu laptop (ThinkPad T60 &#8211; Ubunto [...]]]></description>
			<content:encoded><![CDATA[<p>Some of the hype that has surronded Windows Vista is the new User Interface named Aero. While Aero is nice, I prefer my Ubuntu box with Beryl. I found a great video demonstrating the capabilities of each. I am for Ubuntu! I have a very simulay setup on my Ubuntu laptop (ThinkPad T60 &#8211; Ubunto 8.04).<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/xC5uEe5OzNQ&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/xC5uEe5OzNQ&amp;hl=en&amp;fs=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2008/11/19/like-aero-from-vista-check-beryl-on-ubuntu-linux/&amp;t=Like+Aero+from+Vista%3F+Check+BERYL+on+Ubuntu+Linux&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2008/11/19/like-aero-from-vista-check-beryl-on-ubuntu-linux/&amp;title=Like+Aero+from+Vista%3F+Check+BERYL+on+Ubuntu+Linux&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Like+Aero+from+Vista%3F+Check+BERYL+on+Ubuntu+Linux;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2008/11/19/like-aero-from-vista-check-beryl-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repair Corrupt Windows XP Registry</title>
		<link>http://blog.954network.com/2008/11/19/repair-corrupt-windows-xp-registry/</link>
		<comments>http://blog.954network.com/2008/11/19/repair-corrupt-windows-xp-registry/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 21:09:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[repair corrupt XP registry]]></category>
		<category><![CDATA[SYSTEM missing or corrupt]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=78</guid>
		<description><![CDATA[After working with Windows XP and computers in general for years now, I have seen my fare share of issues at boot time but this is one of my favorites. I am not going to go into full detail in this article, you can find a link to the actual Microsoft article at the bottom [...]]]></description>
			<content:encoded><![CDATA[<p>After working with Windows XP and computers in general for years now, I have seen my fare share of issues at boot time but this is one of my favorites. I am not going to go into full detail in this article, you can find a link to the actual Microsoft article at the bottom of this post.</p>
<p>The Scenario: When you go to boot your Windows XP machine, you are presented with the message &#8211; Windows could not start because the following file is missing or corrupt WINDOWS\SYSTEM32\CONFIG\SYSTEM (or SOFTWARE, SAM, DEFAULT or any variant). In this example, I will use the file &#8220;SYSTEM&#8221; as this is the one I see corrupted most often.</p>
<p>Luckily, this issue can be taken care of by replacing these files from the recovery console (Or your favorite Linux Live Distro). This article assumes that you already know how to set the CD-ROM as the first boot device in your BIOS and that you know the local Administrator password to the computer. Lets get started.</p>
<p>1. Insert your Windows XP CD and boot to it. When you are at the first screen, presenting options choose &#8220;R&#8221; for the recovery console.</p>
<p>2. Choose your windows installation if prompted and log in as Administrator to the Recovery Console command prompt.</p>
<p>3. Make a backup of the file that the error mentioned. Create a directory somewhere (md tmp) and copy the file C:\windows\system32\config\system to the tmp directory that you created above. (EXAMPLE: copy C:\windows\system32\config\system C:\tmp\system.bak)</p>
<p>4. Next delete the problematic file. (EXAMPLE: delete C:\windows\system32\config\system)</p>
<p>5. Finally, copy C:\windows\repair\system C:\windows\system32\config\system</p>
<p>Reboot your machine with your fingers crossed and see if you are able to get into windows. Below is the link to the MS article that outlines this procedure exactly.</p>
<p><a href="http://support.microsoft.com/kb/307545" target="_blank">http://support.microsoft.com/kb/307545</a></p>
<p>Jason (Digitalkid)<br />
<a href="http://www.954network.com">www.954network.com</a></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2008/11/19/repair-corrupt-windows-xp-registry/&amp;t=Repair+Corrupt+Windows+XP+Registry&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2008/11/19/repair-corrupt-windows-xp-registry/&amp;title=Repair+Corrupt+Windows+XP+Registry&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Repair+Corrupt+Windows+XP+Registry;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2008/11/19/repair-corrupt-windows-xp-registry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Safe Computing Practices</title>
		<link>http://blog.954network.com/2008/11/05/safe-computin-practices/</link>
		<comments>http://blog.954network.com/2008/11/05/safe-computin-practices/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 16:19:20 +0000</pubDate>
		<dc:creator>digitalkid</dc:creator>
				<category><![CDATA[General Computing]]></category>
		<category><![CDATA[Safe Computing]]></category>
		<category><![CDATA[Safe Internet Surfing]]></category>
		<category><![CDATA[Secure Computing]]></category>

		<guid isPermaLink="false">http://blog.954network.com/?p=36</guid>
		<description><![CDATA[These days, there are more and more people surfing the Internet and as you may expect, there are more and more threats to personal information and computer operation. That is why I am writing this short guide to Safe Computing. These are basic guidelines that you can use to reduce the threat of virus, spy-ware [...]]]></description>
			<content:encoded><![CDATA[<p>These days, there are more and more people surfing the Internet and as you may expect, there are more and more threats to personal information and computer operation. That is why I am writing this short guide to Safe Computing. These are basic guidelines that you can use to reduce the threat of virus, spy-ware or malware infection as well as Identity Theft and other Internet based threats.</p>
<p><strong>1. Make sure you have anti-virus software:</strong> This is one of the most important items to ensure that your computer remains safe from Internet Borne threats. There are plenty of solutions available, some of them free (AVG Free Edition &#8211; ClamWin) and some better than others. If you go the free route, I recommend AVG. If you decide to purchase an anti-virus suite, some good ones are AVG Professional, Symantec products and Computer Associates (CA) products. Any level of protection is better than none at all. Also, make sure to keep your software up to date as well as your subscription.</p>
<p><strong>2. Patch your Operating System / Applications: </strong>Microsoft regularly releases updates to all of their products. This includes Security updates, Service Packs and feature enhancements. Make sure to visit the Windows Update site at least monthly and keep your computer up to date. This is also very important and should never be taken lightly. You hardware or other software vendors may also release patches.</p>
<p><strong>3. Pay Attention to Emerging Threats:</strong> From time to time you will here about a new virus, flaw or vulnerability on the news or elsewhere. When these bulletins are released, read up on them and assess your risk; apply any applicable updates and avoid any pitfalls mentioned. Just be sure it is legitimate. There are some hoaxes out there so make sure you only follow any instructions from a trusted source.</p>
<p><strong>4. Beware of your Click:</strong> Some sites have advertisements that may be appealing, usually telling you that your computer is infected, that you should clean your registry or other various &#8220;tips&#8221;. Be ware of these as most of the time, they are designed to do more damage than good.</p>
<p><strong>5. Active-X:</strong> The word alone strikes fear in my mind;. Never install an Active-X control that is not from a trusted source. If you do need to install an Active-X control, lets use Adobe Flash Player, do not install it from a site that asks you to do so. Go directly to Adobe&#8217;s site to download the plug-in!</p>
<p><strong>6. Keep an eye on the URL:</strong> when going to any site, it is important to make sure that you are on your intended site and not a phishing site made to look like your intended destination. Check the URL (Web Address) in the address bar to make sure it is spelled correctly and is in fact the site you are looking for.</p>
<p><strong>7. Certificates:</strong> If you navigate to a site and get a certificate warning/error prompting you to either accept or not accept a certificate, it is usually a good idea to not accept it. There are exceptions to this rule though. For instance, if your organization has a site to access email remotely (Outlook Web access or otherwise) and your administrator has made you aware of the certificate error you will see, it is usually okay to accept the certificate.</p>
<p><strong>8. Email Attachments:</strong> I am sure that we have all heard this one but it is worth repeating. If you receive an attachment on an email, do not open it unless you trust the sender. Even then, you should first save the attachment to your hard drive and scan it for viruses before opening it. You never know if someone you trust has a virus and is inadvertently sending it to you.</p>
<p><strong>9. Password Protect Your Computer:</strong> You should always password protect your computer and change the password every now and then.</p>
<p><strong>10. Passwords on the Internet:</strong> when you choose a password for a site to which you belong (a bank, credit card etc.) you should always choose a complex password. This means a password containing upper and lowercase characters as well as special characters if you are able. Also make your password at least 7 characters long and never have your computer remember these passwords for you.</p>
<p>If you follow these steps and use common sense when surfing the Internet you can greatly reduce the risks that you face. Remember that there are a lot of other people connected to the Internet and some percentage of those people are out for one thing, to steal from others. Do not be a victim! Be mindful of your personal information and activities on your computer and you will avoid future sorrow.</p>
<p>Jason (Digitalkid)<br />
<a href="http://www.954network.com">www.954network.com</a></p>
<div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://blog.954network.com/2008/11/05/safe-computin-practices/&amp;t=Safe+Computing+Practices&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://blog.954network.com/2008/11/05/safe-computin-practices/&amp;title=Safe+Computing+Practices&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Safe+Computing+Practices;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td></table></div><!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	-->]]></content:encoded>
			<wfw:commentRss>http://blog.954network.com/2008/11/05/safe-computin-practices/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
