<?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>MakeUseOf &#187; windows processes</title>
	<atom:link href="http://www.makeuseof.com/tags/windows-processes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 21:31: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>
		<item>
		<title>How To Control Running Services With The SC Command [Windows]</title>
		<link>http://www.makeuseof.com/tag/control-running-services-sr-command-windows/</link>
		<comments>http://www.makeuseof.com/tag/control-running-services-sr-command-windows/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 22:31:54 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[pc maintenance]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[system monitor]]></category>
		<category><![CDATA[system tools]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=95838</guid>
		<description><![CDATA[One of the things that I find myself doing much more often since diving into IT is monitoring and checking the status of services running on computers that are running across the company. There is the standard way of managing services which most people use because it's well-known and fairly easy. But what about another way?]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/computercode.png?323f2c" alt="services in computer" />One of the things that I find myself doing much more often since diving into IT is monitoring and checking the status of services running in computers across the company.</p>
<p>There is the standard way of managing services which most people use because it&#8217;s well-known and fairly easy. This involves going into Administrative controls or going into the control panel, hunting down the Services utility and doing what you need to do.</p>
<p>If you want to manage the services that are running on a different computer or server on your network, you need to go to computer management, connect to the remote machine, and then manage those services.</p>
<p>There&#8217;s nothing at all wrong with taking this approach &#8211; in fact system administrators everywhere use these standard Windows utilities to manage the infrastructure across the enterprise. But, what if you could monitor, stop and start services by typing in a single line at the command prompt?</p>
<h2>Controlling Services From the Command Line</h2>
<p>You may need to stop services running in a client computer so that you can reinstall some software. Or maybe you need to restart services that are running on a server because some software isn&#8217;t working properly.</p>
<p>Up until now, you&#8217;ve probably managed services on client machines running on your network using the standard services utility. This is the Services tool that you launch in the <em>Administrative Tools</em> section of the control panel.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/services1.png?323f2c" alt="services in computer" width="523" height="398" /></p>
<p>In Admin Tools, you can either go directly to the Services tool, or open up computer management if you want to access a different computer on your network.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/services2.png?323f2c" alt="running services windows" width="427" height="363" /></p>
<p>To access a different computer, just click action, &#8220;<em>Connect to Another Computer</em>&#8221; and then type the network name of the computer.</p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/services3.png?323f2c" alt="running services windows" width="564" height="373" /></p>
<p>Then you can open up the services tool.</p>
<h3>An Easier Way To Manage Services</h3>
<p>So anyway, that&#8217;s the long way. The shorter and faster way is to use the command &#8220;SC&#8221;.</p>
<p>You&#8217;re probably familiar with the NET command. The SC command is nearly identical to NET, except that it can also create a service, in addition to monitoring, stopping and starting them. Best of all, you can issue the SC command against other computers over the network (assuming you have admin rights).</p>
<p>Doing an SC query against a computer will give you all of the installed services and whether they are running. When you issue the command <em>&#8220;SC \\**computer-name** query |more&#8221;</em> &#8211; you&#8217;ll get an output as shown here.</p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/sc11.png?323f2c" alt="running services windows" width="574" height="502" /></p>
<p>As you can see, this gives you the state of the service, the type of service and other parameters. For the sake of our exercises here, we&#8217;re going to pay attention to just the state of the services.</p>
<p>If you want to list only the services that are currently not running (stopped), then you would issue the command, <em>&#8220;SC \\**computer-name** query state= &#8220;inactive&#8221; |more&#8221;</em></p>
<p>The |more part of the command makes the output pause on each screen so that you can scroll.</p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/sc21.png?323f2c" alt="services running on computer" width="577" height="500" /></p>
<p>As you can see, those services are all stopped. Now, instead of having to dig through all of those services, if you know the name of the service, you can just issue the command <em>&#8220;SC \\**computer-name** query **service-name**&#8221;</em></p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/sc31.png?323f2c" alt="services running on computer" width="578" height="145" /></p>
<p>That will report back with the current status of just that service and nothing else. To remotely stop a service, all you have to do is issue the stop command, <em>&#8220;SC \\**computer-name** stop **service-name**&#8221;</em></p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/sc41.png?323f2c" alt="services running on computer" width="579" height="156" /></p>
<p>The output will show a state of &#8220;STOP-PENDING&#8221;, but after a few moments, if you query that service again, you&#8217;ll see that it is no longer running. You can start it by issuing the same command, but replacing &#8220;stop&#8221; with &#8220;start&#8221;.</p>
<h3>Creating A Script To Query, Stop Or Start Any Service</h3>
<p>Okay, so now that you&#8217;ve got the basics down, it&#8217;s time to write a script that will stop any service that you want without the need to remember the exact command string. We can do this by writing a trusty Windows Script, as follows.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;">&lt;script <span style="color: #151B8D; font-weight: bold;">type</span>=<span style="color: #800000;">&quot;text/javascript&quot;</span> language=<span style="color: #800000;">&quot;VBScript&quot;</span>&gt;// &lt;![CDATA[
   <span style="color: #E56717; font-weight: bold;">Option</span> <span style="color: #E56717; font-weight: bold;">Explicit</span> <span style="color: #151B8D; font-weight: bold;">On</span> <span style="color: #151B8D; font-weight: bold;">Error</span> <span style="color: #151B8D; font-weight: bold;">Resume</span> <span style="color: #8D38C9; font-weight: bold;">Next</span> <span style="color: #151B8D; font-weight: bold;">Dim</span> WshShell <span style="color: #151B8D; font-weight: bold;">Dim</span> strInput <span style="color: #151B8D; font-weight: bold;">Dim</span> strComputer <span style="color: #151B8D; font-weight: bold;">Dim</span> x <span style="color: #151B8D; font-weight: bold;">Dim</span> blnGetList <span style="color: #151B8D; font-weight: bold;">Dim</span> strStopStart <span style="color: #151B8D; font-weight: bold;">set</span> WshShell=<span style="color: #E56717; font-weight: bold;">CreateObject</span>(<span style="color: #800000;">&quot;WScript.Shell&quot;</span>) x=0 strComputer = InputBox(<span style="color: #800000;">&quot;Enter the computer or server name:&quot;</span>) <span style="color: #8D38C9; font-weight: bold;">Do</span> <span style="color: #8D38C9; font-weight: bold;">while</span> x=0    <span style="color: #008000;">'Query User for Service to check    strInput = InputBox(&quot;Enter the service name or DONE:&quot;)    If strInput = &quot;DONE&quot; or strInput = &quot;done&quot; then 	x=1    Else 	strStopStart = MsgBox(&quot;Stop Service? Yes-Stop, No-Start&quot;, VBYesNo, &quot;Stop Request&quot;)        'Send commands 	IF strStopStart = vbYes then       	    WshShell.run &quot;cmd.exe&quot;             WScript.Sleep 1000             WshShell.SendKeys &quot;sc \\&quot; &amp;#038; strComputer &amp;#038; &quot; stop &quot; &amp;#038; strInput &amp;#038; &quot; &gt;&gt; c:\temp\results.txt&quot;
</span>            WshShell.SendKeys (<span style="color: #800000;">&quot;{Enter}&quot;</span>)
            WScript.Sleep 1000
            WshShell.SendKeys <span style="color: #800000;">&quot;exit&quot;</span>
            WshShell.SendKeys (<span style="color: #800000;">&quot;{Enter}&quot;</span>)
&nbsp;
         <span style="color: #8D38C9; font-weight: bold;">Else</span>
&nbsp;
      	    WshShell.run <span style="color: #800000;">&quot;cmd.exe&quot;</span>
            WScript.Sleep 1000
&nbsp;
            WshShell.SendKeys <span style="color: #800000;">&quot;sc \\&quot;</span> &amp;#038; strComputer &amp;#038; <span style="color: #800000;">&quot; start &quot;</span> &amp;#038; strInput &amp;#038; <span style="color: #800000;">&quot; &gt;&gt; c:\temp\results.txt&quot;</span>
            WshShell.SendKeys (<span style="color: #800000;">&quot;{Enter}&quot;</span>)
            WScript.Sleep 1000
            WshShell.SendKeys <span style="color: #800000;">&quot;exit&quot;</span>
            WshShell.SendKeys (<span style="color: #800000;">&quot;{Enter}&quot;</span>)
	 <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span> 
&nbsp;
  <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
&nbsp;
<span style="color: #8D38C9; font-weight: bold;">Loop</span>
&nbsp;
WScript.Quit
// ]]&gt;&lt;/script&gt;</pre></div></div>

<p>When you run this script, it&#8217;ll ask you for the name of the service that you want to stop or start.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/sc5.png?323f2c" alt="services running on computer" width="363" height="160" /></p>
<p>And then whether you want to stop or start the service.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/sc7.png?323f2c" alt="" width="188" height="107" /></p>
<p>Using the <em>&#8220;&gt;&gt; c:\temp\results.txt&#8221;</em> command, it outputs the stop and start results and errors to a text file that you can use to see whether the command worked.</p>
<p>When I ran the script above, I followed it up with a quick query of the service before and after running the script.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/sc8.png?323f2c" alt="services in computer" width="576" height="278" /></p>
<p>As you can see, the service I stopped &#8211; helpsvc &#8211; was running. I ran the Windows Script to stop it, queried it, and it was stopped.</p>
<p>If you wanted to get really fancy, you could add a section to the script that outputted all of the currently installed services on the PC to a text file that you could review before deciding which service to stop or start. The command for that would be <em>&#8220;sc \\&#8221; &amp; strComputer &amp; &#8221; query &gt; c:\temp\services.txt&#8221;.</em></p>
<p>As you can see, the SC command can be a pretty powerful and efficient way to manage services on any computer, and if you have some talent with Windows Scripting, you can even automate the process to make your job even easier.</p>
<p>Do you think the SC command could come in handy for you? What about an automated script that runs the command? Share your ideas and thoughts in the comments section below.</p>
<p><small>Image Credit: <a href="http://image.shutterstock.com/display_pic_with_logo/298498/298498,1281943813,1/stock-photo-code-of-php-language-programming-on-blue-59109898.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/control-running-services-sr-command-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Shut Down Unwanted Connections To Your PC With CloseTheDoor</title>
		<link>http://www.makeuseof.com/tag/shut-unwanted-connections-pc-closethedoor/</link>
		<comments>http://www.makeuseof.com/tag/shut-unwanted-connections-pc-closethedoor/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:00:25 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[pc maintenance]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[security tips]]></category>
		<category><![CDATA[system monitor]]></category>
		<category><![CDATA[system tools]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=94149</guid>
		<description><![CDATA[When computers work well, things are pretty cool. Every component of your PC just....works. But when you get one of those nasty little downloads - one of those little scripts or apps that dig its way deep down into the heart of your computer - it can be unnerving. Luckily, there is a new tool you can use to manually go through and clean up those evil processes.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/fileinvestigate.png?323f2c" alt="close network connection"/>When computers work well, things are pretty cool. Every component of your PC just&#8230;.works.</p>
<p>But when you get one of those nasty little downloads &#8211; one of those little scripts or apps that dig its way deep down into the heart of your computer &#8211; it can be unnerving.</p>
<p>Suddenly, your keyboard doesn&#8217;t work quite right. Your CPU starts going haywire when you aren&#8217;t even doing anything. Your mouse starts flipping out every time you open a particular browser.</p>
<p>If you&#8217;ve ever been bothered with such a malware or virus software, then you know what I&#8217;m talking about. Those little apps sometimes latch themselves to the inner workings of your computer when you least expect it.</p>
<p>While we all trust antivirus software and anti-malware programs like <a href="http://www.makeuseof.com/tag/optimize-sterilize-harmonize-system-iobit-advanced-system-care-windows/">IOBit</a> or <a href="http://www.makeuseof.com/tag/stop-and-delete-spyware-with-malwarebytes-windows-only/">MalwareBytes</a> to identify those nasty varmints, the truth is that sometimes things slip through the cracks.</p>
<p>Luckily, there is a new tool you can use to manually go through and clean up those evil processes.</p>
<h2>Close the Door on Malware</h2>
<p>The bottom line is that any malware is typically meant to run in some form on your PC, and somehow transmit information into or out of your computer via the Internet.</p>
<p>A very simple utility called <a href="http://sourceforge.net/projects/closethedoor/"><strong>CloseTheDoor</strong></a> lets you probe into the processes that are running on your computer, and analyze those processes at a level that usually requires a professional. The reason you can do this is because CloseTheDoor makes the analysis very simple and logical, putting all of the tools you need in one place.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor1.png?323f2c" alt="close network connection" width="579" height="448" /><br />
When you first run the program, it performs it&#8217;s basic function fast and well. You&#8217;ll see a list of every process &#8220;endpoint&#8221; that is listening on any port on your computer whatsoever. The detailed list tells you the interface IP (if there is one), the port, communication protocol, process ID, and any associated services.</p>
<p>While this all may not tell you exactly what the process is right away, the information is an important first step toward recognizing that something is running on your computer that you do not want running.</p>
<p>In particular, look for processes without any associated company or description information.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor2.png?323f2c" alt="close connection" width="578" height="431" /><br />
Once you spot a process that looks fishy, and you want to learn more, just click on the &#8220;Selection&#8221; menu and then click on &#8220;Locate the executable file&#8221;.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor3.png?323f2c" alt="close connection" width="531" height="401" /><br />
As you can see below, by tracing down the actual executable, you will often be able to identify the software that kicked off the process. For example, in this case Windows Explorer opened to the path for PaperCut NG, which was an educational software package that I was testing recently.<br />
This discovery told me that there was a process running that I didn&#8217;t know about, consuming precious memory. Uninstalling the software removed that process, freed up the memory, and ultimately improved performance.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor4.png?323f2c" alt="close connection" width="558" height="429" /><br />
If you click on &#8220;File&#8221; and then the summary, you will see a general report with totals for how many endpoints are listening on each interface IP address. You don&#8217;t need to be quite as concerned with the IP addresses as you do with the total number of processes that are listening on some port on your PC<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor5.png?323f2c" alt="kill network connection" width="403" height="234" /><br />
The software also gives you an entire toolbox of shortcuts and tools you can use to troubleshoot any problem processes that you simply can&#8217;t seem to recognize as valid. Sometimes, there may be a process running that isn&#8217;t malware, but you really don&#8217;t want it running all the time. That may be from a startup shortcut being added to your Startup folder without your knowledge. You can check out things like that using the System configuration utility under &#8220;Tools&#8221;.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor6.png?323f2c" alt="kill network connection" width="531" height="326" /><br />
Here you can view running services on your computer, and more importantly you can view and disable or enable all of the applications that are set up to auto-startup when you boot up your computer. This configuration utility puts all of the Windows config tools that can help you with process analysis all in one convenient window.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor7.png?323f2c" alt="" width="577" height="391" /><br />
Another fast way to analyze an unknown process is by right clicking the service in the main display, and clicking on either &#8220;Process services&#8221; to view the services that are kicked off by this process, or you can use any of the Google or Wikipedia links in the list to research exactly what the process might be, and what that particular port is usually used for.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor8.png?323f2c" alt="kill network connection" width="529" height="436" /><br />
If you click to view the services, you&#8217;ll get a table of all running services that were kicked off by that process. You can select any of these services and stop them if you want. More importantly, some of the detailed names for those services may also offer some clues as the what the mysterious process is really all about.</p>
<p><img class="aligncenter size-full wp-image-94159" style="border: 1px solid black;" title="closethedoor9" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor9.png?323f2c" alt="" width="439" height="225" /><br />
To help you do some extensive research on the processes and services that you find running on your PC, CloseTheDoor offers a list of online resources under &#8220;Internet References&#8221;. Click on any of these to open up your browser and review resources like a list of port numbers and their uses at www.iana.org, a list of all Windows services at Wikimedia.org or how to configure your firewall at Microsoft.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/closethedoor10.png?323f2c" alt="close network connection" width="529" height="370" /><br />
The bottom line is that there will always bee some new malicious app out there that somehow &#8211; no matter what protections or blockades you put in place &#8211; gets onto your PC. When things start heading south with your PC activity and performance, researching your running processes is always a really good idea, and CloseTheDoor makes the process simple and painless.</p>
<p>Try out this utility and see if it helps you identify things running on your PC that you didn&#8217;t know about. Share your experiences with the software in the comments section below.</p>
<p><small>Image Credit: <a rel="nofollow" href="http://image.shutterstock.com/display_pic_with_logo/400282/400282,1304233549,4/stock-photo-moving-documents-between-folders-d-illustration-76277335.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/shut-unwanted-connections-pc-closethedoor/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Give Your Applications A Speed Boost with Process Prioritizer [Windows]</title>
		<link>http://www.makeuseof.com/tag/give-applications-speed-boost-process-prioritizer-windows/</link>
		<comments>http://www.makeuseof.com/tag/give-applications-speed-boost-process-prioritizer-windows/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 17:01:42 +0000</pubDate>
		<dc:creator>Danny Stieben</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[speedup]]></category>
		<category><![CDATA[system tools]]></category>
		<category><![CDATA[tweaks]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=92998</guid>
		<description><![CDATA[Today's computers have hardware that do some pretty astounding work. This is especially true when comparing today's hardware with the hardware from 5+ years back. However, today's workloads have also been increased alongside the power increase of hardware. In that respect, people have been trying to find ways to make applications run more efficiently on their machines in order to get maximum performance.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/car_speedometer_fast.jpg?323f2c" alt="setting process priority" />Today&#8217;s computers have hardware that do some pretty astounding work. This is especially true when comparing today&#8217;s hardware with the hardware from 5+ years back. However, today&#8217;s workloads have also been increased alongside the power increase of hardware. In that respect, people have been trying to find ways to make applications run more efficiently on their machines in order to get maximum performance.</p>
<p>However, there&#8217;s one technique that is rarely used. In fact, it&#8217;s much different from the common advice to close applications you don&#8217;t need. So what is this secret technique?</p>
<h2>What Is Process Prioritization?</h2>
<p>Process prioritization has existed in <a href="http://www.makeuseof.com/service/windows">Windows</a> for quite a while now, but it hasn&#8217;t really been used by most people because it&#8217;s hidden in a pretty technical corner of your computer. Whenever a process, or running application, has an assigned priority, the system will try its best to allocate its resources (which will be primarily the amount of <a href="http://www.makeuseof.com/tags/cpu/">CPU</a> power) to fit the process&#8217;s needs based on its priority. So theoretically, the higher the priority, the faster the application should run.</p>
<h2>How To Do It</h2>
<p>There are two ways in order to do this. First, you can change the priority of processes through the task manager (Ctrl + Alt + Del) by right clicking on each process and changing the priority. However these changes disappear once the process ends, and it takes time to apply those priorities to multiple processes. You also can&#8217;t create &#8220;rules&#8221; for new processes. Here&#8217;s where a nifty little program comes in.</p>
<h2>About Process Prioritizer</h2>
<p>Process Prioritizer makes managing process priorities easier than with just the Task Manager. With Process Prioritizer, you can essentially create rules for Windows to follow for any processes that you choose. You can even choose to change the priority of system processes if you run the program as an administrator, but only do it if you&#8217;re 500% sure what you&#8217;re doing. However, you&#8217;ll need to install it first in order to make changes.</p>
<h2>Installation</h2>
<p>For installation, you&#8217;ll need to go to <a href="http://www.officeworldsolutions.com/freeware.html">this site</a>, scroll to the very bottom, and hit the last download link. Go through the setup wizard as normal, and you should now have an entry in your start menu. Go ahead and click on it, and a tray icon should now appear. Right click on it and select Open to start the configuration.</p>
<h2>The Program</h2>
<p>As you can see, the window isn&#8217;t exactly stylish, but for a fairly administrative task you can&#8217;t really ask for much in that department. There are a couple of tabs for configuration, and each tab only has a certain option.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/process_prioritizer_operation_tab.jpg?323f2c" alt="setting process priority" width="580" height="440" /></p>
<p>The &#8220;<em>Operation</em>&#8221; tab allows you to choose how it should update the process priorities. I would recommend leaving it at the default setting as it&#8217;s the fastest without using up a lot of CPU power.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/process_prioritizer_normal_tab.jpg?323f2c" alt="" width="580" height="434" /></p>
<p>The next four tabs simply allow you to enter in the names of processes for each level of priority. Real-time is the highest, and Idle is the lowest. Note that putting in process names in the Normal tab won&#8217;t do anything unless the operating system launches that process at a different priority by default, which I wouldn&#8217;t recommend touching.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/process_prioritizer_current_processes_tab.jpg?323f2c" alt="setting process priority" width="580" height="449" /></p>
<p>Also, when entering processes, don&#8217;t forget to add &#8220;<em>.exe</em>&#8221; to the end. So for example, you can add &#8220;<em>chrome.exe</em>&#8221; to change the priority of <a href="http://www.makeuseof.com/tags/google-chrome/">Google Chrome</a>. You can find out the name of the process you&#8217;re looking for in the task manager or in the tab labeled &#8220;<em>Current Processes</em>&#8220;. In that tab, you can confirm that the targeted process has changed priorities.</p>
<h2>Conclusion</h2>
<p>Like I mentioned above, the positive effects are theoretical. There isn&#8217;t a guarantee that it&#8217;ll bring much, but it&#8217;s always worth a try. Through personal experience I&#8217;ve seen that processes that don&#8217;t have a graphical part to it (like a GUI) have the most benefit from it. Chrome sometimes benefits from it, being faster one time and it feels like it&#8217;s stumbling over itself another time. It&#8217;s always best to try it out as you might get some much appreciated speed.</p>
<p>What&#8217;s your favorite way of speeding up your system? What has worked, and what hasn&#8217;t worked that you thought might have? Let us know in the comments!</p>
<p><small>Image Credit: <a href="http://www.shutterstock.com/pic-55441261.html" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/give-applications-speed-boost-process-prioritizer-windows/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Taking A Closer Look At Windows Resource Monitor</title>
		<link>http://www.makeuseof.com/tag/closer-windows-resource-monitor/</link>
		<comments>http://www.makeuseof.com/tag/closer-windows-resource-monitor/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 15:31:21 +0000</pubDate>
		<dc:creator>Matt Smith</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[system monitor]]></category>
		<category><![CDATA[windows processes]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=58046</guid>
		<description><![CDATA[What is your computer doing in there? On the exterior it is a mass of plastics and metals, roughly pressed together to provide your PC with a protective case. But is it protecting your PC from the outside, or is it protecting you from the strange and arcane things happening inside your PC? Perhaps it [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/windowsresourcethumb.jpg"><img class="align-left" style="border: 0px none; margin-left: 20px; margin-top: 5px; float: right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/windowsresourcethumb.jpg?323f2c" alt="windows resource monitor" width="218" height="137" />What is your computer <em>doing</em> in there? On the exterior it is a mass of plastics and metals, roughly pressed together to provide your PC with a protective case. But is it protecting your PC from the outside, or is it protecting <em>you</em> from the strange and arcane things happening inside your PC?</p>
<p>Perhaps it is time to find out exactly what your computer is up to &#8211; particularly if your computer is behaving badly. There are many third-party tools that can clean, scrub, and protect your PC, but none of those will help you better understand what&#8217;s going on. A program that can help you understand what is going on ships with every Windows PC. It&#8217;s called Windows Resource Monitor. Let&#8217;s take a look at what it can tell us.</p>
<p><span id="more-58046"></span></p>
<h2>Opening Windows Resource Monitor</h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/windowsresourcem.jpg?323f2c" alt="windows resource monitor" width="412" height="459" /></p>
<p>Of course, we need to open Windows Resource Monitor before we can do anything. Windows Resource Monitor is a feature that was added in Vista and carries over to Windows 7. As far as I can gather, the only way to open it is through the <a href="http://www.makeuseof.com/tag/customizing-windows-task-manager-liking-task-manager-modder/">Windows Task Manager </a>- so press CTRL-ALT-DEL and open it.</p>
<p>Once Task Manager is open, go to the <em>Performance</em> tab. In the lower right hand corner is a button labeled <em>Resource Monitor</em>. Click it, and you&#8217;re ready to go!</p>
<h2>The Basics</h2>
<p>Windows Resource Monitor will, by default, open up to the <em>Overview</em> tab. This provides general, but useful, information about your computer. The best way to start becoming acquainted with Windows Resource Monitor is probably the graphs on the right side of the <em>Overview</em> tab. There are graphs here for your processor, hard disk, network and memory. These graphs will tell you how much of each is being used.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/windowsresourcem1.jpg?323f2c" alt="resource monitor windows 7" width="542" height="457" /></p>
<p>A computer at idle should display each graph as nearly flat. There may be minor spikes in usage, typically due to background processes, but these spikes should be few and they shouldn&#8217;t significantly consume system resources.</p>
<p>Other usage scenarios will result in distinct patterns.  For example, it is normal to see high disk activity and high network usage when you are <a href="http://www.makeuseof.com/tag/the-best-free-file-download-managers/">downloading a file</a>. It is also normal to see high disk activity while your virus scanning software is operating.</p>
<p>Sudden (or not-so-sudden), unexplained spikes are not normal. They may be the result of bloatware (unwanted programs that come pre-installed in your system), an inefficient antivirus program, a program that did not close correctly or even malware.</p>
<h2>A Deeper Look At CPU Usage</h2>
<p>Open the <em>CPU</em> tab of Windows Resource Monitor. When you do so, the graphs on the right will change. You&#8217;ll now be shown a graph for each core Windows detects (or two graphs for each core if you have an Intel processor with Hyper-Threading enabled). The total CPU usage graph remains, as well.</p>
<p>But the most important information here is not the graphs. What you&#8217;ll need to take a closer look at is the text information under the labels of <em>Processes</em> and <em>Services</em>. A process is an active application, while a service is a background application that conforms to special rules (it can run automatically on boot, it can run when no user is logged on, etc).</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/windowsresourcem2.jpg?323f2c" alt="resource monitor windows 7" width="542" height="457" /></p>
<p>When it comes to checking out processor usage, however, you&#8217;ll organize both using the same tactic. Simply organize the processes or services by the average CPU value. Tada! You now know what programs are taking up your processor&#8217;s power. Please note that common processes and services can sometimes appear under odd names in Windows Resource Monitor. Be sure to Google an unknown program and identify it before you close it.</p>
<h2>Analyzing Memory Usage</h2>
<p>The way your computer uses its <a href="http://www.makeuseof.com/tag/difference-ddr2-ddr3-ram-technology-explained/">short-term memory (RAM)</a> is important to overall performance. If you&#8217;re running low on available memory you&#8217;ll find that your computer&#8217;s performance becomes sluggish.</p>
<p>RAM usage can be found under the <em>Memory</em> tab. A new, useful line graph appears at the bottom of Windows Resource Monitor. This graph shows you how much memory is in use, how much is on stand-by (containing active data, but not actively in use) and how much is completely free.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/windowsresourcem3.jpg?323f2c" alt="resource monitor windows 7" width="542" height="457" /></p>
<p>Ideally you&#8217;ll want to see some free memory on this graph. The real problem, however, comes when your in-use memory fills up most of the graph. This means you simply don&#8217;t have any RAM left to use! You can free up memory by organizing processes by their <em>Working</em> memory share and shutting down memory hogs. If your system has limited memory, however, you may simply need to add more memory to your PC.</p>
<h2>Hard Disk &amp; Network Usage</h2>
<p>Most users underestimate the effect their hard drive can have on overall system performance. The speed with which you can download files, install programs, transfer information, and open programs can all be affected by your hard drive&#8217;s performance. Sometimes a program, such an <a href="http://www.makeuseof.com/tag/ten-best-antivirus-programs/">anti-virus scanner</a>, will bombard your hard disk with requests for information.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/11/windowsresourcem4.jpg?323f2c" alt="windows resource monitor" width="542" height="457" /></p>
<p>Opening up the <em>Disk</em> tab will show you the <em>Processes</em> <em>with</em> <em>Disk Activity</em> display. This shows you all the active processes that are consuming your hard disk&#8217;s time. You&#8217;ll usually see a few common Windows processors, like <em>System</em> and <em>svchost.exe</em>, listed here. But you may also see other programs. This may clue you in as to why programs are loading slowly.</p>
<p>Finally, take a look at the <em>Network</em> tab. You will again see a <em>Processes with Network Activity</em> display, which is very useful for tracking down programs that are making unwanted network connections (although nasty malware is often programmed to dodge Windows Resource Monitor or disguise itself as a more innocent process). You can also analyze your active network connections using the TCP connections display.</p>
<h2>Conclusion</h2>
<p>Familiarzing yourself with Windows Resource Monitor is a great idea. It is a very effective program that can tell you a lot about why your computer is behaving well or poorly. You can track down runaway programs and close them, and you can also see if a hardware upgrade is necessary to use the programs you prefer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/closer-windows-resource-monitor/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Monitor Your Computer Better With Process Hacker</title>
		<link>http://www.makeuseof.com/tag/monitor-computer-process-hacker/</link>
		<comments>http://www.makeuseof.com/tag/monitor-computer-process-hacker/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 15:31:30 +0000</pubDate>
		<dc:creator>Matt Smith</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[system monitor]]></category>
		<category><![CDATA[system tools]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=53990</guid>
		<description><![CDATA[Windows Task Manager has evolved into a reasonably good utility. It offers a lot of information about what your computer is doing at any particular moment; the programs running, the load on the processor, and network activity are displayed. There are limits to what Windows Task Manager can do for you however. If you&#8217;re interested [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/processhackerthumb.png"><img class="align-left" style="border: 0px none; margin-left: 20px; margin-top: 5px; float: right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/processhackerthumb.png?323f2c" alt="monitor your computer" width="265" height="171" /><a href="http://www.makeuseof.com/tag/customizing-windows-task-manager-liking-task-manager-modder/">Windows Task Manager </a>has evolved into a reasonably good utility. It offers a lot of information about what your computer is doing at any particular moment; the programs running, the load on the processor, and network activity are displayed.</p>
<p>There are limits to what Windows Task Manager can do for you however. If you&#8217;re interested in the real nitty-gritty details of your computer&#8217;s inner workings you&#8217;ll need something better, stronger, faster &#8211; something like <a href="http://processhacker.sourceforge.net/">Process Hacker</a>.</p>
<p><span id="more-53990"></span></p>
<h2>Monitoring Processes</h2>
<p>When you install and open Process Hacker you&#8217;ll be presented with a window that has three tabs. They are &#8211; from left to right &#8211; <em>Processes, Services</em> and <em>Network.</em></p>
<p><a href="http://www.makeuseof.com/tag/3-tools-to-manage-processes-better-windows/">Processes </a>is the tab that will be open first by default. Like the Windows Task Manager, this tab of Process Hacker shows all of the programs and applications that are currently running on your computer. This includes programs that are running in the foreground and those that are running in the background.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/processhacker11.png?323f2c" alt="monitor your computer" width="570" height="407" /></p>
<p>There are a couple of features here that make Process Hacker more useful than Windows Task Manager. The information that appears in Process Hacker is organized into trees (you have to enable <em>Show All Processes</em> for this to display) that show which currently open processes rely on each other.</p>
<p>For example, closing <em>explorer.exe</em> in Windows typically causes a number of other programs to also shut down and restart. These programs are listed under <em>explorer.exe</em> in Process Hacker, so you know at a glance that shutting down <em>explorer.exe</em> would probably cause these programs to terminate.</p>
<p>Process Hacker also color-codes processes. The color-code chart can be found by going to <em>Hacker &#8211;&gt; Options &#8211;&gt; Highlighting</em>. This lets you quickly determine if a program is a system process, a prioritized program, etc. That information can be useful when hunting down background programs that aren&#8217;t essential.</p>
<h2>Good Service</h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/processhacker2.png?323f2c" alt="computer processes" width="545" height="420" /></p>
<p>The <em>Service</em> tab in Process Hacker shows you all of the different Windows services (most of them are drivers) that are on your computer. It is extremely detailed and picks up on information that Windows Task Manager will not show. Process Hacker also provides useful information about the current state of the service. The information to the right details the type of service (driver or process) current state of the service (running or stopped) and how the service is set to start (boot, demand or automatic).</p>
<p>There is so much service information in Process Hacker that, to be frank, it can be bewildering even for a generally tech-savvy computer user. I suggest sorting the Service tab by Running/Stopped before delving into it deeply, as the services that are running are usually the most important.</p>
<h2>Networking Details</h2>
<p>Perhaps the clearest advantage Process Hacker has over Windows Task Manager can be found in the <em>Network</em> tab. Windows Task Manager has a Network tab as well, of course, but it only shows overall network utilization.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/processhacker3.png?323f2c" alt="computer processes" width="550" height="420" /></p>
<p>Process Hacker goes far deeper. Instead of showing overall network utilization it provides in-depth information about the network connections your computer currently has opened, the IP addresses involved, and the protocol being used. The tab &#8211; like all tabs &#8211; updates in real-time, and Process Hacker highlights connections that are brand new or recently terminated.</p>
<p>The functionality here is advanced, but can be useful for troubleshooting network problems or searching for a program that you suspect is accessing the Internet without your permission.</p>
<h2>Other Useful Features</h2>
<p>One of my favorite features in Process Hacker is the ability to search for a process by its name. Let&#8217;s say, for example, that for some reason I want to find eveything on my computer related to running Dropbox. I can do this by going to <em>Hacker &#8211;&gt; Find Handles and DLLs</em> and then typing in <em>Dropbox</em>. All the processes related to it will pop up!</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/processhacker4.png?323f2c" alt="monitor your computer" width="538" height="429" /></p>
<p>Process Hacker can also find and terminate processes that are trying to hide on your computer, such as <a href="http://www.makeuseof.com/tag/how-to-get-rid-of-a-trojan-horse-virus-that-wont-go-away/">Trojans or Rootkit software</a>. You can access this utility by clickng on <em>Tools &#8211;&gt; Hidden Processes</em>. Any hidden processes active are highlighted in red, and you can then select them and attempt to terminate them. This isn&#8217;t exactly a security suite, and I don&#8217;t recommend it as your sole means of combating malware, but it can be handy.</p>
<p>Finally, Process Hacker includes graphs like Windows Task Manager. They can be accessed by clicking on <em>View &#8212;&gt; System Information</em>. This is one area where Windows Task Manager is actually better, because the graphs are larger and clearer.</p>
<h2>Conclusion</h2>
<p>Process Hacker is a great program, and far more capable than Windows Task Manager. It can be confusing to use because of the level of detail it provides, so be prepared to deal with a learning curve if you&#8217;re not already well versed on what &#8220;processes&#8221; and &#8220;services&#8221; do. Once you get the hang of things however, you&#8217;ll find that Process Hacker is better than Windows Task Manager in almost every way.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/monitor-computer-process-hacker/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 MORE Free Microsoft Products &amp; Why They Are The Best</title>
		<link>http://www.makeuseof.com/tag/5-free-microsoft-products/</link>
		<comments>http://www.makeuseof.com/tag/5-free-microsoft-products/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 21:30:55 +0000</pubDate>
		<dc:creator>Angelina</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[anti-virus]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[image tools]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[system monitor]]></category>
		<category><![CDATA[windows live]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=33460</guid>
		<description><![CDATA[Although there are plenty of free software floating around on the web, not all freeware are created equal. There is such a large disparity in quality between freeware from different companies that sometimes we must turn towards established, trusted companies, if just to make sure the software comes from a credible source. Although Microsoft isn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/microsoftlogo.jpg" /><img class="align-left" style="border: 0px none;margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/microsoftlogo.jpg" alt="" align="left" /> Although there are plenty of free software floating around on the web, not all freeware are created equal. There is such a large disparity in quality between freeware from different companies that sometimes we must turn towards established, trusted companies, if just to make sure the software comes from a credible source.</p>
<p>Although Microsoft isn&#8217;t a company that people would usually associate with freeware, there are a surprisingly robust selection of free Microsoft products. The following list covers the cream of the crop products that truly stand out among their free <em>and</em> paid counterparts. This is part two to Mahendra&#8217;s part one  on free Microsoft products, which you <a href="http://www.makeuseof.com/tag/top-5-free-microsoft-products-2/">can read here</a>.</p>
<p><span id="more-33460"></span></p>
<h3><strong>1. <a href="http://www.microsoft.com/Security_Essentials/">Microsoft Security Essentials</a></strong></h3>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/mse1.PNG" alt="" /></p>
<p>I work for a technology center that routinely diagnoses and removes viruses from its customers&#8217; computers. While we use a hoard of different antivirus and malware scanners to eradicate viruses, none has been as surprisingly effective as Microsoft Security Essentials. One particular day in our office, Microsoft Security Essentials picked up <em>sixteen </em>entries that neither Panda Activescan nor AVG antivirus had found. In fact, it was so popular in our office that it became the default antivirus that we install on reformatted computers before they go back to their clients.</p>
<h3><strong>2. <a href="http://www.bing.com/maps/?FORM=Z9FD">Bing Maps</a></strong></h3>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bing-Maps1.jpg?323f2c" alt="" /></p>
<p>Bing Maps is Microsoft&#8217;s version of the popular Google Maps. While the latter remains an integral part of many people&#8217;s lives, Bing Maps is an alternative that is, perhaps even more efficient. The first great thing about Bing Maps is that the front page of the website features both a To and From box. I typed in two places of interest (just to test how well Bing Maps was able to pin down their addresses) and surprisingly, Bing Maps loaded both these places immediately, and accurately. On the other hand, when I tried the same search on Google Maps, not only did the search take longer, but the addresses that Google picked were wrong!</p>
<p>Some additional features of Bing Maps that may prove useful are: the option to pick a route by the least amount of traffic, and the ability to send your directions to either an email, a mobile phone, or to your GPS. While I wasn&#8217;t able to test whether I could actually put my directions into a GPS system, seeing as I don&#8217;t own one, just the fact that this option exists makes Bing a viable alternative to Google Maps in my mind.</p>
<h3><strong>3. <a href="http://download.live.com/photogallery">Windows Live Photo Gallery</a></strong></h3>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/wlg1.jpg?323f2c" alt="" /></p>
<p>Windows Live Photo Gallery is a free Microsoft product that can definitely give Picasa a run for its money. Although I prefer Picasa&#8217;s interface and organization a bit more, Windows Live Photo Gallery has the same basic features like cropping, people tagging, and simple editing. WL Photo Gallery&#8217;s exposure and color adjusting features are a bit more comprehensive than that of Picasa, but it lacks Picasa&#8217;s host of filters. As far as plug-ins go, WL Photo Gallery supports much of the same functionality that Picasa does, such as Facebook, youTube, and Flickr upload.</p>
<p>The main reason I love WL Photo Gallery is for its Facebook Upload plug-in. Whereas Picasa&#8217;s Facebook plug-in simply puts your photos and the associated captions in an album, WL Photo Gallery uploads your tags as well, which means that you can kill two birds with one stone! Upon upload, WL Photo Gallery pulls out the names you&#8217;ve tagged your pictures with, and compares them to the names of your friends, and automatically uploads these tags to Facebook.</p>
<p>For those names that WL Photo Gallery can&#8217;t match up, it lets you select the friend that goes with each tag. In the end, if you like having your pictures on your computer tagged, you won&#8217;t have to redo all of your hard work when you have to upload your pictures.</p>
<h3><strong>4. <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx">Process Explorer</a></strong></h3>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/proces.PNG" alt="" /></p>
<p>To put it simply, Process Monitor is a bit like Task Monitor on steroids. If you ever feel the need to know exactly what is running on your computer, down to the last thread, then Process Monitor is your program. You can trace each program down to the individual processes and files that the program is using. You can also monitor your CPU usage, as well as the CPU usage history. Process Monitor tracks every last minute detail about the memory usage and running operations on your computer, so if you ever feel like learning a bit more about how the programs on your computer works, consider trying Process Explorer.</p>
<h3><strong>5. <a href="http://www.getpaint.net/features.html">Paint.NET</a></strong></h3>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Paint.PNG.jpg?323f2c" alt="" /></p>
<p>Although Paint.NET isn&#8217;t <em>technically</em> a Microsoft program, it was originally mentored by Microsoft, and intended to replace Microsoft Paint. Now, Paint.NET is still maintained by some of the alumni, and has flourished into a commendable program that rivals Photoshop and Paint Shop Pro. It was designed with speed in mind, so users tired of Photoshop&#8217;s laggy rendering and slow startup, or looking for a image editor for their netbook, may find Paint.NET the alternative they have been looking for. Like for Photoshop, Paint.NET also has an extensive list of plug-ins available to further add on to its capabilities.</p>
<p>Although many people seem to think that Microsoft only develops paid products, it is quite the contrary. There is a hoard of free Microsoft products for the public that not only bolster Windows&#8217;s features, but also act as viable competitors to many popular programs such as Picasa and Google Maps. Now that we&#8217;ve introduced you to a few of these products, try them out, and let us know how they compare!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/5-free-microsoft-products/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>How to Speed Up Your Computer with Just One Double-Click [Windows]</title>
		<link>http://www.makeuseof.com/tag/how-tospeed-up-your-computer-with-just-one-double-click/</link>
		<comments>http://www.makeuseof.com/tag/how-tospeed-up-your-computer-with-just-one-double-click/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 22:00:12 +0000</pubDate>
		<dc:creator>Guy McDowell</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[speedup]]></category>
		<category><![CDATA[windows hacks]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=29096</guid>
		<description><![CDATA[Now that I have your attention, I can tell you that there are a few things that you have to do first, before you can learn how to speed up your computer with that one double-click. When those things are done, though, it will always be a simple double click to speed up your computer. [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/2927561056_c2be91a51c.jpg" /><img class="align-left" style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/2927561056_c2be91a51c.jpg?323f2c" alt="" vspace="5" align="left" /> Now that I have your attention, I can tell you that there are a few things that you have to do first, before you can learn how to speed up your computer with that one double-click. When those things are done, though, it will always be a simple double click to speed up your computer. How can this be possible?</p>
<p>It&#8217;s simple logic really. Have you ever seen a stock car or drag race of seemingly normal cars? What they do is get rid of useless weight. They don&#8217;t need a passenger and back seat &#8211; gone! They don&#8217;t need carpet and fancy electronics &#8211; gone! They don&#8217;t need the spare tire in the trunk and all the excess trim &#8211; gone! They&#8217;ve stripped that car down to the essentials to do one thing really fast and really well. That&#8217;s what we&#8217;re going to do. Only, when we&#8217;re done, we&#8217;ll be able to put all the fancy bits back on with &#8211; you guessed it &#8211; just one double-click!</p>
<h2>Identify the Dead Weight</h2>
<p>First things first. Download and install a program that allows you to view all the processes currently running on your windows computer. I&#8217;m a big fan of <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx">Sysinternals Process Explorer</a>. Once you&#8217;ve done that, open it up. You&#8217;re likely to see something like this:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-29097" title="step_1" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/step_1.png?323f2c" alt="how to speed up your computer" width="432" height="455" /></p>
<p>Look at the <strong>Working Set</strong> and <strong>Peak Working Set</strong> columns. That shows how many kilobytes of your RAM are being used by the program right now, and what the peak amount used at one time was. As you can see, my Firefox is using roughly 245 MB of RAM. That&#8217;s about one-quarter of the RAM in my computer.</p>
<p>As I look down further, I see that RoxMediaDB12, iTunesHelper and SnagIt32 are taking up another approximately 43 MB of RAM. Let&#8217;s say that I want to use a program that is a real memory hog, like my DivXConnected. It has to compete with all of these other programs that I won&#8217;t be using, while I&#8217;m using DivXConnected. That&#8217;s the program that works with my D-Link Media Device I was raving about lately.<br />
<span id="more-29096"></span></p>
<p>Now order your running services and applications by process, by clicking on the Process column header until you get everything shown to you in a tree, like this:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-29100" title="step_2" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/step_22.png?323f2c" alt="how to speed up your computer" width="488" height="642" /></p>
<p>What this shows us is which excess things are Processes and which are Services. This is important, because what we do next requires us to know the difference. Those things that are under the Services branch are services. Typically the processes will be shown further down.</p>
<p>Let&#8217;s write down all the proper names for the services and processes as we&#8217;ll need those later. To find the proper names, right-click on a service and then select <strong>Properties</strong>. Once you are in the Properties window, click on the tab <strong>Services</strong>. This will give you the correct name of the service you wish to stop. I&#8217;ve used the CinemaNowSvc.exe as an example.</p>
<p style="text-align: center;"><img class="aligncenter" title="step_3" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/step_3.png?323f2c" alt="how to speed up your computer" width="437" height="497" /></p>
<p>To find the Image Name for a process, it should be what you see in the <strong>Description Column</strong>. For example, the iTunes Helper Process has the description iTunesHelper. If you aren&#8217;t sure what the Image Name is, you can right-click on the process, open the Properties window and find it on the <strong>Image File</strong> tab.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-29102" title="step_4" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/step_4.png?323f2c" alt="speed up your computer" width="437" height="497" /></p>
<p>Do that for all the services and processes that you know aren&#8217;t necessary for your computer, or the single program you want to go faster, to run. That may take some research, but it&#8217;s worth it.</p>
<p>I can do one of two things here. I can shut down all the high-memory usage applications and services that run in the background one by one OR I can write a batch file to do all of that. Batch files are the old-school way to do lots of really cool stuff. Once you learn how to craft them, there are an infinite number of cool, and powerful, things you can do.</p>
<h2>Trim the Dead Weight</h2>
<p>Let&#8217;s use Notepad to write this batch file. Open it up and type:</p>
<blockquote><p>@ECHO OFF<br />
echo *** Stopping Services ***</p>
<p>NET STOP &#8220;Name of the Service You Want to Stop&#8221;</p>
<p>echo *** Services Stopped ***</p></blockquote>
<p>Now I know the proper name I&#8217;ll need to use is <strong>CinemaNow Service</strong>. So the command that I will write looks like:</p>
<blockquote><p>NET STOP &#8220;CinemaNow Service&#8221;</p></blockquote>
<p>You&#8217;ll need to write this command for every service that you wish to stop. This could be a dozen lines or so. The line that reads echo *** Services Stopped *** just lets us know when all the services are stopped. Yep, I&#8217;m Captain Obvious.</p>
<p>To stop the process, you&#8217;ll type a block like:</p>
<blockquote><p>echo *** Stopping Processes ***</p>
<p>TSKILL  &#8220;iTunesHelper&#8221;</p>
<p>echo *** Processes Stopped ***</p>
<p>PAUSE</p></blockquote>
<p>TSKILL kills the task of course.  You don&#8217;t need to use the Image Name, you can also use the Process ID as it is shown in Process Manager. As usual, the echo lines let us know when the stopping of the processes begins and ends. The PAUSE command results in a line asking us to hit any key to continue. It&#8217;s just a more concrete way of letting you know the batch file is done.</p>
<p>To save this as a batch file that you can run by just double-clicking on it, we need to do a few things. Click on <strong>File &gt; Save As</strong> in Notepad. Then when the <strong>Save As&#8230;</strong> window opens, name the file whatever you want. I chose StopServicesProcesses.bat. You need the <em>.bat</em> on the end. Now change the <strong>Save as type</strong>: box to <em>All Files</em>. Click <strong>Save</strong>.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-29103" title="step_5" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/step_5.png?323f2c" alt="speed up your computer" width="563" height="455" /></p>
<p>Now you have a batch file! Double-click on it and enjoy your speed! You should see a command window open that will look something like this:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-29105" title="step_6" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/step_61.png?323f2c" alt="speed up your computer" width="427" height="176" />Feel the speed!</p>
<p>Oh, I did say something about restarting those services and process when you are done using your one intensive program, didn&#8217;t I? Well, that&#8217;s a story for another time.</p>
<p>Got better tips on how to speed up a computer? Let us know in comments!</p>
<p><small>Image credit: <a rel="nofollow" href="http://www.flickr.com/photos/davichi/2927561056/">Davichi</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-tospeed-up-your-computer-with-just-one-double-click/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Easily Kill Hung Processes on Windows with Super F4</title>
		<link>http://www.makeuseof.com/tag/easily-kill-running-or-hung-processes-with-super-f4-windows/</link>
		<comments>http://www.makeuseof.com/tag/easily-kill-running-or-hung-processes-with-super-f4-windows/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 12:01:30 +0000</pubDate>
		<dc:creator>Karl L. Gechlik</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[task manager]]></category>
		<category><![CDATA[unresponsive computer]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=21917</guid>
		<description><![CDATA[I have been using the Windows hot key combination to kill a running program for a really long time now. For those of you who do not know it is Alt-F4. This will politely request that the open application on your screen is to close. If you have unsaved work, the program might ask you [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/07/admin.png?323f2c" border="0" alt="admin" vspace="5" align="left" /> I have been using the Windows hot key combination to kill a running program for a really long time now. For those of you who do not know it is <strong>Alt-F4</strong>. This will politely request that the open application on your screen is to close. If you have unsaved work, the program might ask you to save it or if the program was <em>really</em> hung it might not do anything at all.</p>
<p>But with this little <a href="http://code.google.com/p/superf4/">116KB download from GoogleCode</a> you can force an application to close with <strong>Control-Alt-F4</strong>. This will effectively kill the application without any other intervention. The program also offers the option to press the Windows key + F4 and then click on the window you want to kill. These two options make this a handy dandy item for my toolkit.</p>
<p>I downloaded the application and installed it. You have options within the installer to check for updates as well as making Super F4 start up with Windows. Once it is running you will see this item in your system tray:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/07/Superf41.png?323f2c" border="0" alt="Superf41" /></p>
<p><span id="more-21917"></span><br />
The icon for Super F4 is the one all the way on the left. If you right-click on it you will see your basic options. You can disable it, hide the tray icon and set the auto-start functionality as well as exit the application.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/07/superf42.png?323f2c" border="0" alt="superf42" /></p>
<p>Normally when killing <a href="http://www.makeuseof.com/tag/transfer-files-by-ftp-with-filezilla/">FileZilla</a> I would get a dialogue box that looked like this:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/07/SUPERF43.png?323f2c" border="0" alt="SUPERF43" /></p>
<p>That means I have to actually click on the box and answer the question. If I want to be swift about it I just need to hit my Control-Alt-F4 and blammo FileZilla is closed with no pop-up. That means I can just continue on to do what I have to do.</p>
<p>I simulated a failure in Excel and hit the Control + Alt + F4 and just like that it was closed! Sweet! Next up I wanted to give the other option a shot. I opened up everything and I wanted to try the Windows Key + F4 to choose the program I wanted to close. The mouse cursor turns into a Skull and Cross Bones. You simply click on the application you want to kill and that&#8217;s it.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/07/superf44.png?323f2c" border="0" alt="superf44" /></p>
<p>This is a great program for power users but remember if you have not saved your work in the application and you close it with Super F4 you will lose those changes you made since you last saved.</p>
<p>Do you have another way of killing hung processes? Share them with us in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/easily-kill-running-or-hung-processes-with-super-f4-windows/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>3 Tools To Manage Windows Processes Better</title>
		<link>http://www.makeuseof.com/tag/3-tools-to-manage-processes-better-windows/</link>
		<comments>http://www.makeuseof.com/tag/3-tools-to-manage-processes-better-windows/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 17:01:58 +0000</pubDate>
		<dc:creator>Varun Kashyap</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[task manager]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=13602</guid>
		<description><![CDATA[Process Management is at the heart of any modern operating system. While most of the modern operating systems do a really good job of doing so, sometimes you may want to take the matter into your own hands or you may just want to know what is going on in your own system. Windows Task [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/tsakmgr.png?323f2c" border="0" alt="" width="167" height="167" align="left" />Process Management is at the heart of any modern operating system. While most of the modern operating systems do a really good job of doing so, sometimes you may want to take the matter into your own hands or you may just want to know what is going on in your own system.</p>
<p>Windows Task Manager is the obvious solution that comes to mind which allows you to achieve this. However there are some software that provide additional functionality that is not offered by Windows Task Manager. </p>
<p>Let&#8217;s have a look at some of them :</p>
<h2><a href="http://sourceforge.net/projects/processpriority/" target="_blank"><strong>Process Manager for Windows</strong></a></h2>
<p>PMW lets you access some of the Windows Task Manager functionality using the right click menu or the application menu (accessed via Alt+Space).</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/pwmmenu.png?323f2c" alt="process manager for windows" /></p>
<p>PMW has options for</p>
<ul>
<li>setting priorities of the tasks.</li>
<li>changing opacity of windows.</li>
<li>ability to minimize any application to the tray.</li>
<li>Hide an application or all other applications.</li>
<li>Kill the application without having to run the task manager.</li>
</ul>
<p>If these are too much for you, you can choose to hide some of these options via the Process Manager Preferences.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/pwmpref.png?323f2c" alt="" /></p>
<h2><a href="http://www.prnwatch.com/prio.html"><strong>Prio</strong></a></h2>
<p>If you are an avid user, you must have noticed the set priority setting inside Windows Task Manager when you right-click on any process. What this setting does is that it allows you to change the priority of a particular process so that it gets more CPU time and would thus complete faster or be more responsive (you should  be careful while changing priorities, as doing this might cause instability).</p>
<p>One problem with changing the priority is that the next time you run the same application it starts executing with normal priority and forgets your &#8220;priority settings&#8221;. This is where Prio comes in.</p>
<p>Prio allows you to permanently set priorities of certain tasks according to your requirements. Just set the priority of any task according to your requirement, make sure that &#8220;Save Priority&#8221; has a tick next to it, and you are done.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/prio_menu.png?323f2c" alt="" /></p>
<p>In addition to this you can choose to install the Task Manager GUI and Prio Network Driver. These will give you additional information about services, processes and network connections within the Task Manager Window.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/prio_ser.png?323f2c" alt="" /></p>
<h2><a href="http://www.extensoft.com/?p=free_task_manager"><strong>Extended Task Manager</strong></a></h2>
<p>Extended Task Manager is like the Windows Task Manager on steroids. It offers a host of information about the current state of the system that the standard Windows task manager doesn&#8217;t provide you with.</p>
<p>Here are a few features and additional bits of information that Extended Task Manager offers:</p>
<ul>
<li>Displays disk input/output activity with information about related applications.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/extend5_5.png?323f2c" alt="extended task manager" /></p>
<ul>
<li>Displays network port activity with IP addresses of external computers.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/extend1.png?323f2c" alt="" /></p>
<ul>
<li>Displays information about applications that utilized most of the CPU or memory at any time presented on the charts.</li>
<li>Displays all files locked by a select process.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/filelock.png?323f2c" alt="filelock" /></p>
<ul>
<li>Finds all processes locking a specified file.</li>
<li>Includes &#8220;Summary&#8221; tab for quickly assessing the overall state of the Windows system.</li>
<li>Allows freezing individual Windows processes.</li>
<li>Offers various visual and functional improvements over the standard Windows Task Manager.</li>
</ul>
<p>Do you know of some other tools that allows you to view such kinds of information about your computer?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/3-tools-to-manage-processes-better-windows/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>The Mark Pack &#8211; The Essentials On My Computer &#8211; Part Two</title>
		<link>http://www.makeuseof.com/tag/the-mark-pack-the-essentials-on-my-computer-part-two/</link>
		<comments>http://www.makeuseof.com/tag/the-mark-pack-the-essentials-on-my-computer-part-two/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 21:01:11 +0000</pubDate>
		<dc:creator>Mark O'Neill</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[converter]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[file converter]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[ripping]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[windows processes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=9872</guid>
		<description><![CDATA[Yesterday I gave you a sneak peek into my Mark Pack which is my collection of indispensible software apps that I always have installed on the computer.    But it was too much for one post so here is Part Two of &#8220;what Mark always has installed and what he recommends you install too&#8221; So, tally [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday <a href="http://www.makeuseof.com/tag/the-mark-pack-the-essentials-on-my-computer-part-one/" target="_blank">I gave you a sneak peek</a> into my Mark Pack which is my collection of indispensible software apps that I always have installed on the computer.    But it was too much for one post so here is Part Two of &#8220;what Mark always has installed and what he recommends you install too&#8221;</p>
<p>So, tally ho!   And on with the show!</p>
<h2>7.  <a href="http://www.truecrypt.org/">TrueCrypt</a></h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/truecrypt.png?323f2c" alt="" /></p>
<p>The king of computer encryption programs.   Extremely easy to set up and once you have your encrypted folder(s) set up on your computer, it is <strong>impossible</strong> for anyone to crack it open (unless you make your password blatantly obvious like P-A-S-S-W-O-R-D for example, in which case you have no business using an encryption program in the first place).</p>
<p>Everyone should have an encryption program on their computer for computer passwords, financial records, private correspondence and any other sensitive material that shouldn&#8217;t be readily accessible to prying eyes.</p>
<p>My first ever post for MakeUseOf <a href="http://www.makeuseof.com/tag/encrypt-sensitive-data-with-truecrypt/" target="_blank">was about TrueCrypt</a> and you can also <a href="http://www.makeuseof.com/tag/encrypt-your-usb-stick-with-truecrypt-60/" target="_blank">encrypt your USB stick</a> with the app.   So Truecrypt is very versatile and flexible.    Sometimes it <strong>does</strong> pay to be paranoid and careful.</p>
<h2>8.  <a href="http://ccollomb.free.fr/unlocker/" target="_blank">Unlocker</a></h2>
<p>Have you ever tried to delete a file only to get this error message?</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/filedeletionerrormessage.png?323f2c" alt="" /></p>
<p>I get this message a lot and it irritates the <strong>hell</strong> out of me.   So this is where Unlocker comes in to save the day (and my sanity).</p>
<p><img style="margin-left:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/unlocker2.png?323f2c" alt="" vspace="5" align="right" />Whenever you can&#8217;t delete a file, just right-click on it and choose &#8220;Unlocker&#8221; (the app integrates itself into the Explorer right-click menu).   Unlocker will then kill all the Windows processes that are holding that app and stopping you from deleting it.    You can then go ahead and nuke the file.</p>
<p>If for any reason it can&#8217;t kill the dastardly processes which are holding you back, Unlocker will blast away the file for you when you next boot up the computer.</p>
<p>Here&#8217;s my <a href="http://www.makeuseof.com/tag/untangle-your-computer-with-unlocker-2/" target="_blank">original MUO story</a> on Unlocker.</p>
<h2>9.  <a href="http://www.hyperionics.com/">Filebox eXtender</a></h2>
<p>There are two parts to this app that are insanely useful.  The first is the ability to add shortcuts to certain Windows Explorer folders which you access on a regular basis :</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/filebox1.png?323f2c" alt="" /></p>
<p>This saves a lot of time if one of your most accessed folders in Windows Explorer is a sub-folder tucked away in lots of other sub-folders.   Instead of tediously <em>click-click-clicking</em> with a mouse to get to that folder several times a day, you can use Filebox eXtender to create a one-click shortcut to that folder instead.</p>
<p>But the best part of Filebox eXtender are the &#8220;push-pins&#8221; which you can use to keep an app &#8220;on top&#8221; of all other windows.   So say I want to keep Skype on top of all other Windows.   I just need to use the push-pin to &#8220;pin&#8221; Skype to the top of all the other windows, as if I was pinning it to a notice board :</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/skypepushpin.png?323f2c" alt="" /></p>
<p>Here&#8217;s the <a href="http://www.makeuseof.com/tag/access-frequently-used-folders-in-1-click/" target="_blank">original MUO story</a>.</p>
<h2>10.  <a href="http://cdexos.sourceforge.net/" target="_blank">CDex</a> &amp; <a href="http://www.softpointer.com/AudioShell.htm" target="_blank">Audioshell</a></h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/cdexpink.png?323f2c" alt="" /></p>
<p>Whenever I buy a CD, I immediately rip a MP3 copy for my iPod using CDex.   CDex is most definately the best freeware CD ripping tool available.   After putting the CD into your hard drive, CDex immediately detects the disk and after hitting a button, the disk is ripped to MP3 format in the space of a couple of minutes.   Most of the time, it can even auto-name your files for you too.</p>
<p>When the files have not been auto-named by CD-ex, I then use the free Audioshell to edit the ID3 tags and add album art (see my original MUO story <a href="http://www.makeuseof.com/tag/how-to-edit-your-music-id3-tags-with-audioshell/" target="_blank">here</a>).</p>
<h2>11. <a href="http://www.cocoonsoftware.com/" target="_blank">Quick Media Converter</a></h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/quickmediaconverter.png?323f2c" alt="" /></p>
<p>When it comes to file conversion, Quick Media Converter is an absolute gem and it seems there is nothing it can&#8217;t do.   I have yet to find a file it won&#8217;t convert.    It seems totally unbeatable.</p>
<p>It converts audio files and video files from one format to another.   It converts files to iPod format and iPod files back to normal format.    It converts files to Flash and back again.   DVD&#8217;s from PAL to NTSC and vice versa.    Files to iPhone format and vice versa.   Files to Playstation and Xbox format even.</p>
<p>There is also a webcam video recorder and a Camstudio screencast recorder but I haven&#8217;t ever used those so I can&#8217;t give an opinion on how good they are.   But the file conversion tools are just far and away the best I&#8217;ve ever encountered.</p>
<p>So that&#8217;s the Mark Pack &#8211; 11 apps that appear on my computer <strong>ALL</strong> the time.   But as I said in my last post, due to me testing and reviewing apps all the time, I might find a new favourite app tomorrow and number 12 might enter the Mark Pack any day.    But when it does, I&#8217;ll be sure to let you know!</p>
<p>So what&#8217;s in your Pack?   Please do let me know!    And let me know what you think of my choices!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/the-mark-pack-the-essentials-on-my-computer-part-two/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/42 queries in 0.061 seconds using apc
Object Caching 772/866 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 22:22:00 -->
