<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Help Desk Geek - Help Desk Tips For IT Pros</title> <link>http://helpdeskgeek.com</link> <description>Help Desk Geek is a blog for Discussions about help desk tips and how-to computer tips</description> <lastBuildDate>Tue, 07 Feb 2012 11:23:11 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ITHelpDeskGeek" /><feedburner:info uri="ithelpdeskgeek" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>ITHelpDeskGeek</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item><title>Automatically Edit MP3 Metadata From The Terminal With Beets</title><link>http://feedproxy.google.com/~r/ITHelpDeskGeek/~3/T8uAKhN71TU/</link> <comments>http://helpdeskgeek.com/how-to/automatically-edit-mp3-metadata-from-the-terminal-with-beets/#comments</comments> <pubDate>Tue, 07 Feb 2012 11:23:11 +0000</pubDate> <dc:creator>Eric Fleming</dc:creator> <category><![CDATA[How-To]]></category> <category><![CDATA[ID3]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[tagging]]></category><guid isPermaLink="false">http://helpdeskgeek.com/?p=25173</guid> <description><![CDATA[If you have a music collection that has been obtained through a variety of methods (some purchased from online stores, others coming from CDs you have ripped yourself), then it&#8217;s likely that the ID3 tags in your music aren&#8217;t entirely consistent.  Maybe, for instance, some of your music is by a group called &#8220;The Beach [...]]]></description> <content:encoded><![CDATA[<p>If you have a music collection that has been obtained through a variety of methods (some purchased from online stores, others coming from CDs you have ripped yourself), then it&#8217;s likely that the ID3 tags in your music aren&#8217;t entirely consistent.  Maybe, for instance, some of your music is by a group called &#8220;The Beach Boys&#8221; while still other music is from two other groups: &#8220;Beach Boys&#8221; and &#8220;Beach Boys, The&#8221; which will cause your Beach Boys collection to show up in three separate places in a music player like iTunes.</p><p>To fix this problem, many music players include an option for the user to go in and fix the ID3 data.  This is often a tedious process, however, and must often be done album by album, if not track by track.</p><p>A new program called Beets is able to not only correct those tags, but manage your library as well.  It&#8217;s a cross-platform application that is used from the Terminal (hence being called &#8220;the music geek&#8217;s media organizer&#8221; by its developer), and will be demonstrated in Linux.</p><p>To install Beets, first open a Terminal.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Open_Terminal6.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Open_Terminal_thumb9.jpg" alt="01Open_Terminal" width="308" height="286" border="0" /></a></p><p>Next, for Ubuntu users, you&#8217;ll need a few Python libraries, so type <strong>sudo apt-get install python-dev python-setuptools python-pip</strong> into your Terminal.  Depending on what other programs you have installed, they may already be on your system.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02Install_Python_Libraries.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02Install_Python_Libraries_thumb.jpg" alt="02Install_Python_Libraries" width="568" height="48" border="0" /></a></p><p>Once installed, use &#8216;pip&#8217; (a tool used to install Python packages from the Python Package Index), to install Beets.  To do this, enter <strong>sudo pip install beets</strong> into the Terminal.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Install_Beets.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Install_Beets_thumb.jpg" alt="03Install_Beets" width="231" height="42" border="0" /></a></p><p>PIP will now install Beets, along with any other required Python libraries, such as Mutagen (for tagging).</p><p>Now, open up the Beets configuration file; we need to edit where Beets will place your modified music, as well as where to store your music library file (a file which won&#8217;t exist until Beets creates it).  Type <strong>gedit /home/username/.beetconfig</strong> (replacing your username with &#8216;username&#8217; in the command) to create the configuration file.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Create_Config_File.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Create_Config_File_thumb.jpg" alt="04Create_Config_File" width="331" height="43" border="0" /></a></p><p>Next, add the following lines to the file:</p><p><strong>[beets]<br
/> directory: /path/to/music<br
/> library: /path/to/musiclibrary.blb</strong></p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05Configure_Paths.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05Configure_Paths_thumb.jpg" alt="05Configure_Paths" width="465" height="297" border="0" /></a></p><p>Once you&#8217;ve done this, save the configuration file; you&#8217;re now ready to begin using Beets.</p><p>To do so, simply type <strong>beet import /path/to/music</strong> into your Terminal.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Import_Music.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Import_Music_thumb.jpg" alt="06Import_Music" width="310" height="48" border="0" /></a></p><p>In this case, the path is the path to a folder already containing music, not the path you used in the configuration file.  In the above example, there is a folder with music by Phish in it; this is the folder we want Beets to import.  As the music is imported and corrected, you&#8217;ll see certain tags being adjusted, thanks to MusicBrainz.  For our test, we intentionally placed a handful of errors in the ID3 tags.  As you can see, the errors were caught and fixed.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07Tags_Being_Adjusted.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07Tags_Being_Adjusted_thumb.jpg" alt="07Tags_Being_Adjusted" width="466" height="173" border="0" /></a></p><p>As you&#8217;ll see, this is not a fast process, as Beets first needs to scan your music, then check with the online MusicBrainz database to compare your tags with the entry located there, and then fix your tags if necessary, before finally moving your music into your new collection folder.  It&#8217;s probably a good idea to check with just a single album to see how long it takes for you, before throwing your entire collection at it.</p><p>One other thing to keep in mind is that however much space your music takes up before you begin, it will use twice as much when you&#8217;re finished, as Beets doesn&#8217;t move your music by default, but copies it to the new location.  To change this behavior, add the &#8220;<strong>-C</strong>&#8221; modifier to the command, so the above command would be this:</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Only_Change_Tags.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Only_Change_Tags_thumb.jpg" alt="08Only_Change_Tags" width="333" height="42" border="0" /></a></p><p>With this command, your music tags will be changed, but your music will not be copied anywhere; instead, your current directory will be used.</p><p>You can also choose to simply import your music, without changing tags via MusicBrainz.  For this feature, add the &#8220;<strong>-A</strong>&#8221; option to the command.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Import_Without_Autotagging.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Import_Without_Autotagging_thumb.jpg" alt="09Import_Without_Autotagging" width="336" height="43" border="0" /></a></p><p>For other configuration options (options that can be placed in your default configuration file as well as those that can be used when actually running Beets, which will override the default configuration if different), can be found at <a
href="http://beets.readthedocs.org/en/1.0b12/reference/config.html" target="_blank">this link</a>.</p><p>At its most basic, that&#8217;s what Beets does.  If you have a large library, be prepared to wait awhile as Beets does its thing.  In the end, however, you should not only have a more organized music library, but a more consistently tagged one as well.</p><p>Beets also comes with a wide variety of plugins to allow it to embed album art, use ReplayGain settings and more, as well as community contributed plugins, such as grabbing lyrics for your music.  All those plugins can be found <a
href="http://readthedocs.org/docs/beets/en/1.0b12/plugins/index.html" target="_blank">here</a>.</p><p>Thanks for reading, check out <a
href="http://helpdeskgeek.com">Help Desk Geek - Help Desk Tips For IT Pros</a> for more WordPress news!</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=T8uAKhN71TU:CWoT4fDju_Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=T8uAKhN71TU:CWoT4fDju_Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=T8uAKhN71TU:CWoT4fDju_Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=T8uAKhN71TU:CWoT4fDju_Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=T8uAKhN71TU:CWoT4fDju_Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=T8uAKhN71TU:CWoT4fDju_Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=T8uAKhN71TU:CWoT4fDju_Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=T8uAKhN71TU:CWoT4fDju_Y:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=T8uAKhN71TU:CWoT4fDju_Y:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=cGdyc7Q-1BI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ITHelpDeskGeek/~4/T8uAKhN71TU" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://helpdeskgeek.com/how-to/automatically-edit-mp3-metadata-from-the-terminal-with-beets/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://helpdeskgeek.com/how-to/automatically-edit-mp3-metadata-from-the-terminal-with-beets/</feedburner:origLink></item> <item><title>Configure Windows Update’s Automatic Update Checking</title><link>http://feedproxy.google.com/~r/ITHelpDeskGeek/~3/8ZpnzpNWaXc/</link> <comments>http://helpdeskgeek.com/how-to/configure-windows-updates-automatic-update-checking/#comments</comments> <pubDate>Mon, 06 Feb 2012 11:18:52 +0000</pubDate> <dc:creator>Eric Fleming</dc:creator> <category><![CDATA[How-To]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[windows update]]></category><guid isPermaLink="false">http://helpdeskgeek.com/?p=25154</guid> <description><![CDATA[Every operating system will tell you that your computer will run best, and will be safest, if you keep it up-to-date.  This is a no brainer, really, and so there are dozens of good reasons to have your system&#8217;s automatic update checker turned on, and to have those updates installed automatically as well. On the [...]]]></description> <content:encoded><![CDATA[<p>Every operating system will tell you that your computer will run best, and will be safest, if you keep it up-to-date.  This is a no brainer, really, and so there are dozens of good reasons to have your system&#8217;s automatic update checker turned on, and to have those updates installed automatically as well.</p><p>On the other hand, there are too many stories of an update that fixes the bugs it was intended for, but also causes problems for certain users.  If that update was installed automatically, then the user would be trading one problem for another, and who&#8217;s to say that the second problem &#8211; the one caused by the update &#8211; isn&#8217;t actually worse?  So, there are good reasons to have automatic updates turned off as well.</p><p>Thankfully, this isn&#8217;t a setting that&#8217;s too difficult to configure in Windows.  The first step to configuring your automatic update behavior is to open the Start menu.  Do this by hitting the Windows key on your keyboard, or clicking the Start orb.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Open_Start_Menu.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Open_Start_Menu_thumb.jpg" alt="01Open_Start_Menu" width="66" height="81" border="0" /></a></p><p>Now click All Programs to view all your installed programs, and not just those pinned to the start menu.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02Click_All_Programs.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02Click_All_Programs_thumb.jpg" alt="02Click_All_Programs" width="267" height="106" border="0" /></a></p><p>Finally, to configure your automatic update settings, click Windows Update (it should be fairly near the top of the list, before all the folders.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Open_Windows_Update.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Open_Windows_Update_thumb.jpg" alt="03Open_Windows_Update" width="273" height="78" border="0" /></a></p><p>Once Windows update has launched, click Change Settings in the lefthand sidebar.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Change_Settings.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Change_Settings_thumb.jpg" alt="04Change_Settings" width="198" height="195" border="0" /></a></p><p>The recommended behavior is to download and install updates automatically.  If you do this, your computer will check periodically (every day or on a particular day of the week, at a time of day you set), and will install them once downloaded.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05Install_Updates_Automatically.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05Install_Updates_Automatically_thumb.jpg" alt="05Install_Updates_Automatically" width="514" height="111" border="0" /></a></p><p>There are three other options available. You can also download all updates, but only install the ones you select.  The next step toward doing nothing is to check for updates, but only download and install the ones the user wants. Or, finally, you can never check for updates, which will turn off Windows Update entirely.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Other_Download_and_Install_Options.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Other_Download_and_Install_Options_thumb.jpg" alt="06Other_Download_and_Install_Options" width="515" height="130" border="0" /></a></p><p>Now, assuming you have Windows Update configured to at least do some checking, downloading and installing, there are a couple other options.  First is how Windows Update treats recommended updates.  There are two types of updates: important and recommended.  If you have this setting checked, your recommended updates will be treated exactly the same as important ones, so if you have important updates scheduled to be installed automatically, this will be true of recommended ones as well.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07How_To_Treat_Recommended_Updates.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07How_To_Treat_Recommended_Updates_thumb.jpg" alt="07How_To_Treat_Recommended_Updates" width="466" height="56" border="0" /></a></p><p>You also have the option to allow any user to update Windows, or with this option unchecked, can keep the privilege for only the administrator.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Control_Who_Updates_Software.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Control_Who_Updates_Software_thumb.jpg" alt="08Control_Who_Updates_Software" width="337" height="57" border="0" /></a></p><p>The first of the last two options allows you to check for extra Microsoft software (such as Microsoft Security Essentials or Silverlight), and allow those to be updated as well.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Check_For_Microsoft_Products.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Check_For_Microsoft_Products_thumb.jpg" alt="09Check_For_Microsoft_Products" width="572" height="67" border="0" /></a></p><p>Finally, in conjunction with the above option, you can choose to receive detailed notice when there is new Microsoft software available.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/10Show_New_Microsoft_Software.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/10Show_New_Microsoft_Software_thumb.jpg" alt="10Show_New_Microsoft_Software" width="464" height="58" border="0" /></a></p><p>This will include not just updates, but also software not currently installed on your computer.</p><p>Once finished, click the OK button at the bottom of the window and you&#8217;re all set.  Windows Update will begin using your new settings immediately; no restart necessary.</p><p>Thanks for reading, check out <a
href="http://helpdeskgeek.com">Help Desk Geek - Help Desk Tips For IT Pros</a> for more WordPress news!</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=8ZpnzpNWaXc:VKhHw1HISLs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=8ZpnzpNWaXc:VKhHw1HISLs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=8ZpnzpNWaXc:VKhHw1HISLs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=8ZpnzpNWaXc:VKhHw1HISLs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=8ZpnzpNWaXc:VKhHw1HISLs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=8ZpnzpNWaXc:VKhHw1HISLs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=8ZpnzpNWaXc:VKhHw1HISLs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=8ZpnzpNWaXc:VKhHw1HISLs:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=8ZpnzpNWaXc:VKhHw1HISLs:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=cGdyc7Q-1BI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ITHelpDeskGeek/~4/8ZpnzpNWaXc" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://helpdeskgeek.com/how-to/configure-windows-updates-automatic-update-checking/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://helpdeskgeek.com/how-to/configure-windows-updates-automatic-update-checking/</feedburner:origLink></item> <item><title>Download/Convert YouTube Videos In One Step With Downverter</title><link>http://feedproxy.google.com/~r/ITHelpDeskGeek/~3/IzSxVRnvL1A/</link> <comments>http://helpdeskgeek.com/how-to/downloadconvert-youtube-videos-in-one-step-with-downverter/#comments</comments> <pubDate>Sun, 05 Feb 2012 11:14:36 +0000</pubDate> <dc:creator>Eric Fleming</dc:creator> <category><![CDATA[How-To]]></category> <category><![CDATA[converter]]></category> <category><![CDATA[downloader]]></category> <category><![CDATA[youtube]]></category><guid isPermaLink="false">http://helpdeskgeek.com/?p=25133</guid> <description><![CDATA[A lot of us really enjoy wasting spending time watching videos on YouTube.  To be honest, it&#8217;s a bit too easy to get distracted and not notice the time until hours have passed, but that&#8217;s another story.  Of course, the &#8220;problem&#8221; with YouTube is that sometimes you just want to watch a video while you&#8217;re [...]]]></description> <content:encoded><![CDATA[<p>A lot of us really enjoy wasting spending time watching videos on YouTube.  To be honest, it&#8217;s a bit too easy to get distracted and not notice the time until hours have passed, but that&#8217;s another story.  Of course, the &#8220;problem&#8221; with YouTube is that sometimes you just want to watch a video while you&#8217;re not online, or be able to put a video (or the music in a video) onto a portable device, but YouTube just doesn&#8217;t have that feature.</p><p>We&#8217;ve already shown how to <a
href="http://helpdeskgeek.com/linux-tips/use-ffmpeg-to-easily-extract-audio-from-flv-files/" target="_blank">extract audio from a FLV file</a> (using FFmpeg), and that&#8217;s helpful since many YouTube videos are in FLV format.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Extract_Using_FFmpeg.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Extract_Using_FFmpeg_thumb.jpg" alt="01Extract_Using_FFmpeg" width="447" height="41" border="0" /></a></p><p>However, it would also be nice to be able to use a single program to both download and convert your videos.  Happily, a program called Downverter exists, and as a bonus it runs on Windows, Linux and Mac OS X.  Here&#8217;s how to install and use this helpful program.</p><p>First, head over to the <a
href="http://www.downverter.com" target="_blank">Downverter website</a>.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02Downverter_Website.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02Downverter_Website_thumb.jpg" alt="02Downverter_Website" width="580" height="376" border="0" /></a></p><p>Now, scroll down a bit until you reach the download buttons.  As mentioned, there are Mac and Windows versions, as well as both 32-bit and 64-bit installers for Ubuntu.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Download.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Download_thumb.jpg" alt="03Download" width="580" height="194" border="0" /></a></p><p><em>Note: For non-Ubuntu Linux users, DEB installers can be converted to RPM (for Red Hat, Fedora and other distributions), TGZ packages (for Slackware), and other formats, using alien, which we discussed <a
href="http://helpdeskgeek.com/how-to/convert-rpm-installers-to-deb-in-ubuntu-with-alien/" target="_blank">here</a>.</em></p><p>Once you&#8217;ve grabbed the download for your operating system, go ahead and install it.  Here&#8217;s the Ubuntu installer.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Install_With_GDebi.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Install_With_GDebi_thumb.jpg" alt="04Install_With_GDebi" width="562" height="436" border="0" /></a></p><p>Once installed, go ahead and start Downverter.  When it opens, you&#8217;ll see its single-window interface.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05Main_Interface.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05Main_Interface_thumb.jpg" alt="05Main_Interface" width="580" height="480" border="0" /></a></p><p>Once you&#8217;ve found a YouTube video you want to save and/or convert, paste its URL into the entry bar.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Paste_URL.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Paste_URL_thumb.jpg" alt="06Paste_URL" width="580" height="67" border="0" /></a></p><p>After this, simply set the configuration options the way you want.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07Choose_Settings.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07Choose_Settings_thumb.jpg" alt="07Choose_Settings" width="580" height="219" border="0" /></a></p><p>As you can see, one of Downverter&#8217;s strong points is a nice range of options for device presets.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Conversion_Presets.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Conversion_Presets_thumb.jpg" alt="08Conversion_Presets" width="453" height="239" border="0" /></a></p><p>You can choose to convert the video for a format suitable for a particular device, such as iPod or PSP, as well as to a format, such as WMV or AVI.  You also have the option to simply the audio to MP3 format, or simply download without conversion.</p><p>Once all your settings are to your liking, click the large green <strong>Download &amp; Convert</strong> button to begin the process.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Click_To_Download_And_Convert.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Click_To_Download_And_Convert_thumb.jpg" alt="09Click_To_Download_And_Convert" width="294" height="69" border="0" /></a></p><p>You&#8217;ll see as the video is first downloaded and then &#8211; if you chose to convert it, that process as well.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/10In_Progress.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/10In_Progress_thumb.jpg" alt="10In_Progress" width="580" height="90" border="0" /></a></p><p>Once you&#8217;re finished, you&#8217;ll notice the original file in your download folder, as well as the converted file, if present.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/11Converted_File_Plus_Original.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/11Converted_File_Plus_Original_thumb.jpg" alt="11Converted_File_Plus_Original" width="169" height="248" border="0" /></a></p><p>All in all, Downverter is a nice little program.  It could be a bit more configurable for some tastes (the quality settings in particular are very basic, with just high, medium and low options), but for quick and easy downloading and converting, plus the advantage of working on Windows, Mac and Linux, Downverter is a great tool.</p><p>Thanks for reading, check out <a
href="http://helpdeskgeek.com">Help Desk Geek - Help Desk Tips For IT Pros</a> for more WordPress news!</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=IzSxVRnvL1A:uvJs9BtlOeM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=IzSxVRnvL1A:uvJs9BtlOeM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=IzSxVRnvL1A:uvJs9BtlOeM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=IzSxVRnvL1A:uvJs9BtlOeM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=IzSxVRnvL1A:uvJs9BtlOeM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=IzSxVRnvL1A:uvJs9BtlOeM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=IzSxVRnvL1A:uvJs9BtlOeM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=IzSxVRnvL1A:uvJs9BtlOeM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=IzSxVRnvL1A:uvJs9BtlOeM:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=cGdyc7Q-1BI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ITHelpDeskGeek/~4/IzSxVRnvL1A" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://helpdeskgeek.com/how-to/downloadconvert-youtube-videos-in-one-step-with-downverter/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://helpdeskgeek.com/how-to/downloadconvert-youtube-videos-in-one-step-with-downverter/</feedburner:origLink></item> <item><title>Configure Windows Live Writer’s Image Handling Settings</title><link>http://feedproxy.google.com/~r/ITHelpDeskGeek/~3/EitoVS_G4nw/</link> <comments>http://helpdeskgeek.com/how-to/configure-windows-live-writers-image-handling-settings/#comments</comments> <pubDate>Sat, 04 Feb 2012 11:43:13 +0000</pubDate> <dc:creator>Eric Fleming</dc:creator> <category><![CDATA[How-To]]></category> <category><![CDATA[configuration]]></category> <category><![CDATA[windows live writer]]></category><guid isPermaLink="false">http://helpdeskgeek.com/?p=25013</guid> <description><![CDATA[If you&#8217;ve just started using Windows Live Writer as your blogging client of choice, you may notice that it has some interesting presets for how to handle images you want posted in your blog.  For instance, let&#8217;s say your blog has a a template so that images should be 580 pixels wide.  That&#8217;s how they [...]]]></description> <content:encoded><![CDATA[<p>If you&#8217;ve just started using Windows Live Writer as your blogging client of choice, you may notice that it has some interesting presets for how to handle images you want posted in your blog.  For instance, let&#8217;s say your blog has a a template so that images should be 580 pixels wide.  That&#8217;s how they look best (and don&#8217;t get cropped by the blog&#8217;s column width), so you take the images you want to post, and carefully resize them in an image editing program, like The GIMP.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Resize_In_GIMP.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Resize_In_GIMP_thumb.jpg" alt="01Resize_In_GIMP" width="295" height="296" border="0" /></a></p><p>Once you&#8217;ve done this, you use the Windows Live Writer Insert Image button to add your image to your blog post, only… your image is now different!  Instead of displaying its exactly-correct 580 pixels width, it&#8217;s now… quite a bit smaller, left-aligned and with a drop-shadow!</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02Small_Drop_Shadow_Left_Aligned.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02Small_Drop_Shadow_Left_Aligned_thumb.jpg" alt="02Small_Drop_Shadow_Left_Aligned" width="291" height="266" border="0" /></a></p><p>It also has a drop shadow.  And even if you&#8217;d previously set your paragraph text to be centered, you&#8217;ll find that the image is now left justified.  This is all fixable, but if you look through the Windows Live Writer preferences, you won&#8217;t find any image settings, unfortunately.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Windows_Live_Writer_Options.png"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Windows_Live_Writer_Options_thumb.png" alt="03Windows_Live_Writer_Options" width="512" height="517" border="0" /></a></p><p>However, this is one of those instances where the solution happens to be hiding in plain sight.  Part of this is that you don&#8217;t actually see any image settings on the toolbar ribbon until you&#8217;ve used the Insert Picture feature to add an image to your post or have highlighted an image you&#8217;ve already inserted.  So to change our settings, go ahead and add an image.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Add_Image.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Add_Image_thumb.jpg" alt="04Add_Image" width="273" height="200" border="0" /></a></p><p>Note: if you already have an image in your blog post, you could avoid adding another one and highlight an existing one instead.</p><p>Once you&#8217;ve added an image or selected one, you&#8217;ll notice the ribbon has changed to now show Picture Tools.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05Picture_Tools_Ribbon.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05Picture_Tools_Ribbon_thumb.jpg" alt="05Picture_Tools_Ribbon" width="580" height="131" border="0" /></a></p><p>Here, finally, we can modify how Windows Live Writer treats pictures.  First, click the Size button on the left side of the ribbon.  A little pop-up will appear where you can change how Windows Live Writer resizes your images by default (or simply leaves them alone).</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Modify_Size_Settings.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Modify_Size_Settings_thumb.jpg" alt="06Modify_Size_Settings" width="311" height="273" border="0" /></a></p><p>If you want to resize your own images in a separate program, choose the Original option as shown above.  However, if you have uses for Small, Medium, and Large settings, you can choose one, or if you have a use for those settings, but the default settings aren&#8217;t quite the sizes you want, click the Set default sizes option (as shown in the image above), to change those default sizes.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07Default_Picture_Sizes.png"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07Default_Picture_Sizes_thumb.png" alt="07Default_Picture_Sizes" width="274" height="308" border="0" /></a></p><p>When you&#8217;re satisfied with the Size options, click the Picture Borders button to choose what &#8211; if any &#8211; border will be placed around your image.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Modify_Picture_Border_Settings.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Modify_Picture_Border_Settings_thumb.jpg" alt="08Modify_Picture_Border_Settings" width="261" height="271" border="0" /></a></p><p>By default, Windows Live Writer uses a drop shadow, but you can set it to no border, or one of the other options, such as rounded corners, thick black border, or even rounded corners.</p><p>When this setting has been configured, click to change what kind of alignment your image has.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Modify_Alignment_Settings.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Modify_Alignment_Settings_thumb.jpg" alt="09Modify_Alignment_Settings" width="292" height="117" border="0" /></a></p><p>You can choose to place your image inline (text flows around it), left justified, centered, or right justified.</p><p>By default, these are the only three things Windows Live Writer changes about an image when you upload it, its size, border and alignment.  However, If you want to keep going, there are a couple other optional settings you can choose to have it change.</p><p>First is the Rotation of your image.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/10Rotation_Settings.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/10Rotation_Settings_thumb.jpg" alt="10Rotation_Settings" width="146" height="217" border="0" /></a></p><p>You can choose to rotate your image 90 degrees to the left or right, or to have it tilted askew.  Finally, you can adjust the margins around your image.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/11Adjust_Margins.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/11Adjust_Margins_thumb.jpg" alt="11Adjust_Margins" width="303" height="215" border="0" /></a></p><p>This is nice if you want a bit of space above and below your image, or to switch how close text will flow around it if placed inline.</p><p>Once you&#8217;ve selected all the settings you want, click the Set To Default button.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/12Set_to_Default.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/12Set_to_Default_thumb.jpg" alt="12Set_to_Default" width="248" height="201" border="0" /></a></p><p>You won&#8217;t receive any feedback that any changes have been made (not even a &#8220;Your Settings Have Been Saved&#8221; window or dialog), but the next time you insert an image into a blog post, your settings will be used, and not the default ones.  And that&#8217;s about it!  As mentioned, these settings aren&#8217;t hard to change, and they&#8217;re actually right out in the open.  But since they&#8217;re not mentioned at all in the Windows Live Writer Options, and are only discoverable when inserting an image, hopefully this how-to tutorial will be helpful.</p><p>Thanks for reading, check out <a
href="http://helpdeskgeek.com">Help Desk Geek - Help Desk Tips For IT Pros</a> for more WordPress news!</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=EitoVS_G4nw:z73Rnivsfu4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=EitoVS_G4nw:z73Rnivsfu4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=EitoVS_G4nw:z73Rnivsfu4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=EitoVS_G4nw:z73Rnivsfu4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=EitoVS_G4nw:z73Rnivsfu4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=EitoVS_G4nw:z73Rnivsfu4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=EitoVS_G4nw:z73Rnivsfu4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=EitoVS_G4nw:z73Rnivsfu4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=EitoVS_G4nw:z73Rnivsfu4:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=cGdyc7Q-1BI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ITHelpDeskGeek/~4/EitoVS_G4nw" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://helpdeskgeek.com/how-to/configure-windows-live-writers-image-handling-settings/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://helpdeskgeek.com/how-to/configure-windows-live-writers-image-handling-settings/</feedburner:origLink></item> <item><title>Find Software Updates In Windows with Software Update Monitor</title><link>http://feedproxy.google.com/~r/ITHelpDeskGeek/~3/sgjRHO4DQKs/</link> <comments>http://helpdeskgeek.com/how-to/find-software-updates-in-windows-with-software-update-monitor/#comments</comments> <pubDate>Fri, 03 Feb 2012 11:42:59 +0000</pubDate> <dc:creator>Eric Fleming</dc:creator> <category><![CDATA[How-To]]></category> <category><![CDATA[updates]]></category> <category><![CDATA[upgrades]]></category><guid isPermaLink="false">http://helpdeskgeek.com/?p=24985</guid> <description><![CDATA[It&#8217;s a good idea to keep the software on your computer up-to-date.  Not just the system software, but all the individual programs you&#8217;ve installed over the years.  This is true for a few reasons.  First, as software is &#8220;in the wild,&#8221; so to speak, bugs and other problems are found and &#8211; hopefully &#8211; corrected [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s a good idea to keep the software on your computer up-to-date.  Not just the system software, but all the individual programs you&#8217;ve installed over the years.  This is true for a few reasons.  First, as software is &#8220;in the wild,&#8221; so to speak, bugs and other problems are found and &#8211; hopefully &#8211; corrected by the developers.  If you don&#8217;t update to the new version, you&#8217;re not seeing the benefits of those fixes.</p><p>Second, software often gains new features, even between major updates, so a free upgrade might well mean that a program works better on your computer than the currently installed version.  Third, as programs become outdated, they are often not supported any longer, so any bugs or security risks (in the case of web browsers) may never be fixed.</p><p>Of course, in Windows, you have the Windows Update feature.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Windows_Update.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/01Windows_Update_thumb.jpg" alt="01Windows_Update" width="580" height="372" border="0" /></a></p><p>This is all well and good, but the only programs and bug fixes that come through Windows Update are the operating system and assorted Microsoft programs.  What about keeping the rest of your software up-to-date?  Windows users have quite a few options for software update monitors, but one we like is called Software Update Monitor (or SUMo for short).  SUMo is a free program that scans your computer for installed programs, then compares that list to its own database, so you know if a new version is available.</p><p>Now, don&#8217;t a lot of programs already include automatic updates, or the ability to check for updates from within the program?  Yes, they do!  And we&#8217;d suggest using those features for programs that offer them, because they&#8217;re easy to use.  But let&#8217;s say you have 30 programs installed, and ten of them offer update checking.</p><p>That means 20 programs don&#8217;t.  That&#8217;s 20 programs where you need to visit the program&#8217;s website and look to see if there&#8217;s a new version.  Therein lies the benefit of SUMo&#8230; it does the checking for you &#8211; for ALL of your programs &#8211; in one easy step.  Here&#8217;s how to use it.</p><p>First, head over to the <a
href="http://www.kcsoftwares.com/index.php?download" target="_blank">SUMo download page</a> and scroll down to the &#8220;Sponsored FREE Software&#8221; section.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02SUMo_Download_Page.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/02SUMo_Download_Page_thumb.jpg" alt="02SUMo_Download_Page" width="580" height="121" border="0" /></a></p><p>Now, be careful which download you choose.  The default download (&#8220;Click Here&#8221;) is bundled with optional sponsors via Relevant Knowledge software (which can later be installed).  Their own description mentions that Relevant Knowledge can sometimes be flagged by anti-virus software (even if it isn&#8217;t actually malicious), but there&#8217;s no need to install it, so grab one of the installers from the More section.</p><p>We&#8217;re grabbing the 7z file, but there is a ZIP file, or even a basic EXE installer available.  However, grab the 7z or ZIP file, as even the EXE installer requires you to opt-out of certain toolbars and new search engines.</p><p>Once you&#8217;ve downloaded the program, expand the file, if necessary.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Expand_Archive1.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/03Expand_Archive_thumb1.jpg" alt="03Expand_Archive" width="188" height="127" border="0" /></a></p><p>If you grabbed the 7z or ZIP file, you can simply start using SUMo.  So navigate to the sumo folder and open the application.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Open_SUMo.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/04Open_SUMo_thumb.jpg" alt="04Open_SUMo" width="221" height="150" border="0" /></a></p><p>The first time SUMo opens, you&#8217;ll be shown the First Run Wizard.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05First_Run_Wizard.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/05First_Run_Wizard_thumb.jpg" alt="05First_Run_Wizard" width="308" height="314" border="0" /></a></p><p>If you choose the &#8220;<strong>Automatically detect installed software</strong>&#8221; option, SUMo will quickly scan your computer for installed software.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Scan_In_Progress.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/06Scan_In_Progress_thumb.jpg" alt="06Scan_In_Progress" width="366" height="127" border="0" /></a></p><p>When the scan is finished, you&#8217;ll see a list of your installed software.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07Installed_Software.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/07Installed_Software_thumb.jpg" alt="07Installed_Software" width="580" height="432" border="0" /></a></p><p>Note that this isn&#8217;t an exhaustive list.  There are no Microsoft programs, as they&#8217;re considered part of the operating system, which Windows Update will take care of.  If, however, you do want Microsoft software include, that &#8211; and other options &#8211; can be found in the Configuration window.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Configuration_Options.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/08Configuration_Options_thumb.jpg" alt="08Configuration_Options" width="294" height="441" border="0" /></a></p><p>Also, if a program includes small utilities, those generally aren&#8217;t included.  However, if you have a program like Calibre installed, you&#8217;ll notice that LRF Viewer shows up on the list, even though it&#8217;s impossible to update one without updating the other.</p><p>It&#8217;s now time to scan the installed software against SUMo&#8217;s list, so click the &#8220;<strong>Check</strong>&#8221; button (from the image above), or the &#8220;<strong>Check for updates for your installed software</strong>&#8221; button on the First Run Wizard.  SUMo will begin the process of comparing your list against its database.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Checking_For_New_Versions.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/09Checking_For_New_Versions_thumb.jpg" alt="09Checking_For_New_Versions" width="580" height="432" border="0" /></a></p><p>When this scan is complete, your list will now show you which programs have available updates.  The updates are categorized as Minor or Major (Having Adobe Reader 10.1.0 installed when 10.1.2 is available is a minor update, while having Firefox 8 installed when Firefox 9 is available is considered major).  When you see a program you want to update, highlight it and click the &#8220;<strong>Get Update</strong>&#8221; button.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/10Highlight_and_Click_For_Update.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/10Highlight_and_Click_For_Update_thumb.jpg" alt="10Highlight_and_Click_For_Update" width="295" height="153" border="0" /></a></p><p>You&#8217;ll now be taken &#8211; in your Web browser &#8211; to a kcsoftwares.com page for the program you want to update.</p><p><a
href="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/11Application_Page.jpg"><img
class="aligncenter" style="margin: 0px auto; padding-left: 0px; padding-right: 0px; float: none; padding-top: 0px; border: 0px;" src="http://s.helpdeskgeek.com/wp-content/pictures/2012/01/11Application_Page_thumb.jpg" alt="11Application_Page" width="580" height="409" border="0" /></a></p><p>You won&#8217;t automatically receive an update to the software, but you can use this page to go to the program&#8217;s home page, where you can download the update.  In the above image, you would click the little caret beside the Mozilla Foundation link, which would take you to the Mozilla home page.</p><p>From there, simply download the available update and install.  That&#8217;s it!  SUMo isn&#8217;t a perfect program.  If it were, it would be able to download the new software for you, and install it in the background.  This isn&#8217;t a perfect world, and there are so many installer options as to make this a fairly big pipe dream.  However, what SUMo does in providing you with a one-stop place to check for updated software is a very good thing, and something well worth checking out.</p><p>Thanks for reading, check out <a
href="http://helpdeskgeek.com">Help Desk Geek - Help Desk Tips For IT Pros</a> for more WordPress news!</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=sgjRHO4DQKs:D87uS-WLFfk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=sgjRHO4DQKs:D87uS-WLFfk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=sgjRHO4DQKs:D87uS-WLFfk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=sgjRHO4DQKs:D87uS-WLFfk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=sgjRHO4DQKs:D87uS-WLFfk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=sgjRHO4DQKs:D87uS-WLFfk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?i=sgjRHO4DQKs:D87uS-WLFfk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=sgjRHO4DQKs:D87uS-WLFfk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?a=sgjRHO4DQKs:D87uS-WLFfk:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/ITHelpDeskGeek?d=cGdyc7Q-1BI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ITHelpDeskGeek/~4/sgjRHO4DQKs" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://helpdeskgeek.com/how-to/find-software-updates-in-windows-with-software-update-monitor/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://helpdeskgeek.com/how-to/find-software-updates-in-windows-with-software-update-monitor/</feedburner:origLink></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
Database Caching using disk: basic
Object Caching 436/479 objects using disk: basic
Content Delivery Network via s.helpdeskgeek.com

Served from: helpdeskgeek.com @ 2012-02-07 05:23:33 -->

