Tuesday, March 10, 2009

speed up


this is trick to speed up

Monday, March 9, 2009

new mobile office settings for china mobile phone


china mobile are used in large number in india but most of these phones are not compatible with indian networks that provide gprs facilities.so in this post lets see about how to configure china mobile manually so that we are able to use risk free airtel mobile office gprs plans.to activate gprs in your china mobile phone perform the following operations.

first click SERVICES icon in main menu==>DATA ACCOUNT==>GPRS==>EDIT any existing account==>

Account Name--> MO

APN-->airtelgprs.com

Auth. Type-->Normal

save all the settings.


Come back to SERVICES==>WAP==>SETTINGS==>EDIT PROFILE==>EDIT any existing account==>

Rename Profile as==> Mobile Office

Homepage==>Google

data account==> MO (which we created previously)

Connection Type==>

Here u find three option

a) Connection-oriented

b) Connectionless

c) HTTP

choose a) Connection-oriented==>

IP Address==>202.056.231.117

Security==> off

Again save all the settings and click BACK button and choose "Activate Profile"

Come back to SERVICES==>WAP==>Homepage

and you are done you can use airtel mobile office in china mobile phones by configuring them manually. hi buddy , the above trick to instal airtel mobile office settings for ypur china mobile phone ...

Friday, March 6, 2009

windows tricks 2009

Getting in at startup

Okay, so you’re trying to boot up a computer, but it’s password protected! What can we do now? We can do any number of things. I will cover 3 ways to get in here though.

First: Break in from prompt
The first way discussed here is by breaking in using ms-dos. You can either restart in ms-dos mode or when Windows is starting up hit the f8 button. The f8 button may or may not work depending on if the owner configured his system right. When you hit the f8 button you should get a list of ways to boot up. Chose boot up in MS-DOS mode. Once DOS is loaded type “cd c:\windows”. Now type “rename *.pwl *.npa”. Once you’ve done this reboot the machine. When it asks for a password enter whatever you want. What you did was rename the password file so Windows rewrites the pass file when it asks for the pass. Now you can go back into DOS and type “rename *.npa *.pwl”. Now everything is the way it was when you found it. The really cool thing about this concept is that most people don’t think to see when a file was last edited .

Second: Boot into safe mode
When Windows is booting hit the f8 key like you did above, but this time chose boot into safe mode. I know everything is ugly, but you have almost complete control of the system. I’ve had to use safe mode when I almost destroyed my computer a few times .

Third: Get in regular mode with no pass
When you boot Windows up, and you see that annoying login form. You don’t know the password, and you don’t feel like booting into safe mode or ms-dos mode. When the window pops up asking you for your login and password hit the keys “shift+escape”. Windows should now go on as planned. Note: (Make sure you log out when done. They can see that you didn’t login with a name. .


Changing the boot up pics to whatever you want
Well this is really not that hard. I guess Microsoft thought they could hide the files from people. All you need to do here is open up ms-paint by way of the accessories. Once it’s open click File then Open. Go to the C:\ directory and open the file “logo.sys”. Now that it’s open make sure you don’t make the picture any wider or change any of the attributes. If you do change the attributes you could damage the files. Okay now that you’ve made your startup screen the way you wanted it. Let’s edit the “Windows is shutting down” screen. Click file then open, and go to the C:\Windows directory. Open up logow.sys now you can edit away on this one. When you are done editing that file you can edit the “It is now safe to turn off your computer” screen by opening logos.sys in the C:\Windows directory.


Fun with the screen saver
Here is an interesting little trick. Right click on the desktop and go to properties. Now go to the screen saver panel. Chose the 3d text for the current screen saver. Click settings, now change the text to “volcano” without “s. Watch names of volcano’s appear on your screen.


MS-DOS tools
Tracert:
Usage: Trace the route of an ip on a network.
Example: tracert somebody.com

Ping:
Usage: Check for down computers on a network, or checking how well the computer is doing.
Example: ping somebody.com

Telnet:
Usage: Connect to a TCP port on a remote host.
Example: telnet localhost 25

Netstat:
Usage: Show open ports on your computer. You can see if anyone is connected to the port also.
Example: netstat –a

FTP:
Usage: Connect to a remote FTP server.
Example: ftp downloadfrom.com

Route:
Usage: See if you can figure this one out : )
Example: route

Arp:
Usage: See if you can figure this one out : )
Example: arp

