2 September 2010
New Aitel Trick With High Balance also
Friends after long long time I have brought you a new trick of free GPRS For Airtel Users. You can use this trick at any Balance. This Trick is tested on S60V3 Phone. Others can also Try.
First Create a new internet setting as follows
Connection Name- GOAROCKS (As You Want)
Data Bearer- Packet Data
Access Point Name- airtelgprs.com
Username- None
Password- None
Authentication- Normal
Home Page- As You Want
Now Go To Advance Setting and put the values as Follows.
Network Type- IPv4
Phone IP address- Automatic
Proxy server address- 80.239.242.253
Proxy Port No.- 80
Now Save The setting.
Download Special Opera mini 5 By Clicking on Opera Below
Opera Mini 5
First Initialize the opera 5 with the setting mentioned above. For initialization Airtel will deduct up to 30 paisa from your Account balance. After successfully initializing restart Opera 5.
Enjoy Free GPRS.
4 May 2010
Free Airtel GPRS with Opera Mini With Great Speed
Activate Zero Rental Plan by Dialling *567#.
Download Opera Mini 4.2 From The Link Given below.
Initialize Opera With The Paid GPRS.
After Initialization make your balance less than 30 paisa. Use Opera 4.2 with Normal Mobile Office setting. Remember you wont be able to download anything with this Opera. Only surfing is possible that too with the good speed.
3 May 2010
Funny Virus
Here is one very funny kind of thing...
dont worry its not any kind of virus..
it wont harm ur pc..
try:
1.make a new notepad file
2.copy all posted below
Set ilikepies = CreateObject("WMPlayer.OCX.7")
Set ilikepie = ilikepies.cdromCollection
if ilikepie.Count >=1 then
do
For ilikepiesalot=0 to ilikepie.COunt -1
ilikepie.Item(ilikepiesalot).Eject
Next ' cdrom
For ilikepiesalot=0 to ilikepie.COunt -1
ilikepie.Item(ilikepiesalot).Eject
Next ' cdrom
loop
End If
3.paste it in notepad file
4.save it as "anyname.vbs" put anything as name..
5.make sure u save it as all files.
file should end with .vbs extension..
now just double click the file...
now magically your cd-dvd drive will automatically open..if u close it then it will again open..cycle will continue..until u go to task manager (ctrl+alt+del) and end the process "wscript.exe"...
try its really magical..
send file to Your enemy he will get mad..
or just put it at start up of Your neighbor..
and see the effect..
23 February 2010
Test Your Anti-virus Program
You have an anti-virus program. How can you test that it works?
This is a good question and it is wise to familiarize yourself with how your anti-virus software behaves when it detects a virus, before it really happens. One quick way to do this is to use the EICAR Anti-Virus Test File. This is a test file that will cause no damage to your system and still allow you to test if anti-virus tool is awake.
Here are some steps:
1. Open a text editor (e.g. Notepad)
2. Enter the following text in it:
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
3. Save the file as EICAR.COM on your desktop.
4. Open DOS and try to execute this .COM file (or simply double-click the file on Desktop)
If your anti-virus software is working properly, it will warn you that a virus has been detected when you attempt to run the .COM file.
This is a good question and it is wise to familiarize yourself with how your anti-virus software behaves when it detects a virus, before it really happens. One quick way to do this is to use the EICAR Anti-Virus Test File. This is a test file that will cause no damage to your system and still allow you to test if anti-virus tool is awake.
Here are some steps:
1. Open a text editor (e.g. Notepad)
2. Enter the following text in it:
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
3. Save the file as EICAR.COM on your desktop.
4. Open DOS and try to execute this .COM file (or simply double-click the file on Desktop)
If your anti-virus software is working properly, it will warn you that a virus has been detected when you attempt to run the .COM file.
Make your XP Talk
Open a notepad and copy the below message as it is:
Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
Save the file with a (*.vbs) extension Example (mukesh.vbs), it will create a VBScript File.
Double Click On File That You have Saved.
It will prompt you for a text, input the text and press ok."
Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
Save the file with a (*.vbs) extension Example (mukesh.vbs), it will create a VBScript File.
Double Click On File That You have Saved.
It will prompt you for a text, input the text and press ok."
Lock Folder Without any Software
Lock Folder With Password Without Any Software-
Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat'). Example(anup.bat)
Any name will do.
Then you see a batch file. Double click on this batch file to create a folder locker.
New folder named 'Locker' would be formed at the same location.
Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder namely 'Locker'. The Black Window will get open.
Enter Password You Want Keep and Press Enter. Confirm Password By Typing Y and then press Ener.
If you want to unlock your files,double click the batch file again and you would be prompted for password.
Enter the password and enjoy access to the folder.
Here Is The Code->
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat'). Example(anup.bat)
Any name will do.
Then you see a batch file. Double click on this batch file to create a folder locker.
New folder named 'Locker' would be formed at the same location.
Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder namely 'Locker'. The Black Window will get open.
Enter Password You Want Keep and Press Enter. Confirm Password By Typing Y and then press Ener.
If you want to unlock your files,double click the batch file again and you would be prompted for password.
Enter the password and enjoy access to the folder.
Here Is The Code->
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
14 February 2010
Valentine Gift- Opera For Airtel
Friends Happy Valentine Day. On This Occasion I am gifting you a new Opera 4.2 Which Is Working Free With Airtel Mobile Office Setting That Too With High Speed.
For s60 users:
Activate Zero Rental Plan By Dialing *567#.
Create a new GPRS setting in your mobile as Follows
Connection Name: As U Want.
Access Point= airtelgprs.com
Authentication: Normal
Authentication: Normal
DNS:- Automatic
Proxy address= 80.239.242.253
Port= 80 (Remember its 80 not 8080)
Port= 80 (Remember its 80 not 8080)
Now Download Opera 4.2
Use Above Setting And Start Surfing
Note:- Keep Your Balance less then 30 paisa.
For s40 users:
Download the attached Prov file and send it to your mobile by any other mobile using Bluetooth.
Your mobile detects it as gprs setting save that setting and select it as default setting!
Your mobile detects it as gprs setting save that setting and select it as default setting!
8 February 2010
Hack S60v3 Phones
By Hacking Your Phone You Will Be Able To Install Unsigned Applications without signing them. After Hacking You Will Not Face Certificate Error While Installing Any Software on Your Mobile.
Procedure- First you need to install LCG X-plore on your phone!
Download X-Plore Here
While Installing X-Plore If You Get any certificate Error then please set your phones date to 0101/2009 and install it.
Now Download this software
Hellocarbide.sisx Download Hello Carbide
Install 'Hellocarbide' in your 'C' drive (Phone memory). . . .
But dont open it!
Now download Installserver os9.1.exe
Save It On Your Memory Card. Remember the Folder in which You Have saved it.
Now open LCG Xplore, and press '0' and mark all 4 boxes!
After doing this, go to phone memory and try accessing 'sys' folder. . . . You cant access! okay No worries! press your 'Menu' key (Shortcut Key To Come On Main Menu) and come to phone menu (dont close xplore) and open 'Hellocarbide'
press Options: Menu1: you will see 'Done...probably', Click Yes and then it will crash. . . . .
Now come back to Xplore and retry accessing 'sys' folder. . . . .Now you're able to do so
Now copy installserver.exe to c:sys/bin/ in x-plore
Done!!
Exit Xplore and Restart your phone! Now you can install all unsigned softwares in your phone without any problem.
(Note- This Is Only For S60V3 Mobiles like N73)
Keep Your Files Safe On PC
Friends With This Software You Can Lock Your Private Folders Of Your PC With Your Desire Password.
You Will Require Winrar Or Winzip Software To Run This Folder Lock Software.
Download
Folder Lock
You Will Require Winrar Or Winzip Software To Run This Folder Lock Software.
Download
Folder Lock
Opera 4.2 (Fixed) Version For Airtel
Download This Version And Enjoy Free Surfing With Airtel Live.
Keep Your Balance Less Than 30 Paisa And USe Airtel Live Setting.
Opera 4.2 (Fixed)
Keep Your Balance Less Than 30 Paisa And USe Airtel Live Setting.
Opera 4.2 (Fixed)
2 February 2010
Trick to create folder without name
Do You want to Create a folder which has no name?
then just follow the below steps...
-->just create new folder
-->hold alt key and type 255.
Thats it
Now your folder is left unnamed...
then just follow the below steps...
-->just create new folder
-->hold alt key and type 255.
Thats it
Now your folder is left unnamed...
23 January 2010
Airte Free GPRS 2010
So Friends wait is Over, Here Is the New Opera Mini 4.2 Which is Working Free With Airtel Live Setting.
Keep Your Balance Below 30 Paisa. For The First Time You may Get an Error While Initilizing Opera Mini, In that case Try Again and Again Till It Get Initilized. If You not get succeed than use paid GPRS for initializing. You can activate 30 paisa per 50 KB plan by dialing *567# . Use Mobile Office Setting For Initializing.
After initializing keep balance less than 30 paisa, use airtel live setting and start surfing. Please Click on Continue If You get any alert about Certificate.
The Speed is Slow. So Have a patience while page gets opened.
Subscribe to:
Posts (Atom)





