<?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>Alex's Antidote &#187; Windows</title>
	<atom:link href="http://alexsantidote.com/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexsantidote.com</link>
	<description>...the cure for what ails you...</description>
	<lastBuildDate>Thu, 15 Mar 2012 16:43:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to: Initiate a Timed Shutdown</title>
		<link>http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/</link>
		<comments>http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 00:05:07 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[15 Minutes]]></category>
		<category><![CDATA[30 Minutes]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Extra]]></category>
		<category><![CDATA[Fit]]></category>
		<category><![CDATA[H 120]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Machine Computer]]></category>
		<category><![CDATA[Netbook]]></category>
		<category><![CDATA[Quotes]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[Terminal Run]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/?p=342</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>On Friday I was downloading some files on my Netbook (running Ubuntu Remix 10.04) and was not planning to stick around for the downloads to finish (it was already close to 7pm, I needed to get home for the weekend). I didn&#8217;t want to leave it running all weekend and I still had another hour [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/' title='How to: Initiate a Timed Shutdown'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/antidotes/" title="View all posts in Tech Stuff" rel="category tag">Tech Stuff</a></p><p>Tags: <a href="http://alexsantidote.com/tag/15-minutes/" rel="tag">15 Minutes</a>, <a href="http://alexsantidote.com/tag/30-minutes/" rel="tag">30 Minutes</a>, <a href="http://alexsantidote.com/tag/downloads/" rel="tag">Downloads</a>, <a href="http://alexsantidote.com/tag/extra/" rel="tag">Extra</a>, <a href="http://alexsantidote.com/tag/fit/" rel="tag">Fit</a>, <a href="http://alexsantidote.com/tag/h-120/" rel="tag">H 120</a>, <a href="http://alexsantidote.com/tag/linux/" rel="tag">Linux</a>, <a href="http://alexsantidote.com/tag/mac-antidotes/" rel="tag">Mac</a>, <a href="http://alexsantidote.com/tag/machine-computer/" rel="tag">Machine Computer</a>, <a href="http://alexsantidote.com/tag/netbook/" rel="tag">Netbook</a>, <a href="http://alexsantidote.com/tag/quotes/" rel="tag">Quotes</a>, <a href="http://alexsantidote.com/tag/running/" rel="tag">Running</a>, <a href="http://alexsantidote.com/tag/terminal-run/" rel="tag">Terminal Run</a>, <a href="http://alexsantidote.com/tag/ubuntu/" rel="tag">Ubuntu</a>, <a href="http://alexsantidote.com/tag/windows/" rel="tag">Windows</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p>On Friday I was downloading some files on my Netbook (running Ubuntu Remix 10.04) and was not planning to stick around for the downloads to finish (it was already close to 7pm, I needed to get home for the weekend). I didn&#8217;t want to leave it running all weekend and I still had another hour to go before my downloads finished&#8230;<br />
What to do?</p>
<p>Well I decided to initiate a delayed shutdown of my system. Since the downloads had about 1hr and 15 minutes left, I decided to be extra safe and set the shutdown for an extra 30 minutes after that&#8230; Here&#8217;s how I did it:</p>
<p>In your terminal, run the following command:</p>
<div style="background-color: #bbbbbb; border: 1px solid black;">
<pre><code>sudo shutdown -h 20:45 "See you on Monday!"</code></pre>
</div>
<p>you can change the time to fit your needs and change the message (between the quotes) to whatever you like or leave it out as the message is optional.</p>
<p>You could also set it to shutdown by using a slightly different format, like this:</p>
<div style="background-color: #bbbbbb; border: 1px solid black;">
<pre><code>sudo shutdown -h +120 "Shutting down in 2hrs -- or 120 minutes"</code></pre>
</div>
<p>This works on Linux and Mac. If you want to do this on Windows you could try something like this (if you are an admin):</p>
<div style="background-color: #bbbbbb; border: 1px solid black;">
<pre><code>at 20:45 shutdown /l /r /y /c</code></pre>
</div>
<p>But I cannot vouch for how effective this will be (on Windows I mean) as it  may only shutdown the OS not the machine/computer&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/342/how-to-initiate-a-timed-shutdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Response to Reader Question: How to Archive Facebook Chats</title>
		<link>http://alexsantidote.com/316/response-to-reader-question-how-to-archive-facebook-chats/</link>
		<comments>http://alexsantidote.com/316/response-to-reader-question-how-to-archive-facebook-chats/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 21:53:48 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Archive]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Chat Client]]></category>
		<category><![CDATA[Chat Friends]]></category>
		<category><![CDATA[Chats]]></category>
		<category><![CDATA[Copy Paste]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Chat]]></category>
		<category><![CDATA[Facebook Friends]]></category>
		<category><![CDATA[Headache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Pidgin]]></category>
		<category><![CDATA[Reader Question]]></category>
		<category><![CDATA[Sake]]></category>
		<category><![CDATA[Technical Details]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/?p=316</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>One of my readers (and friends) asked: &#8220;Is there a way to retrieve your facebook chats somewhere on your computer?&#8221; While I personally do not use the Facebook chat (or any chat, seriously. I just don&#8217;t have time), I don&#8217;t get questions from my readers very often so I thought I&#8217;d look into it. Here [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/316/response-to-reader-question-how-to-archive-facebook-chats/' title='Response to Reader Question: How to Archive Facebook Chats'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/antidotes/" title="View all posts in Tech Stuff" rel="category tag">Tech Stuff</a></p><p>Tags: <a href="http://alexsantidote.com/tag/ajax/" rel="tag">Ajax</a>, <a href="http://alexsantidote.com/tag/archive/" rel="tag">Archive</a>, <a href="http://alexsantidote.com/tag/browser/" rel="tag">Browser</a>, <a href="http://alexsantidote.com/tag/chat-client/" rel="tag">Chat Client</a>, <a href="http://alexsantidote.com/tag/chat-friends/" rel="tag">Chat Friends</a>, <a href="http://alexsantidote.com/tag/chats/" rel="tag">Chats</a>, <a href="http://alexsantidote.com/tag/copy-paste/" rel="tag">Copy Paste</a>, <a href="http://alexsantidote.com/tag/facebook/" rel="tag">Facebook</a>, <a href="http://alexsantidote.com/tag/facebook-chat/" rel="tag">Facebook Chat</a>, <a href="http://alexsantidote.com/tag/facebook-friends/" rel="tag">Facebook Friends</a>, <a href="http://alexsantidote.com/tag/headache/" rel="tag">Headache</a>, <a href="http://alexsantidote.com/tag/linux/" rel="tag">Linux</a>, <a href="http://alexsantidote.com/tag/mac-antidotes/" rel="tag">Mac</a>, <a href="http://alexsantidote.com/tag/operating-systems/" rel="tag">Operating Systems</a>, <a href="http://alexsantidote.com/tag/pidgin/" rel="tag">Pidgin</a>, <a href="http://alexsantidote.com/tag/reader-question/" rel="tag">Reader Question</a>, <a href="http://alexsantidote.com/tag/sake/" rel="tag">Sake</a>, <a href="http://alexsantidote.com/tag/technical-details/" rel="tag">Technical Details</a>, <a href="http://alexsantidote.com/tag/windows/" rel="tag">Windows</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/316/response-to-reader-question-how-to-archive-facebook-chats/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><div class="wp-caption alignright" style="width: 283px"><a href="http://linuxologist.com/7-apps/howto-add-your-facebook-friends-to-pidgin/"><img class="  " title="Pidgin and Facebook Chat" src="http://linuxologist.com/wp-content/uploads/2009/07/Pidgin-Facebook-Chat.png" alt="Pidgin and Facebook Chat" width="273" height="108" /></a><p class="wp-caption-text">Howto: Add Your Facebook Friends to Pidgin (via The Linuxologist)</p></div>
<p>One of my readers (and friends) asked:</p>
<blockquote><p><em><strong>&#8220;Is there a way to retrieve your facebook chats somewhere on your computer?&#8221;</strong></em></p></blockquote>
<p>While I personally do not use the Facebook chat (or any chat, seriously. I just don&#8217;t have time), I don&#8217;t get questions from my readers very often so I thought I&#8217;d look into it.</p>
<p>Here is what I&#8217;ve found&#8230;</p>
<h3><strong>The Basics</strong></h3>
<p>Facebook chat &#8212; as it is when you are logged in to Facebook.com &#8212; is nothing more than an HTML/AJAX &#8220;chat&#8221;&#8230; I&#8217;m trying to keep this in as plain of terms as possible for the sake of time and to save you the headache of technical details (I assume if you could understand the technical stuff, you probably already know how it works ).</p>
<p>So basically the chat functions as part of the Facebook website and is maintained between your browser and the Facebook server. This means there is no external &#8220;Chat&#8221; or &#8220;IM&#8221; client to manage it.</p>
<h3><strong>What You Can&#8217;t Do</strong></h3>
<p>Facebook does not currently provide an Archiving feature for its website-contained chat. This means if you want to archive your chats you are basically out of luck. All you could really do at this point is manually copy/paste your chats into a text file for archiving &#8212; this is the manual way, very nasty!</p>
<h3><strong>What You Can Do</strong></h3>
<p><a title="Facebook Chat Now Available Everywhere" href="http://blog.facebook.com/blog.php?post=297991732130" target="_blank">Facebook does provide access to the &#8220;Facebook Chat&#8221; outside of their actual website.</a> However, they do not offer an official &#8220;Facebook Chat&#8221; Client/IM. The good news is there are free chat/IM clients out there for all operating systems and you can use Facebook Chat (through one of these clients) to chat with your Facebook friends outside of the actual Facebook website (and without a browser at that).</p>
<p>Assuming you choose a chat/IM client that allows archiving, you should be able to chat with your Facebook friends and automatically archive the chats through the client.</p>
<h3><strong>So HOW Do You Do It?</strong></h3>
<p>First, check out <a title="Facebook Chat. Everywhere." href="http://www.facebook.com/sitetour/chat.php" target="_blank">this page</a> and look at the supported chat clients. <a title="Pidgin IM Client" href="http://www.pidgin.im/" target="_blank">Pidgin</a> is cross-platform (you can use it on Windows/Mac/Linux) and is the one I would choose, but you do as you like. Pidgin allows archiving and also has plugins that allow you more control over the settings (for advanced users).</p>
<p>Once you have Pidgin (or whatever chat/IM client you chose), you need to setup the client to work with Facebook Chat. Each client is a little different, but here is a <a title="Facebook Chat - A Complete Tutorial (For Pidgin)" href="http://www.bukisa.com/articles/331046_facebook-chat-a-complete-tutorial" target="_blank">quick guide to setting it up with Pidgin</a>.</p>
<p>Next you will need to turn on the archiving/logging features and adjust the settings. It&#8217;s not as bad as it sounds. Here&#8217;s a <a title="Archiving Chats in Pidgin - eHow" href="http://www.ehow.com/how_5858426_archive-pidgin-instant-messenger.html" target="_blank">quick guide for doing that</a> in Pidgin also.</p>
<h3><strong>Conclusion</strong></h3>
<p>While you can&#8217;t easily archive Facebook Chat from within the browser/website, you can use an external client for that purpose. It is fairly painless and if archiving your chats is important to you, this is your best option for now.</p>
<p>If you have any questions please feel free to leave a comment below and I will try to help out as best I can.</p>
<h3><strong>Links <em>(same as above, just verbose)</em></strong></h3>
<p><a title="Facebook Chat Now Available Everywhere" href="http://blog.facebook.com/blog.php?post=297991732130" target="_blank">http://blog.facebook.com/blog.php?post=297991732130</a></p>
<p><a title="Facebook Chat. Everywhere." href="http://www.facebook.com/sitetour/chat.php" target="_blank">http://www.facebook.com/sitetour/chat.php</a></p>
<p><a title="Pidgin IM Client" href="http://www.pidgin.im/" target="_blank">http://www.pidgin.im/</a></p>
<p><a title="Facebook Chat - A Complete Tutorial (For Pidgin)" href="http://www.bukisa.com/articles/331046_facebook-chat-a-complete-tutorial" target="_blank">http://www.bukisa.com/articles/331046_facebook-chat-a-complete-tutorial</a></p>
<p><a title="Archiving Chats in Pidgin - eHow" href="http://www.ehow.com/how_5858426_archive-pidgin-instant-messenger.html" target="_blank">http://www.ehow.com/how_5858426_archive-pidgin-instant-messenger.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/316/response-to-reader-question-how-to-archive-facebook-chats/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows 7 &#8211; Solid Background Boot Delay Bug</title>
		<link>http://alexsantidote.com/283/windows-7-solid-background-boot-delay-bug/</link>
		<comments>http://alexsantidote.com/283/windows-7-solid-background-boot-delay-bug/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 03:14:37 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[Background Image]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Color Background]]></category>
		<category><![CDATA[delay]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Programming Perspective]]></category>
		<category><![CDATA[Sake]]></category>
		<category><![CDATA[Startup Delay]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Background]]></category>
		<category><![CDATA[Windows Boot]]></category>
		<category><![CDATA[Workaround]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/?p=283</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>OK I found this to be interesting&#8230; Apparently there is a bug in Windows 7 that causes a 30 second startup delay when you opt to use a solid color background vs. a background image of any kind&#8230; Now, I&#8217;ve never developed (or been a part of developing) an entire operating system, so I guess [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/283/windows-7-solid-background-boot-delay-bug/' title='Windows 7 - Solid Background Boot Delay Bug'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/antidotes/" title="View all posts in Tech Stuff" rel="category tag">Tech Stuff</a></p><p>Tags: <a href="http://alexsantidote.com/tag/background/" rel="tag">background</a>, <a href="http://alexsantidote.com/tag/background-image/" rel="tag">Background Image</a>, <a href="http://alexsantidote.com/tag/boot/" rel="tag">boot</a>, <a href="http://alexsantidote.com/tag/bug/" rel="tag">bug</a>, <a href="http://alexsantidote.com/tag/color-background/" rel="tag">Color Background</a>, <a href="http://alexsantidote.com/tag/delay/" rel="tag">delay</a>, <a href="http://alexsantidote.com/tag/operating-system/" rel="tag">Operating System</a>, <a href="http://alexsantidote.com/tag/patch/" rel="tag">patch</a>, <a href="http://alexsantidote.com/tag/pc/" rel="tag">PC</a>, <a href="http://alexsantidote.com/tag/programming-perspective/" rel="tag">Programming Perspective</a>, <a href="http://alexsantidote.com/tag/sake/" rel="tag">Sake</a>, <a href="http://alexsantidote.com/tag/startup-delay/" rel="tag">Startup Delay</a>, <a href="http://alexsantidote.com/tag/windows/" rel="tag">Windows</a>, <a href="http://alexsantidote.com/tag/windows-7/" rel="tag">Windows 7</a>, <a href="http://alexsantidote.com/tag/windows-background/" rel="tag">Windows Background</a>, <a href="http://alexsantidote.com/tag/windows-boot/" rel="tag">Windows Boot</a>, <a href="http://alexsantidote.com/tag/workaround/" rel="tag">Workaround</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/283/windows-7-solid-background-boot-delay-bug/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p>OK I found this to be interesting&#8230; Apparently there is a bug in Windows 7 that causes a 30 second startup delay when you opt to use a solid color background vs. a background image of any kind&#8230;</p>
<p>Now, I&#8217;ve never developed (or been a part of developing) an entire operating system, so I guess my point on this may be way off base, but does this bug make any sense at all? To me, from a programming perspective, no&#8230; not at all!</p>
<p>Supposedly there is a patch/workaround for it, though I haven&#8217;t tried any of it (I have Windows 7 at work, I may be tempted to test it out tomorrow just for the sake of verifying it first hand).<br />
You can find info about the <a title="Windows 7 startup bug hotfix" href="http://support.microsoft.com/kb/977346">patch</a> and <a title="Lifehacker article about Windows 7 Bug" href="http://lifehacker.com/5451159/solid+color-backgrounds-cause-30+second-login-delay-in-windows-7">workaround</a> here: <a title="Lifehacker article about Windows 7 Bug" href="http://lifehacker.com/5451159/solid+color-backgrounds-cause-30+second-login-delay-in-windows-7">Lifehacker article</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/283/windows-7-solid-background-boot-delay-bug/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows installs security threat extension in Firefox</title>
		<link>http://alexsantidote.com/131/windows-installs-security-threat-extension-in-firefox/</link>
		<comments>http://alexsantidote.com/131/windows-installs-security-threat-extension-in-firefox/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 03:52:02 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[Easy Access]]></category>
		<category><![CDATA[Firefox Extension]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Great Time]]></category>
		<category><![CDATA[Guess]]></category>
		<category><![CDATA[Headache]]></category>
		<category><![CDATA[Insta]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Latest Security]]></category>
		<category><![CDATA[Microsoft Update]]></category>
		<category><![CDATA[Security Patch]]></category>
		<category><![CDATA[Security Patches]]></category>
		<category><![CDATA[Security Threat]]></category>
		<category><![CDATA[Security Threats]]></category>
		<category><![CDATA[Trojan]]></category>
		<category><![CDATA[Uninstall Button]]></category>
		<category><![CDATA[Unwanted Software]]></category>
		<category><![CDATA[Voices]]></category>
		<category><![CDATA[Vulnerabilities]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Patches]]></category>
		<category><![CDATA[Windows Updates]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/?p=131</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>Well apparently there is a new Firefox extension out there, but not one you or I would want. Unfortunally, if you use Windows (and install Windows updates/security patches) you have been or will likely fall victim to a dirty Microsoft Trick! That&#8217;s right, with the latest &#8220;Security&#8221; patch to the .Net framework, Windows secretly installs [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/131/windows-installs-security-threat-extension-in-firefox/' title='Windows installs security threat extension in Firefox'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/antidotes/" title="View all posts in Tech Stuff" rel="category tag">Tech Stuff</a>, <a href="http://alexsantidote.com/category/updates/" title="View all posts in Updates" rel="category tag">Updates</a></p><p>Tags: <a href="http://alexsantidote.com/tag/easy-access/" rel="tag">Easy Access</a>, <a href="http://alexsantidote.com/tag/firefox-extension/" rel="tag">Firefox Extension</a>, <a href="http://alexsantidote.com/tag/general/" rel="tag">General</a>, <a href="http://alexsantidote.com/tag/great-time/" rel="tag">Great Time</a>, <a href="http://alexsantidote.com/tag/guess/" rel="tag">Guess</a>, <a href="http://alexsantidote.com/tag/headache/" rel="tag">Headache</a>, <a href="http://alexsantidote.com/tag/insta/" rel="tag">Insta</a>, <a href="http://alexsantidote.com/tag/internet-explorer/" rel="tag">Internet Explorer</a>, <a href="http://alexsantidote.com/tag/latest-security/" rel="tag">Latest Security</a>, <a href="http://alexsantidote.com/tag/microsoft-update/" rel="tag">Microsoft Update</a>, <a href="http://alexsantidote.com/tag/security-patch/" rel="tag">Security Patch</a>, <a href="http://alexsantidote.com/tag/security-patches/" rel="tag">Security Patches</a>, <a href="http://alexsantidote.com/tag/security-threat/" rel="tag">Security Threat</a>, <a href="http://alexsantidote.com/tag/security-threats/" rel="tag">Security Threats</a>, <a href="http://alexsantidote.com/tag/trojan/" rel="tag">Trojan</a>, <a href="http://alexsantidote.com/tag/uninstall-button/" rel="tag">Uninstall Button</a>, <a href="http://alexsantidote.com/tag/unwanted-software/" rel="tag">Unwanted Software</a>, <a href="http://alexsantidote.com/tag/voices/" rel="tag">Voices</a>, <a href="http://alexsantidote.com/tag/vulnerabilities/" rel="tag">Vulnerabilities</a>, <a href="http://alexsantidote.com/tag/windows/" rel="tag">Windows</a>, <a href="http://alexsantidote.com/tag/windows-patches/" rel="tag">Windows Patches</a>, <a href="http://alexsantidote.com/tag/windows-updates/" rel="tag">Windows Updates</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/131/windows-installs-security-threat-extension-in-firefox/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p>Well apparently there is a new Firefox extension out there, but not one you or I would want. Unfortunally, if you use Windows (and install Windows updates/security patches) you have been or will likely fall victim to a dirty Microsoft Trick!</p>
<p>That&#8217;s right, with the latest &#8220;Security&#8221; patch to the .Net framework, Windows secretly installs an extension in Firefox. Worse yet they disable the uninstall button so you cannot remove it (at least not without hacking the registry, which could be dangerous if you mess it up). The new extension opens up vulnerabilities that were not previously there and allows easy access for new (and unwanted) software to be installed on your machine!</p>
<p>Here&#8217;s a link to read up the details: <a title="http://voices.washingtonpost.com/securityfix/2009/05/microsoft_update_quietly_insta.html" href="http://voices.washingtonpost.com/securityfix/2009/05/microsoft_update_quietly_insta.html">http://voices.washingtonpost.com/securityfix/2009/05/microsoft_update_quietly_insta.html</a><br />
My guess is Microsoft is secretly trying to sabbotage Firefox and make it equally or perhaps more vulnerable to security threats as Internet Explorer, but I have no proof, yet. <img src='http://alexsantidote.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Looks like this is a great time to consider trying Ubuntu!</p>
<p>I&#8217;ll put up a guide soon for how to remove this headache of a stealthy <span style="text-decoration: line-through;">trojan</span> extension when I next boot into Windows (no promise on how soon that will be).</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/131/windows-installs-security-threat-extension-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better late than never&#8230;</title>
		<link>http://alexsantidote.com/106/better-late-than-never/</link>
		<comments>http://alexsantidote.com/106/better-late-than-never/#comments</comments>
		<pubDate>Sun, 31 May 2009 04:14:57 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[Dual Boot]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Netbook]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 9.04 Netbook Remix]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/?p=106</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>Well I know I promised this a while ago, but I finally had time to complete the tutorial for installing the Ubuntu 9.04 Netbook Remix. You can check out the guide here: http://alexsantidote.com/ubuntu/install-ubuntu-904-netbook-remix-dual-boot/ Let me know how it went for you in the comments here! If you have any questions or run into any problems [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/106/better-late-than-never/' title='Better late than never...'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/antidotes/" title="View all posts in Tech Stuff" rel="category tag">Tech Stuff</a>, <a href="http://alexsantidote.com/category/updates/" title="View all posts in Updates" rel="category tag">Updates</a></p><p>Tags: <a href="http://alexsantidote.com/tag/dual-boot/" rel="tag">Dual Boot</a>, <a href="http://alexsantidote.com/tag/general/" rel="tag">General</a>, <a href="http://alexsantidote.com/tag/linux/" rel="tag">Linux</a>, <a href="http://alexsantidote.com/tag/netbook/" rel="tag">Netbook</a>, <a href="http://alexsantidote.com/tag/ubuntu/" rel="tag">Ubuntu</a>, <a href="http://alexsantidote.com/tag/ubuntu-904-netbook-remix/" rel="tag">Ubuntu 9.04 Netbook Remix</a>, <a href="http://alexsantidote.com/tag/windows/" rel="tag">Windows</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/106/better-late-than-never/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p>Well I know I promised this a while ago, but I finally had time to complete the tutorial for installing the Ubuntu 9.04 Netbook Remix. You can check out the guide here: <a title="http://alexsantidote.com/ubuntu/install-ubuntu-904-netbook-remix-dual-boot/" href="http://alexsantidote.com/ubuntu/install-ubuntu-904-netbook-remix-dual-boot/">http://alexsantidote.com/ubuntu/install-ubuntu-904-netbook-remix-dual-boot/</a></p>