Choice:
A good tool? Nah : ) I was browsing around one day and found choice.exe. Have some fun with this lol I did huh… I better get out more
Example: choice Want to play a game


Telnet
First off we will cover how to connect to a shell server. The simple command you run in ms-dos prompt or in the run window is “telnet host 23”. This basically means open telnet to the address host on port 23 (the standard telnet port). Once you connect you should get a prompt like this…

Mandrake Linux 7.2

login:

I know that’s not what it really looks like, but you get the idea. When it comes up with “login: “ you enter your username. Once you enter a user name it prompts you for a password.

Mandrake Linux 7.2

login: root

password: ********

Welcome!
[root@localhost /root]$

That’s what it would look like roughly if the login succeeds : ). However if it fails you get something like this.

Mandrake Linux 7.2

login: root

password: *****

Incorrect Login!

login:

You can normally enter a wrong password three times before it kicks you off the system. If you don’t have a username and password then you can sometimes guess them or crack them. You can also exploit a vulnerability say on SMTP. I don’t advise you doing so though . Once you are logged in you need to know how to run linux commands. I will cover some more commands in another tutorial some day, but here a just a few.

cd - change directory (example: cd /home)
ls - LiSt the files in the current directory.
pwd - show the current directory. (example: pwd) returns “/home”
more - display the contents of a file. (example: more passwd)

I know you can’t do much with just those commands, but you get the idea.

Spoofing emails
You can also spoof emails with telnet. Go into MS-DOS and type “telnet host 25” (port 25 is the standard SMTP port). Once you login you should see something like this

220 logs-wl.proxy.aol.com ESMTP Sendmail 8.10.0/8.10.0; Tue, 17 Sep 2002 17:33:34 -0400 (EDT)

Once you see that type “helo ”. The server will respond with a nice greeting message : ). Now type “mail from: ” then “rcpt to: ” now type “data”.
You can now start entering the body of the email. Just put a “.” on a line by itself without the “s. If you want to include a subject then right after you type data type “Subject: subjectdata”.
The tool on the site will automate this process, but you have to specify the server to use.

Browse Web Sites
Okay open up MS-DOS and type “telnet victim.com 80” (port 80 is the standard web server port). Once connected you won’t see a prompt. You just start entering commands from here. To get the mainpage on a server type “GET / HTTP/1.1 (enter enter)” don’t type enter enter, but hit the buttons . So for just browsing a web page with telnet type “GET /page HTTP/1.1”(enter enter) I don’t suggest doing this with telnet because it auto disconnects because HTTP doesn’t maintain a connection until you are done. You can download the HTTP tool from the site and browse with that.


FTP
Once again open up MS-DOS this time type “ftp site”. After it connects you should see a message like this.

Connected to site.
220 site FTP Server ready
User (sitenone)):

Once you see this type in the user name “anonymous”. It will now prompt for a password. You can either enter a fake email or none at all just test to see which works. You will then see a message like this.

230 Anonymous access granted, restrictions apply.
ftp>

You are now free to browse their site as you wish. Some people even give write access to anonymous (on accadent).

Useful Commands
ascii – change mode to ascii for transfers. (Use this when downloading/uploading text files.)
binary – Change mode to binary for transfers. (Use this when downloading/uploading executable files.)
bye – Exit.
cd – change directory.
delete – delete a file
dir – dos style file listing.
get – retrieve a file.
help – display help for commands.
lcd – change the local directory.
ls – list files/folders
mdelete – delete multiple files
mdir – list contents of multiple directories
mget – get multiple files
mkdir – make directory
mput – upload multiple files
open – make new connection
put – put a file on the server
pwd – show current directory
quit – exit
quote – send a specific command to the server
recv – get a from the server
remotehelp – get remote helpfiles
rename – rename a file/dir
rmdir – delete a directory
send – send a file
user – change login name

Thursday, March 5, 2009

nokia 6151 mobile phone spefications

Genome # 7628: on Nov. 13th, 2006 09:46 (Paris time)
Mobile Revision: N/A
User Agent: Nokia6151/2.0 (03.56) Profile/MIDP-2.0 Configuration/CLDC-1.1 UNTRUSTED/1.0
Browser User Agent:
User ID — Handset ID: N/A — N/A
Spoken language: Unknown
From Network: — StarHub WAP Applications
Application's Developer: ? ver.: ?

MobileZoo: 1.3.5 for MIDP2

megaupload + rapidshare combination 2009

MEGAUPLOADING RESTRICTION:


