<?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>Windows Tweaks and more</title>
	<atom:link href="http://xptweak.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://xptweak.net</link>
	<description></description>
	<lastBuildDate>Tue, 24 Nov 2009 11:58:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Delete row in Excel if it contains string</title>
		<link>http://xptweak.net/delete-row-in-excel-if-it-contains-string/</link>
		<comments>http://xptweak.net/delete-row-in-excel-if-it-contains-string/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 11:55:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=328</guid>
		<description><![CDATA[In Excel you can use the allmighty Visual Basic Editor to create very useful macros. Today I will share with you a macro which deletes a row if it contains some string. The code is
Sub delgoogle()
Dim i As Long
With ActiveSheet.UsedRange
For i = .Row + .Rows.Count &#8211; 1 To .Row Step -1
If Cells(i, &#8220;A&#8221;).Text Like &#8220;*google*&#8221; Then Rows(i).Delete
Next i
End With
End Sub
What this code does, is look in the sheet where the macro is ran, for a row containing the word google. Note the &#8220;*&#8221; which means that the row can be ...]]></description>
			<content:encoded><![CDATA[<p>In Excel you can use the allmighty Visual Basic Editor to create very useful macros. Today I will share with you a macro which deletes a row if it contains some string. The code is</p>
<blockquote><p>Sub delgoogle()<br />
Dim i As Long<br />
With ActiveSheet.UsedRange<br />
For i = .Row + .Rows.Count &#8211; 1 To .Row Step -1<br />
If Cells(i, &#8220;A&#8221;).Text Like &#8220;*google*&#8221; Then Rows(i).Delete<br />
Next i<br />
End With<br />
End Sub</p></blockquote>
<p>What this code does, is look in the sheet where the macro is ran, for a row containing the word google. Note the &#8220;*&#8221; which means that the row can be like agoogle or googlef or even agooglea and will still delete it.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/delete-row-in-excel-if-it-contains-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox shared folders on Windows 7</title>
		<link>http://xptweak.net/virtualbox-shared-folders-on-windows-7/</link>
		<comments>http://xptweak.net/virtualbox-shared-folders-on-windows-7/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 07:34:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[shared folders]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=321</guid>
		<description><![CDATA[Windows 7 networking navigation just like Vista sucks big time.  If you are wondering how to see a folder shared from VirtualBox, then the answer is you can&#8217;t do it directly like in XP going to Virtual Box Shared folders, because that thing does not exist. I&#8217;ve found out that you need to navigate to the shared folder by entering in the address bar
\\vboxsvr\&#60;share&#62;
Where &#60;share&#62; is the name you have used when sharing the folder within VirtualBox.
]]></description>
			<content:encoded><![CDATA[<p>Windows 7 networking navigation just like Vista sucks big time.  If you are wondering how to see a folder shared from VirtualBox, then the answer is you can&#8217;t do it directly like in XP going to Virtual Box Shared folders, because that thing does not exist. I&#8217;ve found out that you need to navigate to the shared folder by entering in the address bar</p>
<p><strong>\\vboxsvr\&lt;share&gt;</strong></p>
<p>Where &lt;share&gt; is the name you have used when sharing the folder within VirtualBox.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/virtualbox-shared-folders-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows Update error 0&#215;80072EFD</title>
		<link>http://xptweak.net/windows-update-error-0x80072efd/</link>
		<comments>http://xptweak.net/windows-update-error-0x80072efd/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 20:28:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=314</guid>
		<description><![CDATA[This error is quite common nowadays on computers with Firewalls.The error is described by Microsoft as
ERROR_INTERNET_CANNOT_CONNECT
This issue can be caused by:
- Internet Proxy being blocked by some Firewall
- Bad bad bad configuration of Firewall
- You have very outdated BITS service
- You are using some download accelerator
- Check if the network cable is plugged (no wifis)
]]></description>
			<content:encoded><![CDATA[<p>This error is quite common nowadays on computers with Firewalls.The error is described by <a href="http://support.microsoft.com/kb/836941" target="_blank">Microsoft</a> as</p>
<p>ERROR_INTERNET_CANNOT_CONNECT</p>
<p>This issue can be caused by:</p>
<p>- Internet Proxy being blocked by some Firewall</p>
<p>- Bad bad bad configuration of Firewall</p>
<p>- You have very outdated <a href="21:18 keith brisley: hi mitko - looks like the update won't instal - any ideas why?" target="_blank">BITS</a> service</p>
<p>- You are using some download accelerator</p>
<p>- Check if the network cable is plugged (no wifis)</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/windows-update-error-0x80072efd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert text in Excel to hyperlink</title>
		<link>http://xptweak.net/how-to-make-pasted-text-in-excel-as-hyperlink/</link>
		<comments>http://xptweak.net/how-to-make-pasted-text-in-excel-as-hyperlink/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 14:38:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[hyperlink]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=297</guid>
		<description><![CDATA[When you paste or import text that looks like a hyperlink 		  into a cell, the hyperlink does not actually work but remains as a text entry. 		  If you type the same text into a cell by using the keyboard, Microsoft Excel 		  interprets the entry as an active hyperlink.
The cause lies here:
Microsoft Excel does not interpret these text values as 		  hyperlinks unless they are typed from the keyboard.
To convert cells that contain valid hyperlink text in Excel 		  to active hyperlinks, use ...]]></description>
			<content:encoded><![CDATA[<p>When you paste or import text that looks like a hyperlink 		  into a cell, the hyperlink does not actually work but remains as a text entry. 		  If you type the same text into a cell by using the keyboard, Microsoft Excel 		  interprets the entry as an active hyperlink.</p>
<p>The cause lies here:</p>
<blockquote><p>Microsoft Excel does not interpret these text values as 		  hyperlinks unless they are typed from the keyboard.</p></blockquote>
<p>To convert cells that contain valid hyperlink text in Excel 		  to active hyperlinks, use one of the following methods.</p>
<h3>Method 1: Edit the Hyperlink by Using the Keyboard</h3>
<ol>
<li>Select a cell that contains a hyperlink that appears as 				text.</li>
<li>Press F2 and then press ENTER.</li>
<li>Repeat steps 1 and 2 for each cell, as needed.</li>
</ol>
<h3>Method 2: Use a Macro</h3>
<blockquote><p>Sub HyperAdd()<br />
&#8216;<br />
&#8216; Converts each text hyperlink selected into a working hyperlink<br />
&#8216;<br />
For Each xCell In Selection<br />
ActiveSheet.Hyperlinks.Add Anchor:=xCell, Address:=xCell.Formula<br />
Next xCell<br />
&#8216;<br />
&#8216;<br />
End Sub</p></blockquote>
<p>Now save that macro and run it on your cells.</p>
<h3>Method 3: Use Hyperlink function</h3>
<p>You can use in a new cell the HYPERLINK function which will convert text to link and apply that to all cells. Only downside is that a new column will be used.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/how-to-make-pasted-text-in-excel-as-hyperlink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kill Processes from Command Prompt</title>
		<link>http://xptweak.net/kill-processes-from-command-prompt/</link>
		<comments>http://xptweak.net/kill-processes-from-command-prompt/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 11:04:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[task list]]></category>
		<category><![CDATA[taskkill]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=283</guid>
		<description><![CDATA[I&#8217;m sure you are familiar with the traditional way to kill or end a process in Windows using Task Manager.  This method is effective but not nearly as fun as killing a process in Command Prompt.  Additionally, killing processes in Command Prompt provides much more control and the ability to end multiple processes at once.
All of this is possible with the TaskKill command. First, let&#8217;s cover the basics.  You can kill a process by the process ID (PID) or by image name (EXE filename).
Open up an Administrative level Command Prompt ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure you are familiar with the traditional way to kill or end a process in Windows using Task Manager.  This method is effective but not nearly as fun as killing a process in Command Prompt.  Additionally, killing processes in Command Prompt provides much more control and the ability to end multiple processes at once.</p>
<p><!-- Break -->All of this is possible with the TaskKill command. First, let&#8217;s cover the basics.  You can kill a process by the process ID (PID) or by image name (EXE filename).</p>
<p>Open up an Administrative level Command Prompt and run <strong>tasklist</strong> to see all of the running processes:</p>
<div>C:\&gt;tasklist</p>
<p>Image Name                     PID Session Name        Mem Usage<br />
========================= ======== ================ ============<br />
firefox.exe                  26356 Console             139,352 K<br />
regedit.exe                  24244 Console               9,768 K<br />
cmd.exe                      18664 Console               2,380 K<br />
conhost.exe                   2528 Console               7,852 K<br />
notepad.exe                  17364 Console               7,892 K<br />
notepad.exe                  24696 Console              22,028 K<br />
notepad.exe                  25304 Console               5,852 K<br />
explorer.exe                  2864 Console              72,232 K</p></div>
<p>In the example above you can see the image name and the PID for each process. If you want to kill the firefox process run:</p>
<div>C:\&gt;Taskkill /IM firefox.exe /F</div>
<p>or</p>
<div>C:\&gt;Taskkill /PID 26356 /F</div>
<p>The /f flag is kills the process forcefully.  Failure to use the /F flag will result in nothing happening in some cases.  One example is whenever I want to kill the explorer.exe process I have to use the /F flag or else the process just does not terminate.</p>
<p>If you have multiple instances of an image open such as multiple firefox.exe processes, running the taskkill /IM firefox.exe command will kill all instances. When you specify the PID only the specific instane of firefox will be terminated.</p>
<p>The real power of taskkill are the filtering options that allow you to use the following variables and operators.</p>
<p>Variables:</p>
<ul>
<li> STATUS</li>
<li>IMAGENAME</li>
<li>PID</li>
<li>SESSION</li>
<li>CPUTIME</li>
<li>MEMUSAGE</li>
<li>USERNAME</li>
<li>MODULES</li>
<li>SERVICES</li>
<li>WINDOWTITLE</li>
</ul>
<p>Operators:</p>
<ul>
<li>eq (equals)</li>
<li>ne (not equal)</li>
<li>gt (greater than)</li>
<li>lt (less than)</li>
<li>ge (greater than or equal)</li>
<li>le (less than or equal)</li>
</ul>
<p>&#8220;*&#8221; is the wildcard.</p>
<p>You can use the variables and operators with the /FI filtering flag.  For example, let&#8217;s say you want to end all processes that have a window title that starts with &#8220;Internet&#8221;:</p>
<div>C:\&gt;taskkill /FI &#8220;WINDOWTITLE eq Internet*&#8221; /F</div>
<p>How about killing all processes running under the Steve account:</p>
<div>C:\&gt;taskkill /FI &#8220;USERNAME eq Steve&#8221; /F</div>
<p>It is also possible to kill a process running on a remote computer with taskkill.  Just run the following to kill notepad.exe on a remote computer called SteveDesktop:</p>
<div>C:\&gt;taskkill /S SteveDesktop /U RemoteAccountName /P RemoteAccountPassword /IM notepad.exe /F</div>
<p>To learn more about taskkill run it with the /? command just like any other Windows command.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/kill-processes-from-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Update Errors: 0&#215;80070002</title>
		<link>http://xptweak.net/windows-update-errors-0x80070002/</link>
		<comments>http://xptweak.net/windows-update-errors-0x80070002/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 10:57:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows update]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=278</guid>
		<description><![CDATA[Fixing the Windows 0&#215;80070002 update error by utilizing various methods.

While updating windows, it is possible to receive the 0&#215;80070002 Error. As a result the update process will not be completed, and your computer will not be able to transmit files. The reason for your computer receiving the 0&#215;80070002 Error is due to it not having all of the files that should have been transmitted when updating your software. This is an initialization error that occurs after files have been downloaded, and extracted to the computer.
To fix the error manually, it ...]]></description>
			<content:encoded><![CDATA[<p><span id="ctl00_ctl00_WideLeftPane_WideLeftPane_preview">Fixing the Windows 0&#215;80070002 update error by utilizing various methods.</span></p>
<div>
<p>While updating windows, it is possible to receive the 0&#215;80070002 Error. As a result the update process will not be completed, and your computer will not be able to transmit files. The reason for your computer receiving the 0&#215;80070002 Error is due to it not having all of the files that should have been transmitted when updating your software. This is an initialization error that occurs after files have been downloaded, and extracted to the computer.</p>
<p>To fix the error manually, it will be necessary to remove all of the files partially downloaded, and try again to update your Windows files:</p>
<p>1. On the Windows desktop, press Start, and when the menu opens up,</p>
<p>2. Press Run, and input the following command “services.msc”</p>
<p>3. In the Run box, type &#8220;services.msc&#8221;, and press &#8220;Enter&#8221;.</p>
<p>4. This will open the &#8220;Local Services&#8221; window.</p>
<p>5. In the Local Services window find the name “Automatic Updates” and right click.</p>
<p>6. On right click, scroll down and press “Stop”. This will cause the Automatic Updates to pause to correct the situation. Do not close the Local Services window.</p>
<p>At this point you can go to the &#8220;Software Distribution&#8221; folder and delete its contents, or give the folder another name. It is advised that you just rename the folder,</p>
<p>7. To do this go to the Windows desktop and press “Start” then press “Run” when the menu opens.</p>
<p>8. Input the “cmd” command into Run, and the computer will take you to the DOS prompt.</p>
<p>9. At the DOS prompt type in this command “cd %windir%” (without the quotes), and press Enter.</p>
<p>10. You should now be in the Windows directory.</p>
<p>11. At the Windows directory, input “ren SoftwareDistribution SoftDisTemp” and hit &#8220;Enter&#8221;. This will rename the Software Distribution folder to the new name of SoftDisTemp.</p>
<p>12. Type &#8220;Exit&#8221; and hit &#8220;Enter&#8221; to close the DOS window.</p>
<p>13. Now go to the &#8220;Local Services&#8221; window and right click &#8220;Automatic Updates&#8221; to restart it.</p>
<p>14. Now update your Windows.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/windows-update-errors-0x80070002/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use your iPod as a backup device</title>
		<link>http://xptweak.net/use-your-ipod-as-a-backup-device/</link>
		<comments>http://xptweak.net/use-your-ipod-as-a-backup-device/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 16:51:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=272</guid>
		<description><![CDATA[If you must, you can use an iPod as a backup device. The cons may outweigh the pros though, but if you don’t have an external hard drive, it is possible.
Too much activity on your iPod can shorten its lifespan; they are designed to work with small music and video files, not large and weighty files like the ones on your Mac. You would not want to use your iPod as a backup device or to access a disk image unless it was an absolute emergency.
However, if you must use ...]]></description>
			<content:encoded><![CDATA[<p>If you must, you can use an iPod as a backup device. The cons may outweigh the pros though, but if you don’t have an external hard drive, it is possible.</p>
<p>Too much activity on your iPod can shorten its lifespan; they are designed to work with small music and video files, not large and weighty files like the ones on your Mac. You would not want to use your iPod as a backup device or to access a disk image unless it was an absolute emergency.</p>
<p>However, if you must use your iPod for the purpose of backing up your Mac, and you have no other options, here’s how to do it:</p>
<p>1. Connect your iPod to your Mac. Make sure the iPod has enough hard drive space on it to install the Mac OS operating system and any backup files you want to store.</p>
<p>2. Select your iPod in the Source pane of iTunes.</p>
<p>3. In the bottom right corner, click the iPod icon.</p>
<p>4. In the iPod dialog box, select the Music tab, select Manually Manage Songs and Playlists. Click OK. [See Image 1]</p>
<p>5. Close iTunes.</p>
<p>6. Open Disk Utility and select the iPod.</p>
<p>7. Select the Erase tab.</p>
<p>8. For Volume Format, select Mac OS Extended (Journaled).</p>
<p>9. Click the Erase button.</p>
<p>Note! This will erase everything on your iPod.</p>
<p>10. Click Erase.</p>
<p>11. If the iPod Setup Assistant appears, deselect Automatically Update Songs On My iPod and Automatically Copy Photos To My iPod. Click Next.</p>
<p>12. Click Done when prompted to register (you’ve probably already registered anyway).</p>
<p>13. In the Disk Utility window, select the Restore tab.</p>
<p>14. Drag the icon for the Macintosh HD to the Source window.</p>
<p>15. Drag the icon for the iPod to the Destination window. [See Image 2]</p>
<p>16. Click Restore.</p>
<p>17. In the Copy dialog box, verify you are indeed copying to the correct drive. Remember, you want to copy TO the iPod. Click OK.</p>
<p>18. Type an administrator’s name and password in the Authenticate dialog box and click OK.</p>
<p>19. Wait while the copy process completes; this could take quite a bit of time and perhaps is best done before you go to bed at night. Do not do anything with your Mac during this time, such as answering e-mail or running applications.</p>
<p>That’s it, you are all set now.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/use-your-ipod-as-a-backup-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix Broken and Slow Tab Issues in Internet Explorer 8</title>
		<link>http://xptweak.net/fix-broken-and-slow-tab-issues-in-internet-explorer-8/</link>
		<comments>http://xptweak.net/fix-broken-and-slow-tab-issues-in-internet-explorer-8/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 11:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[intertnet explorer]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=267</guid>
		<description><![CDATA[Something goes wrong somewhere, and people get the following problems after the installation of Windows Internet Explorer 8:
- In Windows Explorer (I mean those file explorer for browsing folders/files), when you double-click on a folder, a new Windows Explorer is popped up instead of showing the folder in the same explorer.
- In Windows IE8, when you right-click a web address on a web page, and then click [Open in New Window] or [Open in New Tab], the web page cannot be opened in a new window / tab.
- In Windows ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Something goes wrong somewhere, and people get the following problems after the installation of Windows Internet Explorer 8:</p>
<p style="text-align: justify;">- In Windows Explorer (I mean those file explorer for browsing folders/files), when you double-click on a folder, a new Windows Explorer is popped up instead of showing the folder in the same explorer.</p>
<p style="text-align: justify;">- In Windows IE8, when you right-click a web address on a web page, and then click [Open in New Window] or [Open in New Tab], the web page cannot be opened in a new window / tab.</p>
<p style="text-align: justify;">- In Windows IE8, when you click a link on a web page that uses scripting to open a new window, the new window cannot be opened. (This is absolutely inconvenience as I need to use some kind of banking services immediately, while that bank uses JavaScript to open a new window.)</p>
<p style="text-align: justify;">===== Solution =====</p>
<p style="text-align: justify;">Run [ Command Prompt ] (You will need to **Run as <strong><span style="text-decoration: underline;">administrator</span></strong>**)</p>
<p style="text-align: justify;">Type the following command.</p>
<p style="text-align: justify;">regsvr32 actxprxy.dll</p>
<p style="text-align: justify;">All go smoothly!… and now you can enjoy the much faster explorer engine.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/fix-broken-and-slow-tab-issues-in-internet-explorer-8/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Top 10 free virus removers</title>
		<link>http://xptweak.net/top-10-free-virus-removers/</link>
		<comments>http://xptweak.net/top-10-free-virus-removers/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 00:45:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[avg]]></category>
		<category><![CDATA[avira]]></category>
		<category><![CDATA[bitdefender]]></category>
		<category><![CDATA[eset]]></category>
		<category><![CDATA[f-secure]]></category>
		<category><![CDATA[kaspersky]]></category>
		<category><![CDATA[mcafee]]></category>
		<category><![CDATA[panda]]></category>
		<category><![CDATA[symantec]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=248</guid>
		<description><![CDATA[Some specific viruses can be very difficult to remove by standard means. In addition to that can a virus’ payload damage or undermine system stability, computer security and anti-virus software functionality so that it might be best considering the use of a virus removal tool. Cases when virus removal tools came in handy include dealing with acute virus threats and infections for which vendors of anti-virus software had not yet released a solution, using it  as a patch, or, alternatively, fighting acute worm infections of epidemic scale, especially in a ...]]></description>
			<content:encoded><![CDATA[<p>Some specific viruses can be very difficult to remove by standard means. In addition to that can a virus’ payload damage or undermine system stability, computer security and anti-virus software functionality so that it might be best considering the use of a virus removal tool. Cases when virus removal tools came in handy include dealing with acute virus threats and infections for which vendors of anti-virus software had not yet released a solution, using it  as a patch, or, alternatively, fighting acute worm infections of epidemic scale, especially in a networked environment, and doing initial damage contamination just to name a few. Yet, to make use of virus/worm removal tools in general you have to know detail information of the virus or who caused the infection in general. Here are the top 10 free virus removal tools:</p>
<p><a href="http://free.avg.com/virus-removal">AVG removal utilities</a></p>
<p>AVG removal utilities are a number of virus or worm removal utilities for specific infections. Documentation could be improved a bit though. The date of the latest addition is missing.</p>
<p><a href="http://www.free-av.com/en/tools/3/avira_antivir_removal_tool.html">Avira AntiVir Removal Tool</a></p>
<p>Avira AntiVir Removal Tool is a virus and worm removal tool for relatively few specific infections. Reasonable documentation is kept to a minimum, and the date of the latest addition is missing.<a href="http://www.bitdefender.com/site/Downloads/browseFreeRemovalTool/"></a></p>
<p><a href="http://www.bitdefender.com/site/Downloads/browseFreeRemovalTool/">BitDefender Free Virus Removal Tools</a></p>
<p>BitDefender Free Virus Removal Tools are a number of virus or worm removal tools for specific infections. A reasonable amount of useful documentation is available, but the date of the latest addition</p>
<p><ins><ins></ins></ins></p>
<p>is missing.</p>
<p><a href="http://www.eset.com/download/free-virus-remover.php">ESET FREE Spyware Removal and Antivirus Tools</a></p>
<p>ESET FREE Spyware Removal and Antivirus Tools are a number of virus or worm removal tools for specific infections. Documentation would be an asset, and the date of the latest tool addition is missing, too.</p>
<p><a href="http://www.f-secure.com/download-purchase/tools.shtml">F-Secure Malware Removal Tools</a></p>
<p>F-Secure’s malware removal tools are is a number of virus or worm removal tools for specific infections. Its documentation is kept to a minimum, and the date of the latest tool addition is missing.</p>
<p><a href="http://www.kaspersky.com/removaltools">Kaspersky Lab Virus Removal Tools</a></p>
<p>Kaspersky Lab Virus Removal Tools are a number of virus or worm removal tools for specific infections listed by date as well as alphabetically. Documentation would be an asset.</p>
<p><strong><a href="http://vil.nai.com/vil/stinger/">McAfee Avert Stinger</a></strong></p>
<p><strong>McAfee’s Stinger is a virus and worm removal application for a relatively large number of specific infections. Stinger has recently been updated; a fair amount of useful documentation is available.</strong></p>
<p><strong><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&amp;displaylang=en">Microsoft Malicious Software Removal Tool</a></strong></p>
<p><strong>MSRT is a virus and worm removal tool for specific infections addressing memory resilient malware. Microsoft Malicious Software Removal Tool is well documented and updated at least monthly.</strong></p>
<p><a href="http://www.pandasecurity.com/homeusers/downloads/repair-utilities/">Panda QuickRemover Repair Utilities</a></p>
<p>Panda QuickRemover Repair Utilities are a number of reasonably documented virus or worm removal utilities for specific infections. The date of the latest addition is missing though, and users must register to download.</p>
<p><a href="http://www.symantec.com/business/security_response/removaltools.jsp">Symantec Removal Tools </a></p>
<p>Symantec Removal Tools are number of reasonably documented virus or worm removal tools for specific infections which have recently been updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/top-10-free-virus-removers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security Tweaks for Windows Vista</title>
		<link>http://xptweak.net/security-tweaks-for-windows-vista/</link>
		<comments>http://xptweak.net/security-tweaks-for-windows-vista/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 18:02:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=251</guid>
		<description><![CDATA[Windows Vista is the most secure operating system that Microsoft has produced. With a multitude of features that make the operating system secure; this operating system like ALL operating systems can be made more secure by tweaking the inner workings of Vista. System tweaks for users is often found by the end user. This series explores different methodologies of protecting the operating system while allow the user to keep a work friendly workspace.
Vista Firewall Tweaks
The firewall control in Vista is one of the most important tweaks. Microsoft&#8217;s firewall in Windows ...]]></description>
			<content:encoded><![CDATA[<p>Windows Vista is the most secure operating system that Microsoft has produced. With a multitude of features that make the operating system secure; this operating system like ALL operating systems can be made more secure by tweaking the inner workings of Vista. System tweaks for users is often found by the end user. This series explores different methodologies of protecting the operating system while allow the user to keep a work friendly workspace.</p>
<h4><strong>Vista Firewall Tweaks</strong></h4>
<p>The firewall control in Vista is one of the most important tweaks. Microsoft&#8217;s firewall in Windows Vista is one of the most secure and flexible software firewalls made in any operating system.</p>
<p>To further secure packets coming in and going out of your computer, click on the Start Button and type wf.msc (Windows Firewall Snap-in) and hit enter.</p>
<p>Each of these rules can be reviewed and configured independently. Users should change the default action for connections that are outbound from allow to block. Remember to only allow programs that need access to the internet. The only programs that should be allowed are programs needing updates or those controlled by the user.</p>
<h4>Windows Vista Firewall</h4>
<p><a href="http://xptweak.net/wp-content/upload/2009/03/295b4eef94751d2b03894b5dd994f00cbb8e0384_largejpg.png" rel="shadowbox[post-251];player=img;"><img src="http://xptweak.net/wp-content/upload/2009/03/295b4eef94751d2b03894b5dd994f00cbb8e0384_smalljpg.png" alt="" width="150" height="150" /></a><a href="http://xptweak.net/wp-content/upload/2009/03/d687b97d0d9e69a31805d8d639e59cc56fd54090_largejpg.png" rel="shadowbox[post-251];player=img;"><img src="http://xptweak.net/wp-content/upload/2009/03/d687b97d0d9e69a31805d8d639e59cc56fd54090_smalljpg.png" alt="" width="150" height="150" /></a></p>
<h4><strong>Policy Tweaks &#8211; Lockout</strong></h4>
<p>Creating an account lockout policy locks basic users out of workstations if the wrong password or username is entered. Rules can be set for the number of invalid login attempts. Although this tweak can be performed in Windows XP and will be carried over into Windows 7, it is often one of the most overlooked access control policies that should be put into place.</p>
<ol>
<li>Click on the Start Button and enter Secpol.msc</li>
<li>Click on Account Policies &#8211; Account Lockout Policy.</li>
<li>Right click on Account lockout threshold and select Properties. (You can also double click this option)</li>
</ol>
<h4><strong>Tweaking the UAC</strong></h4>
<p>The user account control (UAC) was placed in Windows Vista to &#8216;help&#8217; users when installing applications or making decisions about changes in the operating system. Tweaking security goes both ways. Too much security can hinder the average user or administrator while not enough security can compromise security on the workstation.</p>
<p>Below are the default values shown in the policy. Items in italics are the default settings.</p>
<p>1. Click on start and enter secpol.msc &#8211; this will bring up the security policy snapin.</p>
<p>(You can also get to this policy by navigating to the administrative tools group.)</p>
<p>2. Click on Local Policies &#8211; Security Options.</p>
<p>3. Navigate to User Account Protection settings.</p>
<ul>
<li>User Account Control: Admin Approval Mode for the Built-in Administrator account
<ul>
<li>Enabled</li>
<li><em><strong>Disabled</strong></em></li>
</ul>
</li>
<li>User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode
<ul>
<li>Elevate without prompting</li>
<li>Prompt for credentials</li>
<li><em><strong>Prompt for consent</strong></em></li>
</ul>
</li>
<li>User Account Control: Behavior of the elevation prompt for standard users
<ul>
<li>Automatically deny elevation requests</li>
<li><em><strong>Prompt for credentials</strong></em></li>
</ul>
</li>
<li>User Account Control: Detect application installations and prompt for elevation
<ul>
<li><em><strong>Enabled</strong></em></li>
<li>Disabled</li>
</ul>
</li>
<li>User Account Control: Only elevate executables that are signed and validated
<ul>
<li>Enabled</li>
<li><em><strong>Disabled</strong></em></li>
</ul>
</li>
<li>User Account Control: Only elevate UIAccess applications that are installed in secure locations
<ul>
<li><em><strong>Enabled</strong></em></li>
<li>Disabled</li>
</ul>
</li>
<li>User Account Control: Run all administrators in Admin Approval Mode
<ul>
<li><em><strong>Enabled</strong></em></li>
<li>Disabled</li>
</ul>
</li>
<li>User Account Control: Switch to the secure desktop when prompting for elevation
<ul>
<li><em><strong>Enabled</strong></em></li>
<li>Disabled</li>
</ul>
</li>
<li>User Account Control: Virtualize file and registry write failures to per-user locations
<ul>
<li><em><strong>Enabled</strong></em></li>
<li>Disabled</li>
</ul>
</li>
</ul>
<p>Remember that the UAC serves an important role and should not be disabled.</p>
<p><a href="http://xptweak.net/wp-content/upload/2009/03/7591a454080f36477c80c2721324f53cbd36ca9b_largejpg.png" rel="shadowbox[post-251];player=img;"><img src="http://xptweak.net/wp-content/upload/2009/03/7591a454080f36477c80c2721324f53cbd36ca9b_smalljpg.png" alt="" width="150" height="150" /></a></p>
<p>Tweaking can make you more secure or it can relieve security tasks and burdens that have an impact on production. Security should never be sacrificed for convenience. These are only three small tweaks that can help with the basic security needs in Windows Vista.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/security-tweaks-for-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