<p>Let me know how it went for you in the comments here!</p>
<p>If you have any questions or run into any problems let me know, I&#8217;d be happy to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/106/better-late-than-never/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to do about Conflicker?!</title>
		<link>http://alexsantidote.com/82/what-to-do-about-conflicker/</link>
		<comments>http://alexsantidote.com/82/what-to-do-about-conflicker/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 22:16:52 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[Conficker]]></category>
		<category><![CDATA[Conflicker]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Media Hype]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Virus]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/?p=82</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>There&#8217;s a lot of media hype about the Conficker Worm going on right now&#8230; Is it just hype? Is it legit? Should we be worried? Who knows! But we&#8217;ll all find out tomorrow&#8230; But then again, we may not. This nasty worm was created by some crafty individual(s) and is designed to be mysterious. The [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/82/what-to-do-about-conflicker/' title='What to do about Conflicker?!'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/antidotes/" title="View all posts in Tech Stuff" rel="category tag">Tech Stuff</a>, <a href="http://alexsantidote.com/category/updates/" title="View all posts in Updates" rel="category tag">Updates</a></p><p>Tags: <a href="http://alexsantidote.com/tag/conficker/" rel="tag">Conficker</a>, <a href="http://alexsantidote.com/tag/conflicker/" rel="tag">Conflicker</a>, <a href="http://alexsantidote.com/tag/general/" rel="tag">General</a>, <a href="http://alexsantidote.com/tag/media-hype/" rel="tag">Media Hype</a>, <a href="http://alexsantidote.com/tag/microsoft/" rel="tag">Microsoft</a>, <a href="http://alexsantidote.com/tag/security/" rel="tag">Security</a>, <a href="http://alexsantidote.com/tag/virus/" rel="tag">Virus</a>, <a href="http://alexsantidote.com/tag/windows/" rel="tag">Windows</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/82/what-to-do-about-conflicker/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p>There&#8217;s a lot of media hype about the Conficker Worm going on right now&#8230;</p>