IN MEGAUPLOADING IT RECCUERS SOME PROCESS TO INSTALL OR DOWNLOAD THIS PROBLEM WOULD BE SOLVED BY SOME IP'S OR PROXIES FROM OUTSIDE THE WORLD.IT CAN ALSO BE OVERWHELMED BY APPLYING TWEAKS OR SOME INTERNET BROWSER IN YOUR DEKTOPS.IT ALSO HELPS TO AVOID USING ALEXA TOOLBAR TO DOWNLOAD.


Mozilla Firefox 2.0.0.5 tweak:

1. Go to address bar and type about:config . Press enter

2. Look for general.useragent.extra.firefox using the filter and double click on it

3. Change the default text with this: Firefox/2.0.0.5 MEGAUPLOAD 1.0

Windows Registry tweak (for Internet Explorer 7 and Internet Explorer 6):

1. Open run in the start menu and type regedit. Press enter.

2. in Registry Editor window, go to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Setting\5.0\User Agent\Post Platform]

3. Right click on ‘Post Platform’ and add new string value. Enter “Alexa Toolbar”. Save the registry and restart your computer.

Note: For IE 7.0 the “Post Platform” will be located at:

[HKEY_LOCAL_MACHINE\SOFTWARE\Mcft\Windows\CurrentVersion\Internet Settings\User Agent\Post Platform]

THIS IS 100% WORKING TRICK USE THIS TRICK AND GET REVEAL FROM THE PROBLEMS OCCURS IN RAPIDSHARE.

change the font in nokia mobile phones

CHANGING FONTS IN MOBILE GIVES YOU SOME EXTRACT AND GOOD LOOK TO YOUR MOBILE PHONES.IT IS EQUAL TO DESIGNING YOUR MOBILE PHONE OS.HOW IT IS WORKING IT MOSTLY WORKS IN NOKIA SYMBIAN BASED MOBILE PHONES. IT IS VERY EASY AND SIMPLE TRICK TO WORKOUT WITH YOUR MOBILE PHONES.LET US SEE HOW THIS WORKS.I HAVE DESCRIBED IN DETAIL ABOUT CHANGING FONTS IN MOBILE PHONES.

THINGS NEEDED FOR CHANGING FONTS:



PC
data cable
card reader ( if possible)
Mobile phone
X-plore
SecMan
Don't forget to take your favorite font


. i am choosing my favorite old English font

In your PC browse C:\WINDOWS\Fonts\OLDENGL.TTF (choose a font here)
copy the font to the desktop rename the font as ( NOSNR60.ttf , NSSB60.ttf,NSTSB60.ttf)
Now let we change the font

Normal mobile ( Not hacked)

To install font
(without card reader)
1. Connect your phone via mass storage
2. Open "resource" folder on memory card
3. Create "fonts" folder
4. Copy the files into that folder
5. Restart your phone
To remove font or installing new font
1. Turn off your phone
2. Remove memory card
3. Turn on your phone and wait for it until it goes on standby
4. Insert memory card
5. Wait for a minute
6. Connect your data cable and choose mass storage
7. Open the "fonts" folder
7. Delete or replace the set of fonts
8. Restart

For Hacked mobile
To install font
connect your mobile via PC suite and copy the fonts ( NOSNR60.ttf , NSSB60.ttf,NSTSB60.ttf) to your memory card. Here after no need to connect your mobile with PC

Due to security reasons we cannot create a fonts folder inside the resource folder.
open the Secman to break the security
TurnPlat.security ON
install root Certificate
open X-plore
you will see the old English font ( NOSNR60.ttf , NSSB60.ttf,NSTSB60.ttf)
Select all the three files
Copy the three font files by pressing the key 1

Now Navigate to the Resource folder
create a directory inside the resource folder

Create a directory called "fonts"

Paste all the three font files that we copied previously
Restart your mobile

Now the Old English font is applied ( Success )


To remove font or installing new font

Turn off your phone
Remove memory card
Turn on your phone ( your mobile should show the default font )
break the security using SecMan
Now insert your memory card.
using the X-plore Delete the whole font directory under resource Directory

samsung mobile phone secret codes 2009

SGH-600 : *2767*3855#

unlock samsung S100, S300, V200 : *2767*7822573738#

---A300, A800 : *2767*637#

---X100 : *2767*688#

unlock samsung cellphone sgh-600 mobiles : *2767*3855#

s100,s300,v200 : *2767*7822573738#

