<?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 &#187; Featured</title>
	<atom:link href="http://xptweak.net/category/featured/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>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>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>How to remove Yoog search toolbar</title>
		<link>http://xptweak.net/how-to-remove-yoog-search-toolbar/</link>
		<comments>http://xptweak.net/how-to-remove-yoog-search-toolbar/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 08:33:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[yoog]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=244</guid>
		<description><![CDATA[Yoog is a nasty search engine which replaces the default Google search engine in both Firefox and Internet Explorer. This leads to unwanted popups and ads shown. Yoog can be easiliy removed this way:
Firefox

In the URL address box, type about:config and hit enter.
You may get a message like &#8220;here be dragons&#8220;. If you do, just click the button that is there.
Then you should see a Filter: box. In the Filter box, type keyword As you type this, items will be filtered from the list showing in the window and only ...]]></description>
			<content:encoded><![CDATA[<p>Yoog is a nasty search engine which replaces the default Google search engine in both Firefox and Internet Explorer. This leads to unwanted popups and ads shown. Yoog can be easiliy removed this way:</p>
<p><strong>Firefox</strong></p>
<ul>
<li>In the URL address box, type about:config and hit enter.</li>
<li>You may get a message like &#8220;<strong>here be dragons</strong>&#8220;. If you do, just click the button that is there.</li>
<li>Then you should see a <strong>Filter:</strong> box. In the Filter box, type <strong>keyword </strong>As you type this, items will be filtered from the list showing in the window and only a few items will remain. One of them should be <strong>keyword.URL</strong></li>
<li>Try using Right Click and select<strong> Reset</strong> if it is not disabled.
<ul>
<li>If the Reset selection is disabled, select Modify and enter the below into the Enter String Value box that appears</li>
<li><strong><span style="color: blue;">http://www.google.com/search?ie=UTF-8&amp;oe=UTF-8&amp;sourceid=navclient&amp;gfns=1&amp;q</span></strong><strong><span style="color: blue;">=</span></strong></li>
<li>then click OK.</li>
</ul>
</li>
<li>Then towards the top right of the FireFox window, click the <strong>Show All</strong> button</li>
<li>Then in the form below you will see headings like <strong>Preference Name</strong>, <strong>Status</strong>, <strong>Type</strong>, and <strong>Value</strong>. Click on Value which will sort the below information based on the <strong>Value</strong> column</li>
<li>Now use the scroll bar to scroll thru this info looking for Yoog or Yoog search. Do you see it in this list? Just take note.</li>
<li>Now to the right of the FireFox URL Address box there should be a button used to manage search engines.</li>
</ul>
<ul>
<li>Click the download arrow and select <strong>Manage Search Engines</strong></li>
<li>Look for<strong> Yoog</strong> and select it. Then click the <strong>Remove</strong> button.</li>
<li>Now right click your Start button in the Windows tray and select Explore to open up Windows Explorer.</li>
<li>Navigate to the<strong> C:\Program Files\Mozilla Firefox\searchplugins </strong>folder. Locate the one for Yoog or any others you don&#8217;t want and right click on it and select Delete.</li>
<li>Also navigate to the below folder and make sure nothing for Yoog appears. Replace <strong><span style="color: #800080;">UserName </span></strong>with your actual user account name. If you see another searchplugins folder, look in it for anything from Yoog and delete it.<strong><span style="font-size: small;"><span style="color: red;"> Note</span></span></strong> that the default.zdt folder may have different name that looks like random characters (for example like <strong>1op3lem4.default</strong> )
<ul>
<li>C:\Documents and Settings\<span style="color: purple;"><strong>UserName</strong></span>\Application Data\Mozilla\Firefox\Profiles\default.zdt</li>
<li><span style="color: red;"><strong>NOTE:</strong></span> If using Vista, the folder will be more like the below:
<ul>
<li>c:\users\<strong><span style="color: #800080;">UserName</span></strong>\AppData\Roaming\Mozilla\Firefox\Profiles\default.  zdt\</li>
</ul>
</li>
</ul>
</li>
<li>Empty your Recycle Bin</li>
<li>Reboot in normal mode and see if you still have problems with Yoog or not also check in the Filters/Value column like above to see if Yoog is now gone.</li>
</ul>
<p><strong>Internet Explorer</strong></p>
<ul>
<li>Click the down arrow on the search engines box.</li>
<li>Then click the Change Search Defaults selection</li>
<li>If you see Yoog in the list, select it and then click the Remove button.</li>
<li>Now from IE, click <strong>Tools,</strong> <strong>Manage Add-ons&#8230;</strong></li>
<li>Scroll thru the <strong>Enabled </strong>list looking for <strong>globaladsolution</strong> and <strong>globaladsolution browser enhancer</strong> and select them (one at a time) and then click the<strong> Disable</strong> radio button to move them into the Disabled list. Under the File column, write down any file name listed. Normally a DLL file. Then click OK to the prompt about disabling this addon. Then click OK to close the Manage Add-ons window.</li>
<li>Reboot in normal mode</li>
<li>Search for the DLL file you sway above (possibly it is in your C:\Windows\system32 folder. Delete the file if found.</li>
<li>How are things working now?</li>
</ul>
<p><strong>For IE6:</strong></p>
<ul>
<li>Click <strong>Tool</strong>,<strong> Internet Options</strong>, Programs, and click the<strong> Reset Web Settings</strong> button</li>
<li>Now click the <strong>Manage Add-ons </strong>button</li>
<li>Scroll thru the <strong>Enabled </strong>list looking for <strong>globaladsolution</strong> and <strong>globaladsolution browser enhancer</strong> and select them (one at a time) and then click the<strong> Disable</strong> radio button to move them into the Disabled list. Under the File column, write down any file name listed. Normally a DLL file. Then click OK to the prompt about disabling this addon. Then click OK to close the Manage Add-ons window.</li>
<li>Reboot in normal mode</li>
<li>Search for the DLL file you sway above (possibly it is in your C:\Windows\system32 folder. Delete the file if found.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/how-to-remove-yoog-search-toolbar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make any application portable</title>
		<link>http://xptweak.net/how-to-make-any-application-portable/</link>
		<comments>http://xptweak.net/how-to-make-any-application-portable/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 21:38:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[thinapp]]></category>
		<category><![CDATA[usb portable]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=232</guid>
		<description><![CDATA[Nowadays with large usb drives it is very convenient to bring all your favorite apps on a usb stick and using them without the need to install them over and over again. There is a great software from VMware called ThinApp and it is used for application virtualization solution. As with similar products from other vendors, it is able to execute applications without them being installed in the traditional sense by virtualizing resources such as environment variables, files and Windows Registry keys. The virtual environment presented to the client is ...]]></description>
			<content:encoded><![CDATA[<p>Nowadays with large usb drives it is very convenient to bring all your favorite apps on a usb stick and using them without the need to install them over and over again. There is a great software from VMware called ThinApp and it is used for application virtualization solution. As with similar products from other vendors, it is able to execute applications without them being installed in the traditional sense by virtualizing resources such as environment variables, files and Windows Registry keys. The virtual environment presented to the client is a merged view of the underlying physical and virtual resources, thereby allowing the virtualization layer to fool the application into thinking that it is running as if it were fully installed. There are certain limitations to the programs which can be made portable:</p>
<ul>
<li>Any software that requires a device driver to function</li>
<li>Software with copy protection based on hardware</li>
<li>Software already bundled with Windows and not available as a separated package (like Windows Picture and Fax Viewer)</li>
<li>Any software that cannot run on the underlying operating system due to memory-related application compatibility issues (e.g. Applications that fail Heap Protection under Windows Vista)</li>
</ul>
<p>Anyway here are the steps to make a portable program with ThinApp:</p>
<ol>
<li>Set up a XP Virtual Machine</li>
<li>Install VMware ThinApp in the Virtual Machine</li>
<li>Run &#8220;Setup Capture&#8221;</li>
<li>After running Setup Capture, it asks to install the application: install the software you want to make portable</li>
<li>Reboot if required (don&#8217;t worry Setup Capture will start next time the Virtual Machine boots up)</li>
<li>Customize the options of your application (accept licenses, disable &#8220;tips of the day&#8221;, etc&#8230;)</li>
<li>After doing the above, close you application and run &#8220;Setup Capture&#8221; again (it might be already open)</li>
<li>Click &#8220;Next&#8221; until you get to the &#8220;post install scan&#8221;: wait a little&#8230;</li>
<li>Choose the executable you want to be the main container (for example: Firefox.exe in case of Firefox, this will be the file to contain all the data, the other files will just be shortcuts that link to it&#8230;)</li>
<li>Choose the inventory name: the name of your application is a good choice and click &#8220;next&#8221;</li>
<li>In this screen you are given the option to choose if you want the app to store it&#8217;s data in the user profile (this way an application is &#8220;tied&#8221; to a Windows installation) OR locally (on the folder where the portable exe is), use the second option if you want the app to be 100% portable and to use it in a USB Flash Drive, and click &#8220;next&#8221;</li>
<li>Choose the compression type (&#8221;Fast compression&#8221; recommended) and click &#8220;next&#8221;</li>
<li>Choose the &#8220;Isolation Mode&#8221; (the default one is OK) and click &#8220;next&#8221;</li>
<li>Click &#8220;Build Now&#8221;</li>
<li>You can now go to the project folder by clicking &#8220;Browser Project&#8221;</li>
<li>The portable executable of the application is the the &#8220;bin&#8221; folder</li>
<li>Copy the file out of the Virtual Machine (you can use a USB flash Drive for that)</li>
<li>Test if the packed application can run on your PC</li>
</ol>
<p>Now you can bring your favorite programs on a usb stick and use them everywhere.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/how-to-make-any-application-portable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the Computer Management Console for security</title>
		<link>http://xptweak.net/using-the-computer-management-console/</link>
		<comments>http://xptweak.net/using-the-computer-management-console/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 18:19:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[computer management]]></category>
		<category><![CDATA[device manager]]></category>
		<category><![CDATA[services]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=226</guid>
		<description><![CDATA[There are lots of ways you can use the Computer Management Console to protect your PC. For instance, you can use the Event Viewer to view security audits, which can inform you of failed logon attempts, password lockouts, and other security issues. You can view system failures such as failed printing requests, failed connection requests, and similar errors and warnings. Paying close attention to these events can help you uncover security threats like logon attempts that happen when you are not on the PC.
The Users folder (in the computer Management ...]]></description>
			<content:encoded><![CDATA[<p>There are lots of ways you can use the Computer Management Console to protect your PC. For instance, you can use the Event Viewer to view security audits, which can inform you of failed logon attempts, password lockouts, and other security issues. You can view system failures such as failed printing requests, failed connection requests, and similar errors and warnings. Paying close attention to these events can help you uncover security threats like logon attempts that happen when you are not on the PC.</p>
<p>The Users folder (in the computer Management Console) shows all of the users configured for the computer and their properties (which can be changed from this console). You can also access Device Manager, view properties for removable storage devices, run Disk Defragmenter, and manage the hard disks on your computer, all from this single console. Double-click any item to see additional information about the message. You may find out from the Event Properties window that someone tried to log on at some time when you weren’t at the computer. The best way to become familiar with the Computer Management console is to browse through its options. Many will look familiar, including Disk Defragmenter, Device Manager, and Services:</p>
<p>1. Open the Control Panel, and if you are using Category view, click Performance And Maintenance. Click Administrative Tools. (If you can&#8217;t find this icon, perform a search for the Administrative Tools folder.)</p>
<p>2. Open Computer Management.</p>
<p>3. To view Event Viewer, Shared Folders, Local Users And Groups, Performance Logs And Alerts, and Device Manager, expand the System Tools tree in the left pane, and then expand and/or click any item in the list to access it.</p>
<p>4. Access the Security log; double-click any item to view more information about it.</p>
<p>5. Expand Local Users And Groups and the Users folder to view the users who have access to your computer. Double-click any users you’ve created to change the options and requirements for that user.</p>
<p>6. Click Device Manager under the System Tools console to view the console and make changes to the computer’s configuration.</p>
<p>7. Expand the Storage tree to view Disk Defragmenter or the Disk Management consoles.</p>
<p>If you become interested in setting up users and groups, configuring performance logs and computer alerts, or working with shared folders among computers on a workgroup, there are lots of help files on the subject. Simply click Help, and click Help Topics. In the Help window, choose Computer Management.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/using-the-computer-management-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing A Wireless LAN</title>
		<link>http://xptweak.net/securing-a-wireless-lan/</link>
		<comments>http://xptweak.net/securing-a-wireless-lan/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 17:45:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[backtrack]]></category>
		<category><![CDATA[mac address]]></category>
		<category><![CDATA[ssid]]></category>
		<category><![CDATA[wep]]></category>
		<category><![CDATA[wlan]]></category>
		<category><![CDATA[wpa]]></category>

		<guid isPermaLink="false">http://xptweak.net/?p=220</guid>
		<description><![CDATA[A wireless network, unlike a wired network, allow users to work in a more convenient and flexible style while also reducing the costs. Wireless networking offer many benefits but at the same time creates a number of security issues that must be addressed. The same work convenience that makes wireless networking so good can also allow hackers to attack the network easily. By securing the wireless network, you can close many doors for hackers to access the network resources and services. These several ways, if implemented, will create a secure ...]]></description>
			<content:encoded><![CDATA[<p>A wireless network, unlike a wired network, allow users to work in a more convenient and flexible style while also reducing the costs. Wireless networking offer many benefits but at the same time creates a number of security issues that must be addressed. The same work convenience that makes wireless networking so good can also allow hackers to attack the network easily. By securing the wireless network, you can close many doors for hackers to access the network resources and services. These several ways, if implemented, will create a secure enough wireless network.<span id="more-220"></span></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>WPA encryption</strong></p>
<p>Among the different security standards in place for wireless networking, WEP is the most widespread and also severely flawed. Although WEP supports 128 bit encryption, it is identified to have many dangerous holes. A hacker would need only a few hours to read enough traffic to generate the required WEP key to get access to the wireless network and if hacking tools such as BackTrack is used, it makes the job even easier for a hacker. Since WEP Encryption is easier to crack, it is recommended WPA encryption is used instead.</p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>Coverage</strong></p>
<p>Unauthorized use of your wireless signals is one of the biggest problems with wireless networks because these networks have ability to be used outside your building. Carefully position your wireless device antennas in such a way that access to signals by public, outside your premises is minimized. This helps prevent people from even having a chance to hack your wireless connection. The less exposure of signals to the outside world, the less chance the network will be hacked and used illegally for inappropriate activities.</p>
<p><strong></strong></p>
<p><strong>Default SSID (Service Set Identifier</strong>)</p>
<p>SSID is a 32bit character identifier in the header of data packets sent over a Wireless LAN. It acts as a password, elementary identification and authorization mechanism for access to the network. Buying and using a new wireless device such as Access point without changing its default SSID could give potential to hackers to access the network, therefore, it is important to change it to something new and unique, it is a good idea to periodically change the SSID on all the wireless devices to further strengthen security.</p>
<p><strong></strong></p>
<p><strong>Filters</strong></p>
<p>Filtering so that only the owned MAC addresses are allowed access to your network can help to strengthen the security of a wireless network. Filtering consists of limiting the devices that can connect to the network. It is done by keeping and maintaining a table of MAC addresses of approved wireless devices.</p>
<p><strong></strong></p>
<p><strong>Secure channels</strong></p>
<p>Software and services that provide point-to-point encryption such as SSH, SSL and VPN should be used instead of direct network connections, FTP or telnet, whenever possible.</p>
<p><strong></strong></p>
<p><strong>Firewall</strong></p>
<p>A network firewall protects a computer network from hacking and cracking attempts. A firewall detects unauthorized access to the network then blocks it. It is a &#8216;must-have&#8217; security product for any computer network. Both hardware and software firewalls are available.</p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>Passwords</strong></p>
<p>Simple passwords can be cracked easily be hackers, make sure you set a robust user name and password for entry into the router settings page and also for all user accounts.</p>
<p><strong>Conclusion</strong></p>
<p>Although it is impossible to completely secure a wireless network since MAC addresses can be spoofed with sniffers, SSID can be hacked and tools available to hijack SSH and SSL sessions can be used, but still the above-mentioned tips can help to keep most of the hackers away from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://xptweak.net/securing-a-wireless-lan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
