<?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>One Geeks Opinion &#187; Computers</title>
	<atom:link href="http://www.onegeeksopinion.com/category/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onegeeksopinion.com</link>
	<description>One by one the penguins take away my sanity...</description>
	<lastBuildDate>Mon, 12 Apr 2010 15:26:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ten OS X Command Line Utilities you might not know about</title>
		<link>http://www.onegeeksopinion.com/2007/05/09/ten-os-x-command-line-utilities-you-might-not-know-about/</link>
		<comments>http://www.onegeeksopinion.com/2007/05/09/ten-os-x-command-line-utilities-you-might-not-know-about/#comments</comments>
		<pubDate>Wed, 09 May 2007 17:54:21 +0000</pubDate>
		<dc:creator>One Geek</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://www.onegeeksopinion.com/2007/05/09/ten-os-x-command-line-utilities-you-might-not-know-about/</guid>
		<description><![CDATA[Taken from  OSX Daily
The Mac OS X command line interface is home to thousands of programs that the average user doesnâ€™t know exists. Leveraging years of hard work by the GNU foundation and others in the open source community, Apple designed a wonderful OS that doesnâ€™t â€œneedâ€ any use of the command line. While [...]]]></description>
			<content:encoded><![CDATA[<p>Taken from  <a href="http://osxdaily.com/2006/11/22/ten-os-x-command-line-utilities-you-might-not-know-about/">OSX Daily</a></p>
<p>The Mac OS X command line interface is home to thousands of programs that the average user doesnâ€™t know exists. Leveraging years of hard work by the GNU foundation and others in the open source community, Apple designed a wonderful OS that doesnâ€™t â€œneedâ€ any use of the command line. While using the command line in Mac OS X is not necessary for the every day operation of a Macintosh, if harnessed correctly, it can save you a lot of time, and occasionally give you a laugh. I hope you enjoy these ten OS X command line utilities!</p>
<p>1. ssh<br />
This little gem is included in every version of Mac OS X. Originally developed as drop-in replace to the rsh/rlogin programs, ssh has become a staple of the Linux/Unix(and now Mac OS X) community. Opensshâ€™s primary use is secure remote administration. If you wish you enable Mac OS Xâ€™s built in SSH server you can do so by opening your System Preferences , clicking on â€œSharingâ€ and checking the box next to â€œRemote Loginâ€. Now if you are on the road and wish to access your machine you can use a client like PuTTY (from a windows machine) or â€œsshâ€ from a Mac OS X terminal window and connect to the IP address of your Mac. After logging in with your Username and Password you will be presented with complete access to the Mac OS X command line. Openssh has many, many more uses some of which are quite advanced. My personal favorite is using ssh as a SOCKS server to browse the web securely in public internet locations.<br />
2. top<br />
Top is another classic utility that has long been in use by the Linux/Unix community. To use top, open a Terminal.app and type â€œtopâ€. In less time it takes to blink you eye you should be presented with a window full of text. What you see is a list of every process currently running on your Macintosh. When my Mac is running slow, top is the first resource I use to figure out whats going on.</p>
<p>3. lsbom<br />
lsbom is great for that paranoid voice in your head that you often times hear before you go and install some cool new utility youâ€™ve found on a random Mac blog (like osxdaily). With lsbom you can examine the contents of a Mac OS X installer (.pkg) and get a very detailed view of what is about to be placed into your Macâ€™s precious filesystem. To use lsbom, open up the Terminal.app and navigate to the place in your filesystem where the .pkg file resides. If your installer came on a .dmg, it might help to copy the .pkg to your desktop, and then cd ~Desktop. Once you have found where your .pkg resides, type â€œlsbom .pkg/Contents/Archive.bom> | moreâ€ and voila! You will see a complete list of files your new program wishes to install.</p>
<p>4. say<br />
Now this command is unique to Mac OS X, and offers more fun than anything else. Try it out by opening Terminal.app and typing â€œsay helloâ€.</p>
<p>5. softwareupdate<br />
The â€œsoftwareupdateâ€ command is a quick and easy way to install software updates from apple. To use it, open up Terminal.app and type â€œsoftwareupdate -i -aâ€ to install all available updates for your Macintosh. If you wish to only install â€œrecommendedâ€ updates type â€œsoftwareupdate -i -râ€.</p>
<p>6. ifconfig<br />
The quickest, easiest way to figure out what ip address your Mac is using, is definitely â€œifconfigâ€. To use ifconfig, open up Terminal.app, and type â€œifconfigâ€. You will see a lot of information, including your network cardâ€™s MAC Address. I like to type â€œifconfig | grep inetâ€ to return just the ip information for my computer. You can disable a network interface (in this example â€œen0â€³) by typing â€œifconfig en0 downâ€. You could bring back up with â€œifconfig en0 upâ€. This can be much quicker than using the System Preferences window.</p>
<p>7. lipo<br />
lipo (aptly named) is a utility that manipulates universal binaries in Mac OS X. A lot of (almost all) programs these days ship, or download as â€œUniversalâ€, meaning they have binary code that both the powerpc and the intel chips can understand. But since you probably donâ€™t care about one of the two, you want to use lipo to â€œthinâ€ down your binaries. For example if you wanted to thin the â€œStickiesâ€ application to only contain intel (i386) code:<br />
cd /Applications<br />
lipo Stickies.app/Contents/MacOS/Stickies -thin i386 -output Stickies.app/Contents/MacOS/Stickies.i386<br />
cd Stickies.app/Contents/MacOS/<br />
rm Stickies<br />
mv Stickies.i386 Stickies</p>
<p>8. screencapture<br />
screencapture offers a more advanced way (over command-shift-3) to take screen captures. To use it, open up your Terminal.app and try typing screencapture -iW ~/Desktop/screen.jpg. It will bring up a camera icon that is waiting to be clicked on a window. Once clicked, a file on your desktop called â€œscreen.jpgâ€ will be created that will contain a snapshot of whatever window you clicked on. You can of course, also take a snapshot of your entire screen by typing screencapture -S ~/Desktop/screen.jpg. If you really feel like being particular you can snag just a portion of your screen by typing screencapture -ic. Now go get some screenshots and send them over to osxdaily, we love â€˜em!</p>
<p>9 &#038; 10. fink and darwinports<br />
If youâ€™ve had your fill with the base set of OS X command line utilities, its time to open your Terminal.appâ€™s eyes to the rest of the oppen source world. Using darwinports or fink you can download and install hundreds of free open source applications to your computer. I have found that darwinports tends to have some of the more obscure open source projects, but fink seems to be rock solid. You can install them at the same time if you REALLY know what you are doing, but generally I would have to advise that you pick one or the other. Novice users may want to try out fink, as it ships with a program called Fink Commander which gives you point and click access to its repository of software. Check it out!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d515').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d515" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;submitHeadline=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;title=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;title=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;title=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;bm_description=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;T=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;title=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;title=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Ten+OS+X+Command+Line+Utilities+you+might+not+know+about+@+http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F09%2Ften-os-x-command-line-utilities-you-might-not-know-about%2F&amp;t=Ten+OS+X+Command+Line+Utilities+you+might+not+know+about" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d515').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d515').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.onegeeksopinion.com/2007/05/09/ten-os-x-command-line-utilities-you-might-not-know-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows cannot open Help and Support</title>
		<link>http://www.onegeeksopinion.com/2007/05/07/windows-cannot-open-help-and-support/</link>
		<comments>http://www.onegeeksopinion.com/2007/05/07/windows-cannot-open-help-and-support/#comments</comments>
		<pubDate>Mon, 07 May 2007 16:40:39 +0000</pubDate>
		<dc:creator>One Geek</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.onegeeksopinion.com/2007/05/07/windows-cannot-open-help-and-support/</guid>
		<description><![CDATA[In Server 2003 when you find an error in the Event Log you can usually just click on the link and a search will be done in the MS support database. Most of the time the errors I search for can not be found. This morning I get a error message box saying 
&#8216;Windows cannot [...]]]></description>
			<content:encoded><![CDATA[<p>In Server 2003 when you find an error in the Event Log you can usually just click on the link and a search will be done in the MS support database. Most of the time the errors I search for can not be found. This morning I get a error message box saying </p>
<p>&#8216;Windows cannot open Help and Support because a system service is not running.<br />
To fix this problem, start the service named &#8216;Help and Support&#8217;.</p>
<p>So I opened up services and I so not see a service named &#8216;Help and Support&#8217;. Great another cryptic error message.<br />
I did some searching and found great advice from people saying, &#8216;go to services and start the service&#8217; Wow, thanks I would have never thought of that from looking at the error message!</p>
<p>I finally found a blog entry from the Small Business Server team and there seems to be a problem with Service Pack 2. I followed the fix they have and everything is good again in the land of M$.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Help and Support Error<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Windows cannot open Help and Support because a system service is not running.</p>
<p>To fix this problem, start the service named &#8216;Help and Support&#8217;.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
OK<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>This issue is currently under investigation, however if you are currently experiencing this issue you can run the following commands to resolve the issue:</p>
<p>1. Open a command prompt.<br />
2. Navigate to %windir%\PCHealth\HelpCtr\Binaries<br />
3. Run â€œstart /w helpsvc /svchost netsvcs /regserver /installâ€<br />
4. Once this command completes the Help and Support service should now appear in services.msc<br />
5. Start the Help and Support service </p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d514').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d514" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;submitHeadline=Windows+cannot+open+Help+and+Support&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;title=Windows+cannot+open+Help+and+Support" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;title=Windows+cannot+open+Help+and+Support" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;title=Windows+cannot+open+Help+and+Support" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;bm_description=Windows+cannot+open+Help+and+Support" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;T=Windows+cannot+open+Help+and+Support" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;title=Windows+cannot+open+Help+and+Support" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;title=Windows+cannot+open+Help+and+Support" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Windows+cannot+open+Help+and+Support+@+http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.onegeeksopinion.com%2F2007%2F05%2F07%2Fwindows-cannot-open-help-and-support%2F&amp;t=Windows+cannot+open+Help+and+Support" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.onegeeksopinion.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d514').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d514').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.onegeeksopinion.com/2007/05/07/windows-cannot-open-help-and-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