s105 mobiles : *2767*7822573738#

After the phone reboots enter the following unlock code : #0111*00000000#

Personalisation cancelled should be displayed. cellular phone is now unlocked free.

a800,a300 mobiles : *2767*637#

t100 : *2767*media#
*2767*full#
*2767*cust#
*2767*wap#
*2767*stackreset


for example stackreset = 7822573738

e700 : *2767*688#



Here some more secret codes for samsung T100 mobile

*#8999*228# -> Battery status (capacity, voltage, temperature)
*#8999*246# -> Program status for samsung mobile phones
*#8999*289# -> Change Alarm Buzzer Frequency
*#8999*324# -> Debug screens of cellular phone
*#8999*364# -> Watchdog
*#8999*377# -> EEPROM Error Stack
*#8999*427# -> Trace Watchdog
*#8999*523# -> Change LCD contrast
*#8999*544# -> Jig detect
*#8999*636# -> Memory status for samsung phone
*#8999*746# -> SIM File Size
*#8999*778# -> SIM Service Table
*#8999*785# -> RTK (Run Time Kernel) errors
*#8999*786# -> Run, Last UP, Last DOWN
*#8999*837# -> Software Version of new cellular phone
*#8999*842# -> Test Vibrator
*#8999*862# -> Vocoder Reg
*#8999*872# -> Diag
*#8999*947# -> Reset On Fatal Error
*#8999*999# -> Last/Chk
*#8999*9266# -> Yann debug screen (=Debug Screens?)
*#8999*9999# -> Software version
*0001*s*f*t# -> Changes serial parameters (s=?, f=0,1, t=0,1) (incomplete)
*0002*?# -> unknown
*0003*?# -> unknown

IF YOU NEED ANY MORE SECRET FOR YOUR LATEST MOBILE VERSION OF SAMSUNG MOBILES.POST ME A COMMANT.


all samsung s300 and v200 and s500 : Free unlocking by codes

samsung mobile phone s300 and v200 :

*2767*63342# and press green button
*2767*3855# and press green button of samsung cellular phone
*2767*2878# and press green button
*2767*927# and press green button
*2767*7822573738# press button of samsung cellphone


samsung mobile phone s500 : *2767*688#

cingular mobile tricks 2009

this is a post below is about the cingular mobile network free wap or gprs settings that works on all gprs enabled mobile phones.to activate gprs manually in your mobile phone follow these steps and configure your mobile phone for cingular gprs



at first Press the Menu Key.
Scroll to and select WebAccess.
Scroll to and select Web Sessions.
scroll to new entry and press select
name this entry Cingular
Scroll to and select Edit.


enter these settings in your mobile...please note that these settings are case sensitive

Name: Cingular
Homepage:http://device.home
Service Type 1: WAP
Gateway IP 1: 66.209.11.61
Port 1: 9201
Domain 1:
Service Type 2: WAP
Gateway IP 2:
Port 2: 9201
Domain 2:
DNS 1:
DNS 2:
Timeout: 15 minutes
CSD No.1:
User Name 1:
Password 1:
Speed (Bps): 9600
Line Type 1: Modem
CSD No. 2:
User Name 2:
Password 2:
Speed (Bps) 2: 9600
Line Type 2: ISDN
GPRS APN: wap.cingular
User Name: WAP@CINGULARGPRS.COM
Password: CINGULAR1



Once the browser settings are configured,

please select it as the active web session and you will be able to use gprs in cingular mobile network.:



Press the Menu Key.
Scroll to and select WebAccess.
Scroll to and select Web Sessions.
Scroll to "Cingular", then press the Menu Key.
Select Set Default.

add more friends to your orkut account

INCREASING FRIENDS IN ORKUT IS THE MOST WANTED ONE AMONG YOUNGSTERS THEY INCREASE AS MUCH FRIENDS THEY CAN INCREASE TO OVERTAKE THEIR FRIENDS THIS BECAME COMPETTION NOW A DAYS. SO THOSE MEMBERS FOLLOW THE TRICK WHICH I HAVE STATED.THIS WOULD VERY USEFUL TO INCREASE TO YOUNGSTERS.



==> Add yourself in any fraud account you have.
==> Log into the fraud account.
==> Go to http://www.orkut.com/Friends.aspx
==> Put cursor on the “fan” icon. You will see at the status bar of your
browser (at the bottom of your browser) something like
” FRUS0016756489/US209709881 “. Write down that thing in a copy.
==> Now write this code in the address bar:

javascript:i=0;for(i=0;i< =100;i++){sendRequest (”/SetKarma.aspx?cat=”+0+”& val=”+”3″+”&gid=”+”FRUS0009505081/US0014188150″);};void(0); ==> Change “FRUS0009505081/US0014188150″ with the one you have
written in the copy.
==> Press Enter.

NOW YOU CAN INCREASE YOUR FRIENDS NUMBER IN ORKUT AS MUCH AS YOU CAN ENJOY USING THIS TRICK.

use relaince expired sim cards for dree sms

MOSTLY PEOPLES WONT USE THE EXPIRED SIM CARDS THAT MEANS REJECTED SIM CARDS OR INVALID SIMCARDS .SOMETIMES THERE ALSO TRICK OCCURS.

I HAVE FOUND A TRICK IN EXPIRED SIM OF RELIANCE MOBILES.
TO SEND FREE SMS WITH SMS SETTINGS FOLLOW THE GIVEN BELOW TO USE THE TRICK.


1>Service centre No:- +919863002222
2>Validity period:- Maximum
3>Message type:- Text
4>Reply path:- Off
5>Delivery report:- Off

airtel broad band now 256 to 2mpbs speed

HERE I HAVE POSTED IN DEATAIL ABOUT INCREASING THE SPEED OF AIRTEL BROAD BAND THIS WOULD BE VERY USEFUL.SO READ CAREFULLY AND USE THIS TRICK YOU WILL BE DONE ON WORKING OUT THIS TRICK

#All You need is a Airtel Broadband Connection.

#Now You have To do a little Social Engineering.

#Find any Airtel No. From your Neighbor hood who have Airtel Broadband Connection.

#Now call at 197 and ask Them details for that Airtel no. Like " NAME of the Owner' & " Address Of The owner"

#Now you Have Airtel no Name Of the Owner Address of the owner

#Now call Airtel Customer Care (4444121)

and ask them for Account no. Of the Airtel number providing them The details of the owner that you have acquired in the previous Step..

Now you have:

Airtel no.
Name of the Owner
Address of the owner
Account no of the owner

By default Airtel Keeps

Airtel no : as user name Account no: Password

NOW all you gotta do is

#Go to your Modem/router

By typing


192.168.1.1


# Default user and pass= admin & password
or the one you have changed.

# Now there in the left bar click on WAN and then Click on Edit

See the pictures for more details


# Click on next until you get the following screen

Now in the username and password field enter the following:

# PPP Username : 123xxxxxxxx_dsl@airtelbroadband.in

Note 123 is the state code...and xxxxxxx is the Airtel phone no that you have chosen .

Noe in the password field type the account no.


Then save the settings and Reboot.

If this number is working fine then it's great else try to get another no.

Out of 10 , 8 number works in the same fashion


Now how to get 2 MBPS speed??

I'm sure many of you are aware of Speed on demand from airtel.

Go to this page: CLICK HERE


And now Enter the Username and password That you have entered in the router.

And click on 2MBPs and activate it.

Bingo! Now you are using 2 MBPS Airtel Connection..!! :) Without paying any extra amount.

THIS TRICK REALLY WORKS IN MY PLACES SO IF ANY PROBLEM OCCURS IN USING IN YOUR HOMETOWNS POST ME A COMMANT I SHALL HELP YOU.

send national free sms through airtel for free

Since there is many way sending free sms through airtel connection. But many tricks wont work in certain places.I have found that now we can send 50 free sms for 5rs. In order to workout this you have to activate separate service. This service can be used only by airtel users and it doesnot works with airtel life time users. What you have to do is just send SUB5 to 170 and a short while service will activated and start using the service.

rapid shre time saving trick 2009

Rapid share:
rapid share is the most probably using all over the world. But what it is the main disadvantage is that it takes almost a minute to make a download. So in order to avoid this i have found a trick. Which is almost a old trick but works with some ip address.
What you have to do is just copy the code given
open command prompt(run->cmd).
Paste your content
then start using rapid share
@echo off
echo ipcofig/flushdns
ipconfig /flushdns
echo ipconfig /release
ipconfig /release
echo ipconfig/renew
ipconfig/renew
exit
try out the above rapidshare hack which helps you to hack rapid share without any time limit

Tuesday, March 3, 2009

nokia new phones