<p>Is it just hype? Is it legit? Should we be worried? Who knows! But we&#8217;ll all find out tomorrow&#8230; But then again, we may not.</p>
<p>This nasty worm was created by some crafty individual(s) and is designed to be mysterious. The only thing known for sure about Conficker is that there are at least 4 variants and they are all set to become active on April 1st, 2009.</p>
<p>So what can we do? <a title="Conflicker Worm - What to do?!" href="http://alexsantidote.com/windows/conflicker-worm-what-to-do/">Click here to read more&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/82/what-to-do-about-conflicker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumor Removal &#8211; The Language Bar</title>
		<link>http://alexsantidote.com/7/tumor-removal-the-language-bar/</link>
		<comments>http://alexsantidote.com/7/tumor-removal-the-language-bar/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 19:13:15 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[Chemotherapy]]></category>
		<category><![CDATA[Clock]]></category>
		<category><![CDATA[Control]]></category>
		<category><![CDATA[Control Panel]]></category>
		<category><![CDATA[Details Button]]></category>
		<category><![CDATA[Dll]]></category>
		<category><![CDATA[Hassle]]></category>
		<category><![CDATA[Input Languages]]></category>
		<category><![CDATA[Language Bar]]></category>
		<category><![CDATA[Language Options]]></category>
		<category><![CDATA[Microphone]]></category>
		<category><![CDATA[Question Mark]]></category>
		<category><![CDATA[Regsvr32]]></category>
		<category><![CDATA[Regsvr32 Exe]]></category>
		<category><![CDATA[Run Dll]]></category>
		<category><![CDATA[Run Exe]]></category>
		<category><![CDATA[Show Desktop]]></category>
		<category><![CDATA[Start Menu]]></category>
		<category><![CDATA[Taskbar]]></category>
		<category><![CDATA[Tumor Removal]]></category>
		<category><![CDATA[Window Close]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://alexsantidote.com/antidotes/tumor-removal-the-language-bar/</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top'></td><td valign='top' align='left'>You know that annoying little set of icons that appear on your taskbar near your clock every time you log into Windows? The one with the microphone and a box with a big question mark? Simply right clicking and going to toolbars then unchecking &#8220;Language bar&#8221; will only temporarily cure this problem. Well now you [...]<table width='100%'><tr><td align=right><p><b>(<a href='http://alexsantidote.com/7/tumor-removal-the-language-bar/' title='Tumor Removal - The Language Bar'>Read more...</a>)</b></p></td></tr></table></td></tr><tr><td><p>Categories: <a href="http://alexsantidote.com/category/antidotes/" title="View all posts in Tech Stuff" rel="category tag">Tech Stuff</a></p><p>Tags: <a href="http://alexsantidote.com/tag/chemotherapy/" rel="tag">Chemotherapy</a>, <a href="http://alexsantidote.com/tag/clock/" rel="tag">Clock</a>, <a href="http://alexsantidote.com/tag/control/" rel="tag">Control</a>, <a href="http://alexsantidote.com/tag/control-panel/" rel="tag">Control Panel</a>, <a href="http://alexsantidote.com/tag/details-button/" rel="tag">Details Button</a>, <a href="http://alexsantidote.com/tag/dll/" rel="tag">Dll</a>, <a href="http://alexsantidote.com/tag/hassle/" rel="tag">Hassle</a>, <a href="http://alexsantidote.com/tag/input-languages/" rel="tag">Input Languages</a>, <a href="http://alexsantidote.com/tag/language-bar/" rel="tag">Language Bar</a>, <a href="http://alexsantidote.com/tag/language-options/" rel="tag">Language Options</a>, <a href="http://alexsantidote.com/tag/microphone/" rel="tag">Microphone</a>, <a href="http://alexsantidote.com/tag/question-mark/" rel="tag">Question Mark</a>, <a href="http://alexsantidote.com/tag/regsvr32/" rel="tag">Regsvr32</a>, <a href="http://alexsantidote.com/tag/regsvr32-exe/" rel="tag">Regsvr32 Exe</a>, <a href="http://alexsantidote.com/tag/run-dll/" rel="tag">Run Dll</a>, <a href="http://alexsantidote.com/tag/run-exe/" rel="tag">Run Exe</a>, <a href="http://alexsantidote.com/tag/show-desktop/" rel="tag">Show Desktop</a>, <a href="http://alexsantidote.com/tag/start-menu/" rel="tag">Start Menu</a>, <a href="http://alexsantidote.com/tag/taskbar/" rel="tag">Taskbar</a>, <a href="http://alexsantidote.com/tag/tumor-removal/" rel="tag">Tumor Removal</a>, <a href="http://alexsantidote.com/tag/window-close/" rel="tag">Window Close</a>, <a href="http://alexsantidote.com/tag/windows/" rel="tag">Windows</a></p></td></tr></table>]]></description>
			<content:encoded><![CDATA[<fb:like href='http://alexsantidote.com/7/tumor-removal-the-language-bar/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p>You know that annoying little set of icons that appear on your taskbar near your clock every time you log into Windows? The one with the microphone and a box with a big question mark?</p>
<p>Simply right clicking and going to toolbars then unchecking &#8220;Language bar&#8221; will only temporarily cure this problem.<br />
<em></em></p>
<p><em><strong>Well now you can kiss it goodbye!</strong></em><br />
Here&#8217;s how to remove this pesky tumor, permanently*!</p>
<ul>
<li>Access your <strong>Control Panel</strong>
<pre>          (Start Menu -&gt; Control Panel OR</pre>
<pre>          (Start Menu -&gt;) My Computer -&gt; Control Panel)</pre>
</li>
<li>Click on &#8220;<strong>Regional and Language Options</strong>&#8221;
<pre>          A new window will open</pre>
</li>
<li>Click on the &#8220;<strong>Languages</strong>&#8221; Tab (near the top)</li>
<li>Under the section &#8220;Text services and input languages&#8221; click on the &#8220;<strong>Details</strong>&#8221; Button
<pre>          A new window will pop open</pre>
</li>
<li>Near the bottom you will see a button called &#8220;<strong>Language Bar&#8230;</strong>&#8221; Click it.
<pre>          Another small window will pop open</pre>
</li>
<li>Uncheck &#8220;<strong>Show the language bar on the desktop</strong>&#8221;
<pre>          This prevents it from displaying automatically</pre>
<pre>          (unless you decide to use it again)</pre>
</li>
<li>Click &#8220;<strong>OK</strong>&#8221; (closes that window)</li>
<li>Click &#8220;<strong>OK</strong>&#8221; again (closes another one)</li>
<li>Finally Click &#8220;<strong>Apply</strong>&#8221; and then &#8220;<strong>OK</strong>&#8221; (closes the last window)</li>
</ul>
<p>There you have it, the tumor has been removed!<br />
<em></em></p>
<p><em><strong> *Now for the Chemotherapy to permanently prevent it from returning</strong></em><br />
This is simple, and if you prefer to, you can just do this from the start and save yourself from the hassle.</p>
<ul>
<li>Click &#8220;<strong>Start</strong>&#8221; then &#8220;<strong>Run</strong>&#8221;
<pre>          a window will open (the run prompt)</pre>
</li>
<li>Enter <span id="intelliTXT">&#8220;<strong>Regsvr32.exe /u msutb.dll</strong>&#8220;</span></li>
<li><span id="intelliTXT">Click &#8220;<strong>OK</strong>&#8220;</span> <span id="intelliTXT">
<pre>          The window will close and your problem is gone forever**!</pre>
<p></span></li>
</ul>
<p>msutb.dll is the key here. This command (note the /u) removes it from the registry so it cannot be accessed by the system.</p>
<p><em><strong>**No wait, I Want it back!</strong></em></p>
<ul>
<li>Click &#8220;<strong>Start</strong>&#8221; then &#8220;<strong>Run</strong>&#8221;
<pre>          a window will open (the run prompt)</pre>
</li>
<li>Enter <span id="intelliTXT">&#8220;<strong>Regsvr32.exe msutb.dll</strong>&#8220;</span></li>
<li><span id="intelliTXT">Click &#8220;<strong>OK</strong>&#8220;</span> <span id="intelliTXT">
<pre>          The window will close and your Language Bar is back!</pre>
<p></span></li>
</ul>
<p>again msutb.dll is the key to this, Regsvr32.exe will add msutb.dll back to the registry so it may be accessed by the system.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsantidote.com/7/tumor-removal-the-language-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

