<?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>FAQforge &#187; Windows</title> <atom:link href="http://www.faqforge.com/tag/windows/feed/" rel="self" type="application/rss+xml" /><link>http://www.faqforge.com</link> <description>Just another WordPress weblog</description> <lastBuildDate>Fri, 03 Feb 2012 13:47:23 +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>Windows Powershell Script to Sort Music From Folder to Library</title><link>http://www.faqforge.com/windows/windows-powershell-script-to-sort-music-from-folder-to-library/</link> <comments>http://www.faqforge.com/windows/windows-powershell-script-to-sort-music-from-folder-to-library/#comments</comments> <pubDate>Thu, 02 Feb 2012 10:46:23 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[album]]></category> <category><![CDATA[artist]]></category> <category><![CDATA[audio]]></category> <category><![CDATA[copy]]></category> <category><![CDATA[files]]></category> <category><![CDATA[library]]></category> <category><![CDATA[move]]></category> <category><![CDATA[music]]></category> <category><![CDATA[powershell]]></category> <category><![CDATA[script]]></category> <category><![CDATA[sort]]></category> <category><![CDATA[tagged]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1766</guid> <description><![CDATA[The aim of the following script was to take music from a single folder with unsorted but tagged audio files and sort them into the music library according to artist and album. It often happens that you have audio files in your browser&#8217;s download folder or your instant messenger&#8217;s received files folder where they usually [...]]]></description> <content:encoded><![CDATA[<p>The aim of the following script was to take music from a single folder with unsorted but tagged audio files and sort them into the music library according to artist and album. It often happens that you have audio files in your browser&#8217;s download folder or your instant messenger&#8217;s received files folder where they usually don&#8217;t belong. The script should be able to move them into your music library and put them into correct folders named after the artist and the album they&#8217;re on.</p><blockquote><p>&nbsp;</p><p>$controlssource = 1<br
/> $controlsdest = 1</p><p>$objshell = New-Object -ComObject Shell.Application<br
/> [void] [System.Reflection.Assembly]::LoadWithPartialName(&#8220;System.Drawing&#8221;)<br
/> [void] [System.Reflection.Assembly]::LoadWithPartialName(&#8220;System.Windows.Forms&#8221;)</p><p>$objform = New-Object System.Windows.Forms.Form<br
/> $objform.Text = &#8220;Move Audio Data&#8221;<br
/> $objform.Size = New-Object System.Drawing.Size(300,260)<br
/> $objform.StartPosition = &#8220;CenterScreen&#8221;</p><p>$objform.KeyPreview = $True<br
/> $objform.Add_KeyDown({if ($_.KeyCode -eq &#8220;Escape&#8221;)<br
/> {$objform.Close()}})</p><p>$movebutton = New-Object System.Windows.Forms.Button<br
/> $movebutton.Location = New-Object System.Drawing.Size(20,170)<br
/> $movebutton.Size = New-Object System.Drawing.Size(75,23)<br
/> $movebutton.Text = &#8220;Move&#8221;<br
/> $movebutton.Add_Click({$x=&#8221;move&#8221;;$objform.Close()})<br
/> $objform.Controls.Add($movebutton)</p><p>$copybutton = New-Object System.Windows.Forms.Button<br
/> $copybutton.Location = New-Object System.Drawing.Size(100,170)<br
/> $copybutton.Size = New-Object System.Drawing.Size(75,23)<br
/> $copybutton.Text = &#8220;Copy&#8221;<br
/> $copybutton.Add_Click({$x=&#8221;copy&#8221;;$objform.Close()})<br
/> $objform.Controls.Add($copybutton)</p><p>$cancelbutton = New-Object System.Windows.Forms.Button<br
/> $cancelbutton.Location = New-Object System.Drawing.Size(180,170)<br
/> $cancelbutton.Size = New-Object System.Drawing.Size(75,23)<br
/> $cancelbutton.Text = &#8220;Cancel&#8221;<br
/> $cancelbutton.Add_Click({$a=0;$x=&#8221;nil&#8221;;$objform.Close()})<br
/> $objform.Controls.Add($cancelbutton)</p><p>$objlabel = New-Object System.Windows.Forms.Label<br
/> $objlabel.Location = New-Object System.Drawing.Size(10,110)<br
/> $objlabel.Size = New-Object System.Drawing.Size(280,40)<br
/> $objlabel.Text = &#8220;Please specify whether you want to copy or to move your files. Moving the files will remove them from their original directory.&#8221;<br
/> $objform.Controls.Add($objlabel)</p><p>if ($controlssource -eq 1){<br
/> $objlabel2 = New-Object System.Windows.Forms.Label<br
/> $objlabel2.Location = New-Object System.Drawing.Size(10,10)<br
/> $objlabel2.Size = New-Object System.Drawing.Size(280,15)<br
/> $objlabel2.Text = &#8220;Path to file origin:&#8221;<br
/> $objform.Controls.Add($objlabel2)}</p><p>if ($controlssource -eq 1){<br
/> $objtextbox = New-Object System.Windows.Forms.TextBox<br
/> $objtextbox.Location = New-Object System.Drawing.Size(10,25)<br
/> $objtextbox.Size = New-Object System.Drawing.Size(230,20)<br
/> $objform.Controls.Add($objtextbox)}</p><p>if ($controlsdest -eq 1){<br
/> $objlabel3 = New-Object System.Windows.Forms.Label<br
/> $objlabel3.Location = New-Object System.Drawing.Size(10,50)<br
/> $objlabel3.Size = New-Object System.Drawing.Size(280,15)<br
/> $objlabel3.Text = &#8220;Path to music library:&#8221;<br
/> $objform.Controls.Add($objlabel3)}</p><p>if ($controlsdest -eq 1){<br
/> $objtextbox2 = New-Object System.Windows.Forms.TextBox<br
/> $objtextbox2.Location = New-Object System.Drawing.Size(10,65)<br
/> $objtextbox2.Size = New-Object System.Drawing.Size(230,20)<br
/> $objform.Controls.Add($objtextbox2)}</p><p>if ($controlssource -eq 1){<br
/> $browsebutton1 = New-Object System.Windows.Forms.Button<br
/> $browsebutton1.Location = New-Object System.Drawing.Size(250,24)<br
/> $browsebutton1.Size = New-Object System.Drawing.Size(26,22)<br
/> $browsebutton1.Text = &#8220;&#8230;&#8221;<br
/> $browsebutton1.Add_Click({$fold1 = $objshell.BrowseForFolder(0, &#8220;Select Folder&#8221;, 0, &#8220;&#8221;);$objtextbox.Text = $fold1.self.path})<br
/> $objform.Controls.Add($browsebutton1)}</p><p>if ($controlsdest -eq 1){<br
/> $browsebutton2 = New-Object System.Windows.Forms.Button<br
/> $browsebutton2.Location = New-Object System.Drawing.Size(250,64)<br
/> $browsebutton2.Size = New-Object System.Drawing.Size(26,22)<br
/> $browsebutton2.Text = &#8220;&#8230;&#8221;<br
/> $browsebutton2.Add_Click({$fold2 = $objshell.BrowseForFolder(0, &#8220;Select Folder&#8221;, 0, &#8220;&#8221;);$objtextbox2.Text = $fold2.self.path})<br
/> $objform.Controls.Add($browsebutton2)}</p><p>$objform.Controls.Add($copybutton)</p><p>#$objform.topmost = $True</p><p>$objform.Add_Shown({$objform.Activate()})<br
/> [void] $objform.ShowDialog()</p><p><strong>$sFolder = $objtextbox.Text</strong><br
/> <strong>$mFolder = $objtextbox2.Text</strong><br
/> #$sFolder = &#8220;C:\Users\Public\Music\Sample Music&#8221;<br
/> #$mFolder = &#8220;C:\Users\howtoforge\Music&#8221;<br
/> $objfolder = $objshell.namespace($sFolder)</p><p>if ($X -eq &#8220;nil&#8221;) {exit}</p><p>foreach ($strfilename in $objfolder.items())<br
/> {<br
/> for ($a ; $a -le 266; $a++)<br
/> {<br
/> if ($objfolder.getDetailsOf($objfolder.items, $a) -eq &#8220;<strong>Contributing artist</strong>s&#8221;)<br
/> #if ($objfolder.getDetailsOf($objfolder.items, $a) -eq &#8220;Albuminterpret&#8221;)<br
/> {<br
/> $artist = $objfolder.getDetailsOf($strfilename, $a)<br
/> }<br
/> if($objfolder.getDetailsOf($objfolder.items, $a) -eq &#8220;<strong>Album</strong>&#8220;)<br
/> {<br
/> $album = $objfolder.getDetailsOf($strfilename, $a)<br
/> }<br
/> }<br
/> if ($artist -and $album)<br
/> {<br
/> if (!(test-path($mFolder + &#8220;\&#8221; + $artist + &#8220;\&#8221; + $album + $strfilename)))<br
/> {<br
/> new-item($mFolder + &#8220;\&#8221; + $artist + &#8220;\&#8221; + $album) -itemtype directory<br
/> if($x -eq &#8220;copy&#8221;)<br
/> {<br
/> copy-item $strfilename.Path ($mFolder + &#8220;\&#8221; + $artist + &#8220;\&#8221; + $album)<br
/> }<br
/> if($x -eq &#8220;move&#8221;)<br
/> {<br
/> move-item $strfilename.Path ($mFolder + &#8220;\&#8221; + $artist + &#8220;\&#8221; + $album)<br
/> }<br
/> }<br
/> }<br
/> clear-variable artist<br
/> clear-variable album<br
/> $a=0<br
/> }</p></blockquote><p>The script runs for every audio file in the specified folder that possesses both given details, here they are <em>Contributing artists</em> and<em> Album</em> (you can change it to look for different details but this does not always make sense since the script later creates the folders in the library depending on those data &#8211; there are different artist details however which can be chosen from, since not every audio file has all of them (album artist, contributing artists&#8230;). To change them, just change the single instance of them in the script. Adjust their names to the display language of your system!).</p><p>If the files have both details specified, the script goes to your library and, if not already present, creates a folder with the artist&#8217;s title, a folder with the album title inside of that, and copies or moves the file to that location.</p><p>If you have fixed folders that you don&#8217;t want to browse anew everytime you run the script, comment out the top two lines and the two bold lines, uncomment the two lines underneath the latter. Change the path given there to the path of your folders. You can also just uncomment one of them, just make sure to comment out the right lines when you uncomment one.</p><p>To run the script, copy and paste it into a notepad and save it as <strong>.ps1</strong> file (select <em>All Files</em> from the type dropdown menu). Then right-click the file and run it with windows powershell. If it is not working, you might have to change your execution policy if you have not already done so. To accomplish that, search for <em>powershell</em> in the Windows menu search bar and right-click to <em>run</em> it <em>as administrator</em>. Enter</p><p
class="command">set-executionpolicy remotesigned</p><p>and run the script again. The script works finde on my Windows 7 Enterprise 64bit machine with PowerShell 1.0 installed, if some one has improvements to make I&#8217;d be glad to read.</p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/windows-powershell-script-to-sort-music-from-folder-to-library/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to speedup slow Mozilla Thunderbird email client on Windows 7</title><link>http://www.faqforge.com/windows/how-to-speedup-slow-mozilla-thunderbird-email-client-on-windows-7/</link> <comments>http://www.faqforge.com/windows/how-to-speedup-slow-mozilla-thunderbird-email-client-on-windows-7/#comments</comments> <pubDate>Thu, 12 Jan 2012 20:55:10 +0000</pubDate> <dc:creator>Till</dc:creator> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[Thunderbird]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1624</guid> <description><![CDATA[I&#8217;ve experienced that Thunderbird has gotten slower and slower on my Laptop, at last it was nearly unusable. Sometimes I could see the chars appearing slowly on the screen while I typed the email or it was impossible to drag &#38; drop a email to a different folder because Thunderbird was stalled for 10-15 seconds. [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;ve experienced that Thunderbird has gotten slower and slower on my Laptop, at last it was nearly unusable. Sometimes I could see the chars appearing slowly on the screen while I typed the email or it was impossible to drag &amp; drop a email to a different folder because Thunderbird was stalled for 10-15 seconds. No other applications on my System were slow and the notebook has afast harddisk and SSD, so this was not the problem. The following steps helped me to speedup Thunderbird so that it got usable again.</p><p><strong>Set some interface options</strong></p><p>Edit Thunderbird options under Preferences → Advanced → General tab, click on &#8220;Advanced options&#8221; button and set these values:</p><p><strong><em>layers.acceleration.disabled = true</em></strong></p><p>and</p><p><strong>gfx.direct2d.disabled = false</strong></p><p>and restart Thunderbird. If it is still slow, try the next options:</p><p><strong>Disable AeroGlass</strong></p><p>Disabling the AeroGlass interface makes the interface reacting much faster. Install the &#8220;NoGlass&#8221; Addon which is available in the Thunderbird addon repository.</p><p><strong>Disable Folder Indexing</strong></p><p>If you have folders with many emails inside, Indexing can slow down Thunderbird. Go To Preferences → Advanced → General tab and disable the Global search.</p><p><strong>Antivirus scanning of the Email folders in the filesystem</strong></p><p>A antivirus scanner can slow down Thunderbird as well. Configure your antivirus program to exclude the Thunderbird Mail folders from being scanned. Warning: this option should only be used when the email is scanned by a smtp proxy of the antivirus program for viruses before it is handed to Thunderbird.</p><p><strong>Cleanup Thunderbird index files</strong></p><p>Thunderbird creates a lot of index files. A cleanup of these files can speedup Thunderbird as well, especially if some of them are broken. There is a handy toll called <a
href="http://www.parhelia-tools.com/products/thunderfix/thunderfix.aspx" target="_blank">ThunderFix</a> to do that.</p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/how-to-speedup-slow-mozilla-thunderbird-email-client-on-windows-7/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Windows Automated Installation Kit Error: 0xc1420117 on dism Command</title><link>http://www.faqforge.com/windows/windows-automated-installation-kit-error-0xc1420117-on-dism-command/</link> <comments>http://www.faqforge.com/windows/windows-automated-installation-kit-error-0xc1420117-on-dism-command/#comments</comments> <pubDate>Mon, 09 Jan 2012 08:47:46 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[0xc1420117]]></category> <category><![CDATA[7]]></category> <category><![CDATA[automated]]></category> <category><![CDATA[directory]]></category> <category><![CDATA[dism]]></category> <category><![CDATA[dismount]]></category> <category><![CDATA[error]]></category> <category><![CDATA[installation]]></category> <category><![CDATA[kit]]></category> <category><![CDATA[unmount]]></category> <category><![CDATA[waik]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1537</guid> <description><![CDATA[Error: 0xc1420117 The directory could not be completely unmounted. This is usually due to applications that still have files opened within the mount directory. Close these files and unmount again to complete the unmount process. This error happens when you use another Dism.exe which is located in C:\Windows\System32. The correct application to use is C:\Program [...]]]></description> <content:encoded><![CDATA[<p><em>Error: 0xc1420117</p><p>The directory could not be completely unmounted.  This is usually due to applications that still have files opened within the mount directory.  Close these files and unmount again to complete the unmount process.</em></p><p>This error happens when you use another <em>Dism.exe</em> which is located in <em>C:\Windows\System32</em>. The correct application to use is <em>C:\Program Files\Windows AIK\Tools\amd64\Servicing\Dism.exe</em>, so you need to direct your command line tool to that location before you run the unmount-command (use <em>cd C:\Path</em> to change directory). Replace <em>amd64</em> in the path with your architecture or leave it out to go in the <em>Servicing</em> folder inside <em>Tools</em>.</p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/windows-automated-installation-kit-error-0xc1420117-on-dism-command/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Slipstream Service Packs Into Windows XP Installation Disk</title><link>http://www.faqforge.com/windows/slipstream-service-packs-into-windows-xp-installation-disk/</link> <comments>http://www.faqforge.com/windows/slipstream-service-packs-into-windows-xp-installation-disk/#comments</comments> <pubDate>Fri, 06 Jan 2012 09:30:29 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Windows]]></category> <category><![CDATA[XP]]></category> <category><![CDATA[command]]></category> <category><![CDATA[disk]]></category> <category><![CDATA[installation]]></category> <category><![CDATA[integrate]]></category> <category><![CDATA[into]]></category> <category><![CDATA[line]]></category> <category><![CDATA[pack]]></category> <category><![CDATA[service]]></category> <category><![CDATA[slipstream]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1530</guid> <description><![CDATA[To slipstream (=integrate) MS Windows Service Packs into an existing Windows XP Installation Disk you need an installation Disk, a working copy of Windows, the downloaded Service Pack, a burning software capable of burning bootable images (for example ImgBurn, which is also free), a DVD burner and an empty disk. First copy all files of [...]]]></description> <content:encoded><![CDATA[<p>To slipstream (=integrate) MS Windows Service Packs into an existing Windows XP Installation Disk you need an installation Disk, a working copy of Windows, the downloaded Service Pack, a burning software capable of burning bootable images (for example <em><a
href="www.imgburn.com/index.php?a">ImgBurn</a></em>, which is also free), a DVD burner and an empty disk.<br
/> First copy all files of the installation disk into a folder on your hard disk (don&#8217;t forget any hidden files) and download the Service Packs you need. Then open a command line by typing <em>cmd</em> into a <em>Run&#8230;</em> prompt and direct it to the directory the Service Pack you want to integrate is in with the <em>cd</em> (change directory) command, for example like this:</p><p
class="command">cd C:\Service_Packs</p><p>Don&#8217;t forget to double-quote the path if there are any Space characters in it. Next, enter the file name of the Service Pack followed by the <em>integrate</em> switch and the path of the installation disk files in the following syntax:</p><p
class="command">WINDOWSXP-KB936929-SP3-X86-DEU.EXE /integrate:C:\Windows_XP_Install</p><p><em>Windows_XP_Install</em> is the folder where I copied the files of the disk into and is located directly on the &lt;em&gt;C:&lt;/em&gt; drive. After the process is done, create an image from the altered installation files and burn it as bootable CD/DVD.</p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/slipstream-service-packs-into-windows-xp-installation-disk/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Free Alternative Burning Software for Windows</title><link>http://www.faqforge.com/windows/free-alternative-burning-software-for-windows/</link> <comments>http://www.faqforge.com/windows/free-alternative-burning-software-for-windows/#comments</comments> <pubDate>Thu, 05 Jan 2012 11:59:46 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Vista]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[XP]]></category> <category><![CDATA[alternative]]></category> <category><![CDATA[burning]]></category> <category><![CDATA[free]]></category> <category><![CDATA[image]]></category> <category><![CDATA[imgburn]]></category> <category><![CDATA[nero]]></category> <category><![CDATA[rom]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1522</guid> <description><![CDATA[Nero Burning Rom may be the most used burning software for Windows but despite its high functionality it still is quite expensive. Luckily there are some free alternative burning softwares on the internet which can compete to Nero&#8217;s performance, one of them being ImgBurn: ImgBurn provides you with the crucial burning-processes you will need: writing [...]]]></description> <content:encoded><![CDATA[<p>Nero Burning Rom may be the most used burning software for Windows but despite its high functionality it still is quite expensive. Luckily there are some free alternative burning softwares on the internet which can compete to Nero&#8217;s performance, one of them being <em>ImgBurn</em>:</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2012/01/imgburn.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2012/01/imgburn.jpg" alt="" title="imgburn" width="473" height="322" class="aligncenter size-full wp-image-1524" /></a></p><p>ImgBurn provides you with the crucial burning-processes you will need: writing files, data, and images to a disk. You can copy disks by making images of them or create those from files, making it possible to duplicate your Windows installation disk by copying its files and creating a bootable disk out of it.</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2012/01/imgburn2.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2012/01/imgburn2.jpg" alt="" title="imgburn2" width="475" height="324" class="aligncenter size-full wp-image-1523" /></a></p><p>Download ImgBurn from its homepage: <a
href="http://www.imgburn.com/index.php?act=download">http://www.imgburn.com/index.php?act=download</a></p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/free-alternative-burning-software-for-windows/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Properly Uninstall Software on Windows with Revo Uninstaller</title><link>http://www.faqforge.com/uncategorized/properly-uninstall-software-on-windows-with-revo-uninstaller/</link> <comments>http://www.faqforge.com/uncategorized/properly-uninstall-software-on-windows-with-revo-uninstaller/#comments</comments> <pubDate>Tue, 03 Jan 2012 10:55:59 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[Vista]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[XP]]></category> <category><![CDATA[delete]]></category> <category><![CDATA[leftovers]]></category> <category><![CDATA[revo]]></category> <category><![CDATA[rot]]></category> <category><![CDATA[software]]></category> <category><![CDATA[uninstall]]></category> <category><![CDATA[uninstaller]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1491</guid> <description><![CDATA[The built-in Windows tool to add and remove software is commonly used to install and uninstall software, in most cases an own uninstaller comes with the program. However, this uninstaller usually does its job quite sloppy, since numerous files, folders and/or registry entries are left behind after installation. This can either be wanted, if the [...]]]></description> <content:encoded><![CDATA[<p>The built-in Windows tool to add and remove software is commonly used to install and uninstall software, in most cases an own uninstaller comes with the program. However, this uninstaller usually does its job quite sloppy, since numerous files, folders and/or registry entries are left behind after installation. This can either be wanted, if the left files serve as configuration preservers for the case of reinstallation of the program or, as it is in most cases, is just taken lightly by the programmers, meaning that the left files are actually only data junk never to be used again.<br
/> This data junk, if stored in masses, can slow down your computer over time. While the best method to get rid of it is to format your hard drive and reinstall the operating system from time to time, you may have reasons to not do that, but to look for a more immediate way to get rid of or to prevent such installation leftovers.<br
/> One way to uninstall software more effectively as with their own uninstaller is doing so with <strong>Revo Uninstaller</strong>.</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2012/01/revo.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2012/01/revo.jpg" alt="" title="revo" width="557" height="380" class="aligncenter size-full wp-image-1497" /></a></p><p>This piece of software provides multiple steps of uninstalling &#8211; it first removes the programs with their own uninstaller and then scans the system for the so-called <em>software rot</em>.</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2012/01/revo2.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2012/01/revo2.jpg" alt="" title="revo2" width="500" height="336" class="aligncenter size-full wp-image-1496" /></a></p><p><a
href="http://www.faqforge.com/wp-content/uploads/2012/01/revo3.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2012/01/revo3.jpg" alt="" title="revo3" width="499" height="336" class="aligncenter size-full wp-image-1495" /></a></p><p>If any leftover files are found, they are shown and you are given the option to delete them seperately. Only delete the files that you are sure you won&#8217;t need anymore &#8211; deleting files you don&#8217;t know or recognize can cause severe problems.</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2012/01/revo5.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2012/01/revo5.jpg" alt="" title="revo5" width="533" height="359" class="aligncenter size-full wp-image-1504" /></a></p><p>Furthermore, Revo Uninstaller comes with a bunch of useful features as emptying browser caches, deleting temporary files, Windows search queries, several histories and erasing all tracks of deleted files.</p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/uncategorized/properly-uninstall-software-on-windows-with-revo-uninstaller/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Free Windows Malware Removal Tools</title><link>http://www.faqforge.com/windows/free-windows-malware-removal-tools/</link> <comments>http://www.faqforge.com/windows/free-windows-malware-removal-tools/#comments</comments> <pubDate>Fri, 23 Dec 2011 11:14:30 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Vista]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[XP]]></category> <category><![CDATA[destroy]]></category> <category><![CDATA[free]]></category> <category><![CDATA[malicious]]></category> <category><![CDATA[malware]]></category> <category><![CDATA[malwarebytes]]></category> <category><![CDATA[portable]]></category> <category><![CDATA[removal]]></category> <category><![CDATA[search]]></category> <category><![CDATA[spybot]]></category> <category><![CDATA[superantispyware]]></category> <category><![CDATA[tools]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1481</guid> <description><![CDATA[The tools shown here are tools to be used together with a fully functioning anti-virus software and are not meant to replace it. They provide an additional source of security and work by scanning your system for malicious software and other potentially harmful stuff. The three tools I tested were Malwarebytes&#8217; Anti-Malware, SUPERAntiSpyware Free Edition [...]]]></description> <content:encoded><![CDATA[<p>The tools shown here are tools to be used together with a fully functioning anti-virus software and are not meant to replace it. They provide an additional source of security and work by scanning your system for malicious software and other potentially harmful stuff. The three tools I tested were <em>Malwarebytes&#8217; Anti-Malware</em>, <em>SUPERAntiSpyware Free Edition</em> (+ Portable Edition) and <em>Spybot Search &amp; Destroy</em> (+ Portable Edition). They all ran on the same system with the same prerequisites. Although, or rather because all their results in scanning differ, it is recommendable to have all of them installed and let them scan your system from time to time.</p><p><strong>Malwarebytes&#8217; Anti-Malware</strong></p><p><a
href="http://www.faqforge.com/wp-content/uploads/2011/12/malwarebytes.png"><img
class="aligncenter size-full wp-image-1484" title="malwarebytes" src="http://www.faqforge.com/wp-content/uploads/2011/12/malwarebytes.png" alt="" width="504" height="391" /></a></p><p>Of the three softwares tested, this is the only one that found two trojans on the system. It offers a quick scan and a complete scan option where the quick scan took about 3 minutes and a complete scan took about 45 on 25 GB of data. It removed all found items accurately but unfortunately has no official portable version.<br
/> Download Malwarebytes&#8217; Anti-Malware here: <a
href="http://www.malwarebytes.org/">http://www.malwarebytes.org/</a></p><p><strong>SUPERAntiSpyware Free Edition</strong></p><p><a
href="http://www.faqforge.com/wp-content/uploads/2011/12/Superantispyware.png"><img
class="aligncenter size-full wp-image-1482" title="Superantispyware" src="http://www.faqforge.com/wp-content/uploads/2011/12/Superantispyware.png" alt="" width="440" height="373" /></a></p><p>Of the two trojans that were found by <em>Malwarebytes&#8217; Anti-Malware</em>, SUPERAntiSpyware found one but it also found quite a few adware-tracking cookies which you also might want to get rid of, although they usually are no dangerous objects. Like Malwarebytes, it offers a quick and a complete scan option, which, too, take about 3 and 45 minutes on 25 GB data. Additionally, SUPERAntiSpyware comes with many useful tools that might come handy if you have got a virus disabling critical system functions as re-enabling your task-manager or the system restore service and many more.<br
/> There is also a portable version of the software that works perfectly alright and comes with the same functions as the installable free version.<br
/> Download all versions here: <a
href="http://www.superantispyware.com/">http://www.superantispyware.com/</a></p><p><strong>Spybot Search and Destroy</strong></p><p><a
href="http://www.faqforge.com/wp-content/uploads/2011/12/spybot.png"><img
class="aligncenter size-full wp-image-1483" title="spybot" src="http://www.faqforge.com/wp-content/uploads/2011/12/spybot.png" alt="" width="446" height="306" /></a></p><p>In the current test, unfortunately <em>Spybot</em> found none of the items that the others did, although it has proven worthy in previous ones. Spybot offers one scan option which takes about 20 minutes on 25 GB data. It comes with an extra feature called <em>Immunize</em>, which blocks certain malicious websites if activated. Furthermore, Spybot gives you the option to install <em>TeaTimer</em>, a process running in the background that detects malware that tries to make changes in your registry.<br
/> Like SUPERAntiSpyware, Spybot offers a portable version which works well from any USB device.<br
/> Download Spybot here: <a
href="http://www.safer-networking.org/en/download/index.html">http://www.safer-networking.org/en/download/index.html</a></p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/free-windows-malware-removal-tools/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Mac OS X-like Dock for Windows 7</title><link>http://www.faqforge.com/windows/mac-os-x-like-dock-for-windows-7/</link> <comments>http://www.faqforge.com/windows/mac-os-x-like-dock-for-windows-7/#comments</comments> <pubDate>Wed, 21 Dec 2011 12:44:30 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Vista]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[XP]]></category> <category><![CDATA[dock]]></category> <category><![CDATA[mac os x]]></category> <category><![CDATA[rocketdock]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1465</guid> <description><![CDATA[The Dock, main navigation element in Apple&#8217;s Mac OS X, is a powerful tool to quickly access your most important files if you tend to use the same pieces of software or the same folders over and over again. Rocketdock is such a dock application designed for Windows: It works like the original OS X [...]]]></description> <content:encoded><![CDATA[<p>The <em>Dock</em>, main navigation element in Apple&#8217;s Mac OS X, is a powerful tool to quickly access your most important files if you tend to use the same pieces of software or the same folders over and over again. <em>Rocketdock</em> is such a dock application designed for Windows:</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2011/12/dock2.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2011/12/dock2.jpg" alt="" title="dock2" width="491" height="101" class="aligncenter size-full wp-image-1468" /></a></p><p>It works like the original OS X dock and can be placed on every border of the screen, additionally being highly customizable in terms of theme, effects and behaviour:</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2011/12/dock3.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2011/12/dock3.jpg" alt="" title="dock3" width="359" height="389" class="aligncenter size-full wp-image-1467" /></a></p><p>You can download Rocketdock here: <a
href="http://www.rocketdock.com">http://www.rocketdock.com</a></p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/mac-os-x-like-dock-for-windows-7/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Windows XP Zune Theme</title><link>http://www.faqforge.com/windows/windows-xp-zune-theme/</link> <comments>http://www.faqforge.com/windows/windows-xp-zune-theme/#comments</comments> <pubDate>Tue, 20 Dec 2011 00:53:50 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Windows]]></category> <category><![CDATA[XP]]></category> <category><![CDATA[dark]]></category> <category><![CDATA[player]]></category> <category><![CDATA[Theme]]></category> <category><![CDATA[zune]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1453</guid> <description><![CDATA[Additionally to the default Windows XP themes, Microsoft has released a darker skin fitting the Zune player. It basically uses the same textures as the glassy skin but comes mainly in black with an orange Start button: Download the Zune theme here: http://go.microsoft.com/fwlink/?LinkID=75078]]></description> <content:encoded><![CDATA[<p>Additionally to the default Windows XP themes, Microsoft has released a darker skin fitting the <em>Zune</em> player. It basically uses the same textures as the glassy skin but comes mainly in black with an orange <em>Start</em> button:</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2011/12/zune.png"><img
src="http://www.faqforge.com/wp-content/uploads/2011/12/zune.png" alt="" title="zune" width="336" height="197" class="aligncenter size-full wp-image-1454" /></a></p><p>Download the Zune theme here: <a
href="http://go.microsoft.com/fwlink/?LinkID=75078">http://go.microsoft.com/fwlink/?LinkID=75078</a></p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/windows-xp-zune-theme/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Disabling Aero on Windows 7</title><link>http://www.faqforge.com/windows/disabling-aero-on-windows-7/</link> <comments>http://www.faqforge.com/windows/disabling-aero-on-windows-7/#comments</comments> <pubDate>Thu, 15 Dec 2011 13:14:25 +0000</pubDate> <dc:creator>CSch</dc:creator> <category><![CDATA[Vista]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[7]]></category> <category><![CDATA[Aero]]></category> <category><![CDATA[Classic]]></category> <category><![CDATA[disable]]></category> <category><![CDATA[Theme]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=1446</guid> <description><![CDATA[The Windows 7 Aero desktop theme can cost you quite a lot of performance, which is why you might consider disabling it. To do so, open the Control Panel and select Appearance and Personalization: Next go to Change the theme and scroll down to Windows Classic:]]></description> <content:encoded><![CDATA[<p>The Windows 7 <em>Aero</em> desktop theme can cost you quite a lot of performance, which is why you might consider disabling it. To do so, open the <em>Control Panel</em> and select <em>Appearance and Personalization</em>:</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2011/12/disable_aero.jpg"><img
class="aligncenter size-full wp-image-1448" title="disable_aero" src="http://www.faqforge.com/wp-content/uploads/2011/12/disable_aero.jpg" alt="" width="277" height="66" /></a></p><p>Next go to <em>Change the theme</em> and scroll down to <em>Windows Classic</em>:</p><p><a
href="http://www.faqforge.com/wp-content/uploads/2011/12/disable_aero2.jpg"><img
src="http://www.faqforge.com/wp-content/uploads/2011/12/disable_aero2.jpg" alt="" title="disable_aero2" width="633" height="476" class="aligncenter size-full wp-image-1447" /></a></p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/windows/disabling-aero-on-windows-7/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/45 queries in 0.067 seconds using disk: basic
Object Caching 1554/1701 objects using disk: basic

Served from: www.faqforge.com @ 2012-02-05 00:13:35 -->