All of them have been unveiled just a few hours ago, and, as Nokia puts it, they offer a mix of “functionality and user experience required in today’s hectic times, with premium designs and materials that make them the most beautiful, well built and competitively priced offerings available.”

First on the list is Nokia 6700 classic, a candybar that comes to replace the popular Nokia 6300 (launched way back in 2006).

I must say, the 6700 (pictured above) looks really nice, and it will probably sell well. Its features were not fully unveiled, but we do know that they include a 5 MP camera, A-GPS and “high speed data access”.

Nokia 6700 will be available in the second quarter of 2009, for an estimated retail price of €235 (around $310).

Nokia 6303 classic, seen just below, is also a candybar that will ship at about the same time with the 6700, but for a lower price: €135 ($178).

The 6303 offers a 2.2 inch display, a 3.2 MP camera, pre-loaded Nokia Maps, a 3.5mm headset jack and “excellent battery performance”.

Nokia 2700 classic, the third new Finnish phone for today, is a cheap device that will cost you only €65 ($85).

Planned to be released in Q2 2009 too, the 2700 features a 2MP camera, integrated music player and MicroSD card support, up to 2GB




watch u r tv on u r computer for live

Live TV Links:
Sun TV - http://www.isaitamil.net/Sun_europe
Sun TV - http://www.isaitamil.net/SunTv

Vijay TV - http://isaitamil.net/isaitamil.net_vijaytv

UserID: isaitamil.net
Pwd: isaitamil.com

Jaya TV - http://www.techsatish.tv/2007/06/jaja-tv-india.html
K TV - http://www.techsatish.tv/2007/04/ktv-india.html
Raj TV - http://www.techsatish.tv/2007/05/raj-digital-india.html
Raj TV - http://www.techsatish.tv/2007/05/raj-tv-india.html

click to see u r favorite channels

new sarvam music downalod 2009


Arya will be acting in Sarvam after his movie Naan Kadavul with Bala. The film will be produced by Ayngaran International.Sarvam has music by Yuvan Shankar Raja and will be mostly shot in Munnar. The movie will start rolling in March. Cameraman Nirav Shah will handle cinematography.


There is another important hero with negative character in this film Sarvam for
which director Vishnu has approched Malayalam actor Mohanlal.


Actress Trisha has been signed to act opposite Arya in the next venture of director Vishnuvardhan titled Sarvam.


With ths success of his stylish Billa, this movie also is expected to be equally good in the style quotient. Trisha was heard saying in a recent interview that she would like to do a glamour role in Tamil as the one that Nayantara did in Billa. With her being signed for Sarvam, looks like her wish is going to be fulfilled soon.

After this movie, Vishnuvardhan will be directing Ajith again under Shivaji productions.

click to download song1

click to download song2

click to download song3

click to download song4

click to download song5

click to download song6

anti virus remover 2009

This post is about how to remove autorun.inf virus from your usb pendrive or computer.this virus really annoys us..this virus has been widely spread these days and it has become very common that every pen drive we use will be infected by this virus. This Recycler virus / BV:AutoRun-G[Wrm] is very annoying one and even formatting the pen drive will not remove the virus. Though antivirus software is able to identify, it cannot remove the virus completely. If you delete this manually, it will again create itself and none of the virus removal tricks could work to resolve the problem

1.Download flash disinfector to your computer and save in a folder other than windows drive.

2.Now run flash-disinfector tool ,it asks to insert your flash drive click ok and insert your flash drive.

3.The desktop icons will be completely disappeared ,wait patiently until done message appears from flash disinfector.

4.After done message appears click ok.That’s it flash disinfector locked the virus not removed.



click to download flash disinfecter

anti virus remover 2009

This post is about how to remove autorun.inf virus from your usb pendrive or computer.this virus really annoys us..this virus has been widely spread these days and it has become very common that every pen drive we use will be infected by this virus. This Recycler virus / BV:AutoRun-G[Wrm] is very annoying one and even formatting the pen drive will not remove the virus. Though antivirus software is able to identify, it cannot remove the virus completely. If you delete this manually, it will again create itself and none of the virus removal tricks could work to resolve the problem

1.Download flash disinfector to your computer and save in a folder other than windows drive.

2.Now run flash-disinfector tool ,it asks to insert your flash drive click ok and insert your flash drive.

3.The desktop icons will be completely disappeared ,wait patiently until done message appears from flash disinfector.

4.After done message appears click ok.That’s it flash disinfector locked the virus not removed.
click to download flash disinfecter