<?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>GeekLad &#187; PC Software</title>
	<atom:link href="http://geeklad.com/category/pc-software/feed" rel="self" type="application/rss+xml" />
	<link>http://geeklad.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Feb 2012 14:25:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Turn Any File into an EXE with Convert to EXE</title>
		<link>http://geeklad.com/convert-to-exe-with-free-program</link>
		<comments>http://geeklad.com/convert-to-exe-with-free-program#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:21:24 +0000</pubDate>
		<dc:creator>GeekLad</dc:creator>
				<category><![CDATA[PC Software]]></category>
		<category><![CDATA[software utils]]></category>

		<guid isPermaLink="false">http://geeklad.com/?p=1996</guid>
		<description><![CDATA[If you&#8217;re a geek like me, you may on occasion have run into a situation where you had a file that you needed to convert to exe. I had read a few forum posts and tutorials on how to do this with self-extracting installers, and I even managed to do … <a href="http://geeklad.com/convert-to-exe-with-free-program"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://geeklad.com/wp-content/uploads/2009/12/converttoexe_logo.png" alt="converttoexe_logo" title="converttoexe_logo" width="160" height="160" class="alignleft size-full wp-image-1997" style="border: 0 none;" />If you&#8217;re a geek like me, you may on occasion have run into a situation where you had a file that you needed to convert to exe.  I had read a few forum posts and tutorials on how to do this with self-extracting installers, and I even managed to do it with a <a href="http://www.7-zip.org/">7-zip</a> tool called <a href="http://7zsfx.solta.ru/en/">7zSD</a>.  It then dawned on me that I could use 7zSD and some VBScript to create a tool to automate it.  Thus, my Convert to EXE tool was born.</p>
<p><span id="more-1996"></span>Initially, I wanted just to convert a VBScript into an executable file.  The reason I wanted to do this was to add a Java application to <a href="http://geek-menu.sourceforge.net/">geek.menu</a> (a fork of the <a href="http://portableapps.com/suite">PortableApps.com Suite</a>).  I then realized that it might be useful to expand the tool to convert batch files to exe, or any other kind of file for that matter.  So I did just that.</p>
<p style="text-align: center;"><a style="border: 1px solid #888888; padding: 4px 8px; font-weight: bold;" href="http://geeklad.com/downloads/converttoexe.exe">Download Convert to EXE</a></p>
<h3><a name="usage">Usage</a></h3>
<p>It&#8217;s pretty stupid-simple to use.  Just launch the exe, navigate to the file you want to convert to an EXE and select it.</p>
<p><img src="http://geeklad.com/wp-content/uploads/2009/12/convert-to-exe-file-dialog.png" alt="convert-to-exe-file-dialog" title="convert-to-exe-file-dialog" width="563" height="409" class="alignnone size-full wp-image-2009" style="border: 0 none;" /></p>
<p>The tool will create an exe file in the same directory where the file you are converting to exe is located.</p>
<p><img src="http://geeklad.com/wp-content/uploads/2009/12/new-exe.png" alt="new-exe" title="new-exe" width="115" height="66" class="alignnone size-full wp-image-2010" style="border: 0 none;" /></p>
<p>If you are converting a batch file to exe (or some other console program), you&#8217;ll be pleased to know that the exe file the tool generates never displays the command line window.  There is one command line parameter you can use when launching <code>converttoexe.exe</code>: <code>/launch</code></p>
<p><code>/launch</code> allows you to just specify a command you want to place into an exe.  First, run <code>converttoexe.exe /launch</code> (you can do this from the <strong>Run&#8230;</strong> command in your Windows Start menu).  It will first prompt you for the command you want to run.  Be sure to place quotes if the filename and/or path contains spaces, so that it will launch properly.</p>
<p><img src="http://geeklad.com/wp-content/uploads/2009/12/convert-to-exe-launch-parameter-dialog.png" alt="convert-to-exe-launch-parameter-dialog" title="convert-to-exe-launch-parameter-dialog" width="363" height="153" class="alignnone size-full wp-image-2017" style="border: 0 none;" /></p>
<p>After you provide the command, you&#8217;ll be prompted for the name and location of the exe file it will create.  Navigate to where you want to save the new exe and click Open.  The new exe will be saved there with the name you selected.</p>
<p>The <code>/launch</code> feature is good to use if you have a program that needs to be launched with specific command line parameters.  A good example is if you have a java application or something, where it needs to be launched with <code>javaw.exe</code> and then a bunch of parameters after it.</p>
<p>The PortableApps.com suite and geek.menu only recognize exe files for the launch menu.  This makes Convert to EXE ideal for placing Java applications into them.  Even better is the fact that they are launched without ever displaying the command window.  It is one of the easier and elegant solutions you&#8217;ll find for adding a Java application to the PortableApps.com suite.</p>
<h3><a name="changing-the-icon-of-the-exe">Changing the Icon of the EXE File</a></h3>
<p>If you want to change the icon of the output exe file, you can use a nice little tool called <a href="http://www.angusj.com/resourcehacker/">Resource Hacker</a>.  Just open the exe in resource hacker, and navigate to <strong>Icon Group</strong> &gt; <strong>101</strong> &gt; <strong>0</strong>.</p>
<p><img src="http://geeklad.com/wp-content/uploads/2009/12/resource-hacker-screen.png" alt="resource-hacker-screen" title="resource-hacker-screen" width="439" height="367" class="alignnone size-full wp-image-2004" style="border: 0 none;" /></p>
<p>Then <strong>Action</strong> &gt; <strong>Replace Icon &#8230;</strong>.</p>
<p><img src="http://geeklad.com/wp-content/uploads/2009/12/replace-icon-screen.png" alt="replace-icon-screen" title="replace-icon-screen" width="452" height="414" class="alignnone size-full wp-image-2005" style="border: 0 none;" /></p>
<p>Click <strong>Open file with new icon&#8230;</strong>, navigate to the location with the icon and click <strong>Open</strong>.  Click the <strong>Replace</strong> button.  Finally, click <strong>File</strong> &gt; <strong>Save</strong>.  This is exactly what I did to change the icon for <code>converttoexe.exe</code>.</p>
<h3><a name="techincal-details">Technical Details and Source Code</a></h3>
<p>I built the application in very much the same way in which it builds other exe files.  There is a main VBScript (<code>converttoexe.vbs</code>) and a partial script used as a wrapper (<code>wrapper.vbs</code>) to execute the desired file.  Essentially what the tool does is create a self-extracting 7-zip archive, and uses some VBScript as a wrapper to launch the file.  It does nothing more than create a self-extracting archive that launches the file that is compressed into it.</p>
<p>If you&#8217;re interested in looking at the code and modifying it, I&#8217;ve made it available as well (under the GPL):</p>
<p style="text-align: center;"><a style="border: 1px solid #888888; padding: 4px 8px; font-weight: bold;" href="http://geeklad.com/downloads/converttoexe_source.zip">Download the Convert to EXE Source Code</a></p>
<p>To &#8220;compile&#8221; it, just run build.bat.  It doesn&#8217;t really compile anything, it just builds a self-extracting archive containing several files:</p>
<ul>
<li><code>converttoexe.vbs</code>: This is the file containing most of the VBScript code to generate the exe files</li>
<li><code>wrapper.vbs</code>: This is a partial VBScript file that is used to launch the file being &#8220;converted&#8221; to an exe</li>
<li><code>wrapper.txt</code>: This is the self-extracting archive configuration file for the exes that will be converted</li>
<li><code>7z.exe</code>: The 7-zip archiving program</li>
<li><code>7zsd.sfx</code>: The 7-zip self-extracting builder</li>
</ul>
<p>The <code>build.bat</code> file is pretty straight forward and easy to follow.  It creates a 7-zip archive file called converttoexe.7z that contains all the files that are necessary to build other exe files.  The only line that looks a little weird is the line that actually builds the exe:</p>
<p><code>copy /y /b 7zsd.sfx + build.txt + converttoexe.7z converttoexe.exe</code></p>
<p>It combines the <code>7zsd.sfx</code> file, <code>build.txt</code> file (the configuration file for the self-extracting archive), and the converttoexe.7z archive that contains all the magic necessary to build other exe files.  Feel free to let me know if you make any modifications/enhancements to the scripts.  I can update the downloads here.</p>
]]></content:encoded>
			<wfw:commentRss>http://geeklad.com/convert-to-exe-with-free-program/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>How to Remove Antivirus 2009, Spyware Guard 2008 and Other Malware</title>
		<link>http://geeklad.com/remove-antivirus-2009-and-other-malwarerogue-software-with-malwarebytes-anti-malware</link>
		<comments>http://geeklad.com/remove-antivirus-2009-and-other-malwarerogue-software-with-malwarebytes-anti-malware#comments</comments>
		<pubDate>Mon, 05 Jan 2009 10:15:20 +0000</pubDate>
		<dc:creator>GeekLad</dc:creator>
				<category><![CDATA[PC Software]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[software utils]]></category>

		<guid isPermaLink="false">http://geeklad.com/?p=949</guid>
		<description><![CDATA[My wife, kids, and I spent this past Christmas at my parents&#8217; house. It wasn&#8217;t long after we arrived before I gravitated to their computer to check my email, read the news, check the stock market, etc. Much to my dismay, I found a barrage of malware, spyware, and rogue … <a href="http://geeklad.com/remove-antivirus-2009-and-other-malwarerogue-software-with-malwarebytes-anti-malware"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1053" title="antivirus" src="http://geeklad.com/wp-content/uploads/2009/01/antivirus.jpg" alt="antivirus" width="240" height="180" /><img style="border: 0px none;" src="https://www.cleverbridge.com/342/cookie?affiliate=3467&amp;product=29945" alt="" /><br />
My wife, kids, and I spent this past Christmas at my parents&#8217; house. It wasn&#8217;t long after we arrived before I gravitated to their computer to check my email, read the news, check the stock market, etc.</p>
<p>Much to my dismay, I found a barrage of malware, spyware, and rogue software had made its way onto their machine.  I searched around a bit, and found the perfect solution: <a href="http://www.malwarebytes.org/mbam.php">Malwarebytes&#8217; Anti-Malware</a>.</p>
<p><span id="more-949"></span></p>
<p><!-- Start of MacroVirus Banner Code --><a href="http://24abfcqlmsrgt8takyye18ts6g.hop.clickbank.net"><img src="http://www.cbadvance.com/sites/macrovirus/animated/468x60.gif" width="468" height="60" border="0 none" class="aligncenter"></a><!-- End of ExpressPaidSurveys Banner Code --></p>
<p>By far the most annoying type of software that had been installed on their machine was <a href="http://en.wikipedia.org/wiki/Rogue_software">rogue antivirus software</a>.  The worst and most persistent offenders were <a href="http://www.ca.com/us/securityadvisor/pest/pest.aspx?id=453141606">Spyware Guard 2008</a> and <a href="http://en.wikipedia.org/wiki/Antivirus_2009">Antivirus 2009</a>. Both of these programs (and many similar ones) are designed to deceive a computer user into believing they are legitimate, by informing the user that spyware and malware has been detected on the system.</p>
<p>Unwitting users click away at the dialog boxes and pay to register the programs, although in reality the programs themselves are the nuisance.  Although my parents appeared to have acquired these programs with relative ease, I had a very hard time finding them to intentionally install them (on a <a href="http://en.wikipedia.org/wiki/Virtual_machine">virtual machine</a>) for taking screenshots of them in action.</p>
<h2>Antivirus 2009</h2>
<p>I was able to find a website that generates a very convincing screen that indicates it has located malware on the computer.  The webpage and application even use the Windows Security Center Icon, which enhances its appearance of legitimacy.</p>
<div id="attachment_1093" class="wp-caption aligncenter" style="width: 160px"><a rel="lightbox" href="http://geeklad.com/wp-content/uploads/2009/01/security-center-icon.png"><img class="size-thumbnail wp-image-1093" title="security-center-icon" src="http://geeklad.com/wp-content/uploads/2009/01/security-center-icon-150x139.png" alt="security-center-icon" width="150" height="139" /></a><p class="wp-caption-text">The Windows Security Center icon.</p></div>
<p style="text-align: center;">
<p>In reality, the webpage does not perform any scan on the system although it claims to have done so.  Upon completion of the bogus scan, the page displays a dialog box that will install the program no matter what you click (if you download and run the EXE installer).  Once installed, Antivirus 2009 constantly displays warnings in attempt to have the victim purchase the full version of the software (fortunately my parents had not done this).</p>
<h2>Antivirus 2009 Screenshots</h2>
<table border="0">
<tbody>
<tr>
<td align="center" valign="center">
<p><div id="attachment_1069" class="wp-caption alignnone" style="width: 160px"><a rel="lightbox:Antivirus2009" href="http://geeklad.com/wp-content/uploads/2009/01/antivirus-2009-webpage-step-1.png"><img class="size-thumbnail wp-image-1069 " title="antivirus-2009-webpage-step-1" src="http://geeklad.com/wp-content/uploads/2009/01/antivirus-2009-webpage-step-1-150x124.png" alt="Initial view of a webpage that installs Antivirus 2009" width="150" height="124" /></a><p class="wp-caption-text">Initial view of a webpage that installs Antivirus 2009.</p></div></td>
<td align="center" valign="center">
<p><div id="attachment_1068" class="wp-caption alignnone" style="width: 160px"><a rel="lightbox:Antivirus2009" href="http://geeklad.com/wp-content/uploads/2009/01/antivirus-2009-webpage-step-2.png"><img class="size-thumbnail wp-image-1068 " title="antivirus-2009-webpage-step-2" src="http://geeklad.com/wp-content/uploads/2009/01/antivirus-2009-webpage-step-2-150x112.png" alt="antivirus-2009-webpage-step-2" width="150" height="112" /></a><p class="wp-caption-text">&quot;Popup&quot; that appears after the bogus scan takes place.</p></div></td>
</tr>
<tr>
<td align="center" valign="center"><div id="attachment_1062" class="wp-caption alignnone" style="width: 160px"><a rel="lightbox:Antivirus2009" href="http://geeklad.com/wp-content/uploads/2009/01/antivirus-2009-scan-on-clean-system.png"><img class="size-thumbnail wp-image-1062 " title="antivirus-2009-scan-on-clean-system" src="http://geeklad.com/wp-content/uploads/2009/01/antivirus-2009-scan-on-clean-system-150x112.png" alt="antivirus-2009-scan-on-clean-system" width="150" height="112" /></a><p class="wp-caption-text">Antivirus 2009 initial scan on a clean system.</p></div></td>
<td align="center" valign="center"><div id="attachment_1066" class="wp-caption alignnone" style="width: 125px"><a rel="lightbox:Antivirus2009" href="http://geeklad.com/wp-content/uploads/2009/01/antivirus-2009-alert-dialog.png"><img class="size-thumbnail wp-image-1066" title="antivirus-2009-alert-dialog" src="http://geeklad.com/wp-content/uploads/2009/01/antivirus-2009-alert-dialog-115x150.png" alt="antivirus-2009-alert-dialog" width="115" height="150" /></a><p class="wp-caption-text">One of many annoying and incessant nags from Antivirus 2009.</p></div></td>
</tr>
</tbody>
</table>
<h2>Spyware Guard 2008</h2>
<p>Spyware Guard 2008 is very similar to Antivirus 2009, in that it also attempts to have the user pay to register the product.  Unfortunately, I was unable to find a website that attempts to lure me into installing the program so that I could provide screenshots.  However, I was finally able to find the install exe (SpywareGuard2008.exe) on a filesharing site.</p>
<h2>Spyware Guard 2008 Screenshots</h2>
<table border="0">
<tbody>
<tr>
<td align="center" valign="center"><div id="attachment_1065" class="wp-caption alignnone" style="width: 160px"><a rel="lightbox:SpywareGuard2008" href="http://geeklad.com/wp-content/uploads/2009/01/spyware-guard-2008-installer.png"><img class="size-thumbnail wp-image-1065" title="spyware-guard-2008-installer" src="http://geeklad.com/wp-content/uploads/2009/01/spyware-guard-2008-installer-150x60.png" alt="spyware-guard-2008-installer" width="150" height="60" /></a><p class="wp-caption-text">Spyware Guard 2008 installer</p></div></td>
<td align="center" valign="center"><div id="attachment_1064" class="wp-caption alignnone" style="width: 160px"><a rel="lightbox:SpywareGuard2008" href="http://geeklad.com/wp-content/uploads/2009/01/spyware-guard-2008-warning.png"><img class="size-thumbnail wp-image-1064" title="spyware-guard-2008-warning" src="http://geeklad.com/wp-content/uploads/2009/01/spyware-guard-2008-warning-150x99.png" alt="spyware-guard-2008-warning" width="150" height="99" /></a><p class="wp-caption-text">Bogus warning dialog from Spyware Guard 2008.</p></div></td>
</tr>
<tr>
<td colspan="2" align="center" valign="center"><div id="attachment_1063" class="wp-caption alignnone" style="width: 160px"><a rel="lightbox:SpywareGuard2008" href="http://geeklad.com/wp-content/uploads/2009/01/spyware-guard-2008-application.png"><img class="size-thumbnail wp-image-1063" title="spyware-guard-2008-application" src="http://geeklad.com/wp-content/uploads/2009/01/spyware-guard-2008-application-150x105.png" alt="spyware-guard-2008-application" width="150" height="105" /></a><p class="wp-caption-text">Spyware Guard 2008 application showing bogus infections.</p></div></td>
</tr>
</tbody>
</table>
<h2>Removal of the Rogue Software</h2>
<p>Fortunately, <a href="http://www.malwarebytes.org/mbam.php">Malwarebytes&#8217; Anti-Malware</a> makes it relatively quick and easy to remove this horrendous software.  Just download the program and run a full system scan.  When the scan is complete, click the <strong>Show Results</strong> button and then the <strong>Remove Selected</strong> button.</p>
<div id="attachment_1080" class="wp-caption aligncenter" style="width: 310px"><a rel="lightbox" href="http://geeklad.com/wp-content/uploads/2009/01/anti-malware-scan-results.png"><img class="size-medium wp-image-1080 " title="anti-malware-scan-results" src="http://geeklad.com/wp-content/uploads/2009/01/anti-malware-scan-results-300x222.png" alt="anti-malware-scan-results" width="300" height="222" /></a><p class="wp-caption-text">Malwarebytes&#39; Anti-Malware scan results for the aforementioned rogue programs.</p></div>
<p>If there are still active programs once the removal has taken place, Anti-Malware will inform you and request a reboot to complete the removal process.  Upon reboot, the system will have been disinfected.</p>
<p>It is important to note that although the free version of Malwarebytes&#8217; Anti-Malware does an excellent job of detection and removal, it will not provide prevention.  If you would like to prevent the installation of malware in the first place, you will need to <a href="https://www.cleverbridge.com/342/?affiliate=3467&amp;cart=29945&amp;scope=cart">purchase the full verison</a>.</p>
<p><em>Photo Credit: </em><a href="http://www.flickr.com/photos/chrisdewey/"><strong><em>Chris Dewey</em></strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://geeklad.com/remove-antivirus-2009-and-other-malwarerogue-software-with-malwarebytes-anti-malware/feed</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Useful Applications on the Go</title>
		<link>http://geeklad.com/useful-applications-on-the-go</link>
		<comments>http://geeklad.com/useful-applications-on-the-go#comments</comments>
		<pubDate>Wed, 17 Sep 2008 13:13:27 +0000</pubDate>
		<dc:creator>GeekLad</dc:creator>
				<category><![CDATA[PC Software]]></category>
		<category><![CDATA[mobile computing]]></category>
		<category><![CDATA[software utils]]></category>

		<guid isPermaLink="false">http://geeklad.com/?p=137</guid>
		<description><![CDATA[If you&#8217;re a geek like me and you carry around a USB drive on your keychain, you might be looking for some useful utilities to keep on your drive.  First and foremost you need to protect your portable drive with encryption.  Information can fall into the wrong hands if the … <a href="http://geeklad.com/useful-applications-on-the-go"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://portableapps.com"><img class="alignleft" style="border: 0pt none;" src="http://wealthboy.com/wp-content/uploads/2008/09/portable-apps.jpg" alt="" width="355" height="60" /></a>If you&#8217;re a geek like me and you carry around a USB drive on your keychain, you might be looking for some useful utilities to keep on your drive.  First and foremost you need to <a href="http://geeklad.com/encryption-never-leave-home-without-it">protect your portable drive with encryption</a>.  Information can fall into the wrong hands if the drive is lost or stolen.  Your data can even be stolen if you hand your keys over when you get your car serviced or parked by a valet, so it is absolutely essential you keep data on your portable drive protected.<br />
<span id="more-137"></span><br />
Once you&#8217;re protected with encryption, you&#8217;ll want to install <a href="http://portableapps.com">PortableApps</a>.  PortableApps is a suite of very useful applications and utilities to have on your portable drive.  When you download the suite, you get a a nice menu launcher for loading applications and documents you store on your drive.  I actually use a <a href="http://portableapps.xrx.ca/">modified version of the PortableApps menu</a>.  I like the mod better, primarily because it allows you to rename and hide menu items.  I don&#8217;t know why the official version hasn&#8217;t yet incorporated the additional features that the mod provides, but I hope they do soon.  You may find these apps to be the most useful:</p>
<ul style="list-style-type: none; list-style-image: none; list-style-position: outside;">
<li><img style="border: 0pt none;" src="http://geeklad.com/wp-content/uploads/2008/09/firefox-icon.png" alt="" width="16" height="16" /> <a href="http://portableapps.com/apps/internet/firefox_portable">Firefox</a> &#8211; My favorite web browser.  It can be really useful to have your fully customized Firefox (with saved passwords and all) with you wherever you go.  Once again, I can&#8217;t stress enough how important encryption is.  If you save passwords on your portable Firefox make sure you&#8217;re running it on an encrypted drive so that your passwords will remain safe if the drive is lost or stolen.</li>
<li><img style="border: 0pt none;" src="http://geeklad.com/wp-content/uploads/2008/09/pidgin-icon.png" alt="" width="16" height="16" /> <a href="http://portableapps.com/apps/internet/pidgin_portable">Pidgin</a> &#8211; An instant messaging client that supports pretty much all of the major IM networks (Yahoo!, MSN, Google, AOL, IRC, Jabber, etc).</li>
<li><img src="http://geeklad.com/wp-content/uploads/2008/09/7-zip-icon.png" alt="" width="16" height="16" /> <a href="http://portableapps.com/apps/utilities/7-zip_portable">7-zip</a> &#8211; Never again will you be stranded with some kind of compressed file with no way to extract the contents.  7-zip supports a ton of different archive types.</li>
<li><img style="border: 0pt none;" src="http://geeklad.com/wp-content/uploads/2008/09/vlc-icon.png" alt="" width="16" height="16" /> <a href="http://portableapps.com/apps/music_video/vlc_portable">VLC</a> &#8211; An excellent and lightweight media player for playing movies and audio files.  With VLC you don&#8217;t have to hunt down codecs for playback, as it is all inclusive.</li>
<li><img style="border: 0pt none;" src="http://geeklad.com/wp-content/uploads/2008/09/notepad-icon.png" alt="" width="16" height="16" /> <a href="http://portableapps.com/apps/development/notepadpp_portable">Notepad++</a> &#8211; If you&#8217;re a developer, you&#8217;ll find Notepad++ indespensible.  It&#8217;s a really nice text editor that includes syntax highlighting for a ton of different programming languages.</li>
</ul>
<p>There are many other <a href="http://portableapps.com/apps">useful portable programs</a> available for download as well.  You can actually make any program available in the PortableApps menu, simply by copying all of the program files and subdirectories into a subdirectory under the PortableApps directory.  This works for relatively simple programs that include all of the necessary configuration and data files within the program directory and subdirectories.  You won&#8217;t be able to use more complicated programs that write entries into the system registry and copy and use files in other directories.  I&#8217;ll write more later about some of the other useful apps I carry on my USB drive that are not included in the PortableApps suite.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://geeklad.com/useful-applications-on-the-go/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Encryption: Never Leave Home Without It</title>
		<link>http://geeklad.com/encryption-never-leave-home-without-it</link>
		<comments>http://geeklad.com/encryption-never-leave-home-without-it#comments</comments>
		<pubDate>Tue, 09 Sep 2008 19:32:56 +0000</pubDate>
		<dc:creator>GeekLad</dc:creator>
				<category><![CDATA[PC Software]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[mobile computing]]></category>
		<category><![CDATA[software utils]]></category>

		<guid isPermaLink="false">http://geeklad.com/?p=90</guid>
		<description><![CDATA[As portable drives have gotten physically smaller and larger in storage capacity, they&#8217;ve become an indespensible gadget for many.  If you use yours to store vital and sensitive information, you need to secure that information with encryption.  I should not need to tell you about the long list of problems … <a href="http://geeklad.com/encryption-never-leave-home-without-it"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.truecrypt.org/"><img class="alignleft size-full wp-image-91" style="border: 0pt none;" title="truecrypt-logo" src="http://geeklad.com/wp-content/uploads/2008/09/truecrypt-logo.png" alt="" width="251" height="39" /></a></p>
<p>As portable drives have gotten physically smaller and larger in storage capacity, they&#8217;ve become an indespensible gadget for many.  If you use yours to store vital and sensitive information, you need to secure that information with encryption.  I should not need to tell you about the long list of problems that would arise, were you to ever misplace the drive or have it stolen.<br />
<span id="more-90"></span><br />
<a href="http://www.truecrypt.org/">TrueCrypt is a free and open source on-the-fly encryption utility</a> that I cannot live without.  It is very easy to use and it works on Windows Vista/XP, Mac OS X, and Linux.  TrueCrypt works by providing a virtual drive to your system that you can use just as you would any other normal drive.  All of the encryption takes place behind the scenes as you read/write data from/to the encrypted volume.  You can either encrypt your entire USB drive, or place a file within the drive to store the encrypted volume.  From the FAQ:</p>
<blockquote><p><strong>Q: How can I use TrueCrypt on a USB flash drive? </strong></p>
<p>A: You have two options:</p>
<ol>
<li> Encrypt the entire USB flash drive. However, you will not be able run TrueCrypt from the USB flash drive.<br />
Note: Windows does not support multiple partitions on USB flash drives.</li>
<li> Create a TrueCrypt file container on the USB flash drive (for information on how to do so, see the chapter <strong><a href="http://www.truecrypt.org/docs/?s=tutorial">Beginner&#8217;s Tutorial</a></strong>, in the <a href="http://www.truecrypt.org/docs/">TrueCrypt User Guide</a>). If you leave enough space on the USB flash drive (choose an appropriate size for the TrueCrypt container), you will also be able to store TrueCrypt on the USB flash drive (along with the container – not <em>in</em> the container) and you will be able to run TrueCrypt  from the USB flash drive (see also the chapter <a href="http://www.truecrypt.org/docs/?s=traveler-mode">Traveler Mode</a> in the <a href="http://www.truecrypt.org/docs/">TrueCrypt User Guide</a>).</li>
</ol>
</blockquote>
<p>TrueCrypt is an excellent utility and it will even encrypt a system volume (where you have your operating system installed).  My only complaint about this feature is that only Windows system drives are supported.  You would think an open source project would support such a feature on Linux before it would Windows.  In any case, it&#8217;s a great tool to have when you&#8217;re on the go.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://geeklad.com/encryption-never-leave-home-without-it/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Recover Lost Windows Keys</title>
		<link>http://geeklad.com/recover-lost-windows-keys</link>
		<comments>http://geeklad.com/recover-lost-windows-keys#comments</comments>
		<pubDate>Thu, 04 Sep 2008 00:07:01 +0000</pubDate>
		<dc:creator>GeekLad</dc:creator>
				<category><![CDATA[PC Software]]></category>
		<category><![CDATA[software utils]]></category>

		<guid isPermaLink="false">http://geeklad.com/?p=21</guid>
		<description><![CDATA[It&#8217;s frustrating to lose your keys, particularly if it is your Product Registration Key for Windows or other software products.  Karl Gechlik over at makeuseof.com has a nice little write-up about a product called the Magic Jelly Bean Finder that helps you to recover lost product codes.  I&#8217;ve used this … <a href="http://geeklad.com/recover-lost-windows-keys"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 511px"><a href="http://www.makeuseof.com/wp-content/uploads/2008/09/magicaljellybean.jpg"><img style="border: 0pt none;" title="magicaljellybeanfinder.jpg" src="http://www.makeuseof.com/wp-content/uploads/2008/09/magicaljellybean.jpg" alt="Magical Jelly Bean Finder Screenshot" width="501" height="215" /></a><p class="wp-caption-text">Magical Jelly Bean Finder Screenshot</p></div>
<p>It&#8217;s frustrating to lose your keys, particularly if it is your Product Registration Key for Windows or other software products.  Karl Gechlik over at <span style="color: #0000ff;">make</span>use<span style="color: #ff0000;">of</span>.com has a nice little <a href="http://www.makeuseof.com/tag/recover-your-lost-xp-vista-and-office-serial-numbers/">write-up about a product called the Magic Jelly Bean Finder that helps you to recover lost product codes</a>.  I&#8217;ve used this little jewel in the past and it can really make life a lot easier when performing Windows reinstallations.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://geeklad.com/recover-lost-windows-keys/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: geeklad.com @ 2012-02-04 00:05:16 -->
