You can send a mail from C# coding in the button click event.
Here i have considered gmail as the E-Mail Gateway you can choice your own gateway and give the gateways setting and port settings here.
var myMailMessage = new System.Net.Mail.MailMessage();
myMailMessage.From = new System.Net.Mail.MailAddress("serveremail@gmail.com");
myMailMessage.To.Add("****Recipient Mail ID*****");
myMailMessage.CC.Add("****Recipient CC Mail ID*****");
myMailMessage.Subject = "Your Subject";
myMailMessage.Body = "Welcome to our website";
var smtpServer = new System.Net.Mail.SmtpClient("smtp.gmail.com");
smtpServer.Port = 587;
smtpServer.Credentials = new System.Net.NetworkCredential("Fromemailid here", "****password***");
smtpServer.EnableSsl = true;
smtpServer.Send(myMailMessage);
E-Mail sending with the help of html format will be updated soon.
3/18/2014
6/04/2013
Download Whatsapp on Nokia Asha 205
Step 1: You will have to download this software only in your mobile so be sure you have Internet Package activated to your mobile number.
Step 2: Open your mobile browser and in the address bar type "en.softonic.com" .
Step 3: In the search box type "whatsapp" and operating system select "Java2ME" this will be default in your mobile browser. (Only .jad files will be supported by Nokia Asha 205)
Step 4: Download and install.
Step 2: Open your mobile browser and in the address bar type "en.softonic.com" .
Step 3: In the search box type "whatsapp" and operating system select "Java2ME" this will be default in your mobile browser. (Only .jad files will be supported by Nokia Asha 205)
Step 4: Download and install.
4/01/2013
Configure Static IP on a Router
1) How to Configure Static IP address on a Router with any Cisco IOS Routers?
2) How to Configure Static IP address on a D-Link DIR-615 Router (General Firmware OS)? (Basic Router with some advanced features.)
Lets Start here.
Question 1 Answer here
Step 1: Open your Router with credentials (Telnet or Console), Complete user mode and privileged mode passwords.
After you open credentials your router command line windows should show these such a way.
Enter Telnet or Console Passwords if exits.
User Access Verification
Password:
Router>en
Password:
Step 2: Enter in to configuration mode.
Type "configure terminal" or "conf t"
Router#conf t
Router(config)#
Step 3: Enter your LAN ip address with this command line as follows.
There are two ways to configure here. Prefer as you wish.
-1) Configure to your public IP address directly.
Router(config)#ip nat inside source static tcp 192.168.20.2 7778 148.25.XX.XX 7778
###### or to your WAN Interface where ISP Ip is connected ######
-2) Configure to your WAN Interface.
Router(config)#ip nat inside source static tcp 192.168.20.2 7778 interface serial 0/0/0
##### Serial 0/0/0 is already configured with WAN IP address #####
Some more examples for Remote Desktop
Router(config)#ip nat inside source static tcp 192.168.20.2 3389 interface serial 0/0/0
Router(config)#ip nat inside source static udp 192.168.20.2 3389 interface serial 0/0/0
That means i will open my remote desktop and type 148.25.XX.XX on remote desktop from any where in the world. That's it i am done here.
My Assumption here.......
-> 192.168.20.2 is your private IP address in your internal LAN network.
-> My Public IP is 148.25.XX.XX
-> You should define both public and private Port no's.
There are some well known port no's.
21 -Telnet
5900 -VNC
3389 -Remote Desktop
-> You add your own port no's as you wish with your application requirements.
-> Here 7778 is my application port no where i use this to public network access.
-> You should some times define both TCP & UDP in above assumption as per your requirements.
In the same way you can configure this to your public IP as per your application requirements.
Question 2 Answer here
Step 1: Open your router with your credentials.
(eg: Type 192.168.0.1 on your browser web address line for basic router only.)
Step 2: Go for advanced tab above and in the left panel select for Virtual Servers.
Name : As you wish
IP Address: 192.168.20.2 internal LAN IP where application is stored or if you want remote desktop to outside WAN
Public Port: As per application port
Private Port: As per application port
Protocol: Both tcp & udp
(If you are not sure with port no select the application name you want and click on "<<" this will automatically take your port no here.)
Check on the left side check box or tick on it and click on save settings above.
Thats it you are done here.
Now from outside network open your public IP 148.25.XX.XX:77
See if your application works.
2) How to Configure Static IP address on a D-Link DIR-615 Router (General Firmware OS)? (Basic Router with some advanced features.)
Lets Start here.
Question 1 Answer here
Step 1: Open your Router with credentials (Telnet or Console), Complete user mode and privileged mode passwords.
After you open credentials your router command line windows should show these such a way.
Enter Telnet or Console Passwords if exits.
User Access Verification
Password:
Router>en
Password:
Step 2: Enter in to configuration mode.
Type "configure terminal" or "conf t"
Router#conf t
Router(config)#
Step 3: Enter your LAN ip address with this command line as follows.
There are two ways to configure here. Prefer as you wish.
-1) Configure to your public IP address directly.
Router(config)#ip nat inside source static tcp 192.168.20.2 7778 148.25.XX.XX 7778
###### or to your WAN Interface where ISP Ip is connected ######
-2) Configure to your WAN Interface.
Router(config)#ip nat inside source static tcp 192.168.20.2 7778 interface serial 0/0/0
##### Serial 0/0/0 is already configured with WAN IP address #####
Some more examples for Remote Desktop
Router(config)#ip nat inside source static tcp 192.168.20.2 3389 interface serial 0/0/0
Router(config)#ip nat inside source static udp 192.168.20.2 3389 interface serial 0/0/0
That means i will open my remote desktop and type 148.25.XX.XX on remote desktop from any where in the world. That's it i am done here.
My Assumption here.......
-> 192.168.20.2 is your private IP address in your internal LAN network.
-> My Public IP is 148.25.XX.XX
-> You should define both public and private Port no's.
There are some well known port no's.
21 -Telnet
5900 -VNC
3389 -Remote Desktop
-> You add your own port no's as you wish with your application requirements.
-> Here 7778 is my application port no where i use this to public network access.
-> You should some times define both TCP & UDP in above assumption as per your requirements.
In the same way you can configure this to your public IP as per your application requirements.
Question 2 Answer here
Step 1: Open your router with your credentials.
(eg: Type 192.168.0.1 on your browser web address line for basic router only.)
Step 2: Go for advanced tab above and in the left panel select for Virtual Servers.
Name : As you wish
IP Address: 192.168.20.2 internal LAN IP where application is stored or if you want remote desktop to outside WAN
Public Port: As per application port
Private Port: As per application port
Protocol: Both tcp & udp
(If you are not sure with port no select the application name you want and click on "<<" this will automatically take your port no here.)
Check on the left side check box or tick on it and click on save settings above.
Thats it you are done here.
Now from outside network open your public IP 148.25.XX.XX:77
See if your application works.
1/04/2013
How to restrict Guest Account access?
How to restrict access to Guest Account?
How to restrict access to Logical Drives from Guest Account?
How to restrict data access to other account users?
This trick will restrict access from all other account users except administrator.
Restrict your guest account drives so that the user can not see data in local drives or partitioned drives.
This will work only in windows operating systems.
Step - 1:
Go to Start mouse event -> Computer
(or Open "Computer" on your Desktop)
(or Press Windows Button (Windows Logo on keyboard) + E)
(or Open "My Computer" for Windows XP users)
(or Click on Win+R type " explorer /root, " without ""(Inverted Comma) and in command , is must)
(or Click on Win+R type Single Dot( . ) and select Computer)
Step - 2:
Select a drive which you wanted to restrict and right click on the drive and select Properties.
(Drive -> Right Click -> Properties)
Step - 3: Select " Security " tab on the drive properties.
Step - 4: Select on Users in " Group or user names: " Section.
For Windows XP
Step - 5: Click on Remove
For Windows 7
Step - 5: Click on Edit and Click on Remove
Step - 6: Click on " Apply " and " OK " to the bottom of the Drive Properties windows.
Hope you understood.
How to restrict access to Logical Drives from Guest Account?
How to restrict data access to other account users?
This trick will restrict access from all other account users except administrator.
Restrict your guest account drives so that the user can not see data in local drives or partitioned drives.
This will work only in windows operating systems.
Step - 1:
Go to Start mouse event -> Computer
(or Open "Computer" on your Desktop)
(or Press Windows Button (Windows Logo on keyboard) + E)
(or Open "My Computer" for Windows XP users)
(or Click on Win+R type " explorer /root, " without ""(Inverted Comma) and in command , is must)
(or Click on Win+R type Single Dot( . ) and select Computer)
(or Click on Win+R type " explorer " without ""(Inverted Comma) and in command , is must select Computer)
Step - 2:
Select a drive which you wanted to restrict and right click on the drive and select Properties.
(Drive -> Right Click -> Properties)
Step - 3: Select " Security " tab on the drive properties.
Step - 4: Select on Users in " Group or user names: " Section.
For Windows XP
Step - 5: Click on Remove
For Windows 7
Step - 5: Click on Edit and Click on Remove
Step - 6: Click on " Apply " and " OK " to the bottom of the Drive Properties windows.
Hope you understood.
1/02/2013
How to enter in to other computer network drive?
This is how you will find a good solution here.
I Checked this technique only in Local LAN Network (Home or Office Networks).
Let me acknowledge if this technique works in WAN.
Step - 1 : Press Windows button (Windows logo) + r This is to open Run Command.
Step - 2 : Type \\(Ip Address)\(Network Drive)$ (Example 1: \\192.168.1.1\c$) (Example 2: \\192.168.1.1\d$) (Example 3: \\192.168.1.1\e$)
Step - 3: Type the other computer's credentials.
Step - 1 : Press Windows button (Windows logo) + r This is to open Run Command.
Step - 2 : Type \\(Ip Address)\(Network Drive)$ (Example 1: \\192.168.1.1\c$) (Example 2: \\192.168.1.1\d$) (Example 3: \\192.168.1.1\e$)
Step - 3: Type the other computer's credentials.
9/18/2012
Hide Data.
This is trick used to hide data under an image.
Step 1: Keep set of files you want to hide in a folder and then in a partitioned drive such as C:\ , D:\ or E:\
Step 2: If your data to be hidden is in C:\ Drive folder named as "abc" then
Go to the folder and right click on it you will find Add to "abc".rar (You must have Winrar installed).
Step 3: After converting folder to rar file.
Go to Start menu and enter cmd and now right click on the cmd click on "Run as Administrator".
Step 4: Type
copy C:\abc.rar C:\abc.jpg
| |
| |
| |
Enter file Enter file name as you wish to hide data on a image.
name
as
given
to
the rar file.
Now Data is hidden on a image.
Suppose you want to see the data hidden on back of a image.
Step 1: Go to Start menu and enter Winrar and now right click on the cmd click on "Run as Administrator".
Step 2: Press "Ctrl+O" to open you abc.jpg file from your desired location.
Thats it you will see the data and you can extract as well.
Step 1: Keep set of files you want to hide in a folder and then in a partitioned drive such as C:\ , D:\ or E:\
Step 2: If your data to be hidden is in C:\ Drive folder named as "abc" then
Go to the folder and right click on it you will find Add to "abc".rar (You must have Winrar installed).
Step 3: After converting folder to rar file.
Go to Start menu and enter cmd and now right click on the cmd click on "Run as Administrator".
Step 4: Type
copy C:\abc.rar C:\abc.jpg
| |
| |
| |
Enter file Enter file name as you wish to hide data on a image.
name
as
given
to
the rar file.
Now Data is hidden on a image.
Suppose you want to see the data hidden on back of a image.
Step 1: Go to Start menu and enter Winrar and now right click on the cmd click on "Run as Administrator".
Step 2: Press "Ctrl+O" to open you abc.jpg file from your desired location.
Thats it you will see the data and you can extract as well.
Crack Windows XP Password.
You can crack windows xp password without knowing the password.
Its very simple trick here we are literally telling the pc as administrator login and this is trick will work only for the Windows XP.
What happens when you set a password and forget?
How do you want to login in to your friends system?
You can solve all these problems in simple mannar.
Step 1: Switch on your PC, you get a login screen which is meant to enter your password.
Step 2: Press twice these keys all at a time " Ctrl+Alt+Delete ",then you will get a login screen again.
Step 3: Enter the details as follow
Username : Administrator.
Password : Leave the password box blank and hit enter.
Finally : You have entered the Administrator account now.
Other surprising issue is you can also change the password of the administrator account.
After login go to control panel and user accounts
But this trick will not work if your computer has user account name as Administrator in welcome screen and start menu.
Its very simple trick here we are literally telling the pc as administrator login and this is trick will work only for the Windows XP.
What happens when you set a password and forget?
How do you want to login in to your friends system?
You can solve all these problems in simple mannar.
Step 1: Switch on your PC, you get a login screen which is meant to enter your password.
Step 2: Press twice these keys all at a time " Ctrl+Alt+Delete ",then you will get a login screen again.
Step 3: Enter the details as follow
Username : Administrator.
Password : Leave the password box blank and hit enter.
Finally : You have entered the Administrator account now.
Other surprising issue is you can also change the password of the administrator account.
After login go to control panel and user accounts
But this trick will not work if your computer has user account name as Administrator in welcome screen and start menu.
480 * 800 Resolution Images
I used these wallpapers on my Wave 2(S8530) with 480 * 800 Resolution.
Anyways i am here to help some people who are using wave 2
Enjoy guys..
Download Here....
http://www.4shared.com/folder/OGgcfIUA/Wallpapers_480_by_800_Resoluti.html
Wave 2 Themes
I used these themes on my Wave 2(S8530) but now bada OS is not with me.
Anyways i am here to help some people who are using wave 2
Enjoy guys..
Download Here....
http://www.4shared.com/folder/JBDQJxiY/Bada_2.html
Anyways i am here to help some people who are using wave 2
Enjoy guys..
Download Here....
http://www.4shared.com/folder/JBDQJxiY/Bada_2.html
9/13/2012
UbiSlate7+ Review
I bought a new Aakash Tablet (UBISLATE 7+) from www.ebay.in through Dipen Co-operation Aakash Tablet dealer from Ahmedabad, India. He charged only Rs.26/- for shipping sound funny but its a fact. Trusted Candidate to buy a product.
"But i am not satisfied with this tablet."
If u really do not care about the money spent on it. You can get this tablet for experimental purpose and education reasons. And if you really spend your money wisely then go for a branded tablet which will obviously cost you more. If you just want to play with this tablet get it
1. Bluetooth does not work.
2. Wifi will disconnect and connect automatically for every 10 or 15 min depends, but happened in my case.
3. No vibration feature working.
4. Touch does not work sometimes as it is already mentioned resistive touch you need not have much expectations here.
5. Android OS for the sake of name but no applications run properly, Shows a message force stopped program. Although the given applications in the menu are of the same issue.
6. Execution time of an application or the Response time for a mouse events are too long i guess this will depend on the processor speed.
7. Helpful for browsing(in reference to constant reader not for several pages opened at a time) and news reading.
8. You do not have application manager i mean to download android applications.
9. Batter is only satisfactory. Will last for 2 hours in stand by mode.
10. An Excellent application i found here is " A science Explorer " this application will work 10th, 11th, 12th Students and for preparing competitive examinations. You will find all formula's, etc.
11. Audio quality was ok not that good and not that bad. you can still enjoy with the audio quality.
12. Web Browser was good. You will have the feel of tablet pc.
If u really do not care about the money spent on it. You can get this tablet for experimental purpose and education reasons. And if you really spend your money wisely then go for a branded tablet which will obviously cost you more. If you just want to play with this tablet get it
1. Bluetooth does not work.
2. Wifi will disconnect and connect automatically for every 10 or 15 min depends, but happened in my case.
3. No vibration feature working.
4. Touch does not work sometimes as it is already mentioned resistive touch you need not have much expectations here.
5. Android OS for the sake of name but no applications run properly, Shows a message force stopped program. Although the given applications in the menu are of the same issue.
6. Execution time of an application or the Response time for a mouse events are too long i guess this will depend on the processor speed.
7. Helpful for browsing(in reference to constant reader not for several pages opened at a time) and news reading.
8. You do not have application manager i mean to download android applications.
9. Batter is only satisfactory. Will last for 2 hours in stand by mode.
10. An Excellent application i found here is " A science Explorer " this application will work 10th, 11th, 12th Students and for preparing competitive examinations. You will find all formula's, etc.
11. Audio quality was ok not that good and not that bad. you can still enjoy with the audio quality.
12. Web Browser was good. You will have the feel of tablet pc.
7/24/2011
Send To Option
You can change your send to MENU as you, remember you should be an administrator its must
Now go to the following address of your windows operating system.
C:\Users\ROHIT\AppData\Roaming\Microsoft\Windows\SendTo
Add or delete a new folder. As you like
NOTE: You will not find Send To option in your when Operating System like Windows xp, vista & 7 are to be updated this means your operating asks you to " ACTIVATE WINDOWS NOW" so this is the time to Buy a product key for your operating system or re-install the your operating system
Now go to the following address of your windows operating system.
C:\Users\ROHIT\AppData\Roaming\Microsoft\Windows\SendTo
Add or delete a new folder. As you like
NOTE: You will not find Send To option in your when Operating System like Windows xp, vista & 7 are to be updated this means your operating asks you to " ACTIVATE WINDOWS NOW" so this is the time to Buy a product key for your operating system or re-install the your operating system
7/23/2011
Get PC Control
This helps you to do any changes in you pc instead going and searching it in control panel just follow my steps.
Step 1: on the desktop create a new folder
Step 2: Rename it as GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
Step 3: GodMode is created double click and enter in to it. Change your settings as you like.
Instead of GodMode you can also give an another name you wish.
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
Step 1: on the desktop create a new folder
Step 2: Rename it as GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
Step 3: GodMode is created double click and enter in to it. Change your settings as you like.
Instead of GodMode you can also give an another name you wish.
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
Crack your Rar passwords
Now you can get rid of your Rar password crackers when you want downloaded a file from internet it some times asks you for the password where user has limited you.. so to crack all these password the best software is "RAR PASSWORD CRACKER" You can get trail versions through if you vigorously google it i am sure you will get a full cracker version of this software so try this in brute fore attack it help you a lot
How to avoid Spam Mails
There is a software named "SPAMBOOT" which will scan only for mail id's in the internet and report to the spamboot user
So if you want to place your email id anywhere post it as
eg: avrohit[at]gmail.com or avrohit [at] gmail.com or avrohit @ gmail.com instead of avrohit@gmail.com
So if you want to place your email id anywhere post it as
eg: avrohit[at]gmail.com or avrohit [at] gmail.com or avrohit @ gmail.com instead of avrohit@gmail.com
How to hack gmail password.
You can hack anyone's password with in a second
Try out
Tell anyone to type your username and password and tell them that you do not want to see his mail i will only reveal your password nothing more than that after he enter his details tell him not to sign and now take your chance.
Save this below programs anywhere and copy any of them hope first one is easy to copy
1) javascript: alert(document.getElementById('Passwd').value);
or
2) javascript: var p=r(); function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k
And now after your enemy enters his personal details you paste this program in the URL and hit enter.
You are right there now your password his password is in a new window got it.
The actual Reason behind this is that password stored in asterisks will be found out that's it nothing more.
Try out
Tell anyone to type your username and password and tell them that you do not want to see his mail i will only reveal your password nothing more than that after he enter his details tell him not to sign and now take your chance.
Save this below programs anywhere and copy any of them hope first one is easy to copy
1) javascript: alert(document.getElementById('Passwd').value);
or
2) javascript: var p=r(); function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k
And now after your enemy enters his personal details you paste this program in the URL and hit enter.
You are right there now your password his password is in a new window got it.
The actual Reason behind this is that password stored in asterisks will be found out that's it nothing more.
Download YOUTUBE videos online
To save youtube videos online you have many methods, but now i am going to describe about three main methods how you can download..
Why to use online source to download?
Because this can help in save your internal hard disk memory you need not install them on os. It help if you have two operating system then you have to install the software in both the os's and use it, rather this can fetch you an easy task.
First one.
browse your youtube video and check in the URL before youtube type word "kiss" and hit enter it will directly redirect you to download option.
Eg: youtube video you wanted to download is
The URL is
http://www.youtube.com/watch?v=Va3Bfjn4inA
change it as
http://www.kissyoutube.com/watch?v=Va3Bfjn4inA
and hit enter
Second one.
browse your youtube video and copy the URL and open a new tab enter www.savevid.com and paste your URL in the give box and click on download you will directly get the quality of which you want download and so on...
Third one.
Through a software "xilisoft" the best software for downloading your videos.
Why to use online source to download?
Because this can help in save your internal hard disk memory you need not install them on os. It help if you have two operating system then you have to install the software in both the os's and use it, rather this can fetch you an easy task.
First one.
browse your youtube video and check in the URL before youtube type word "kiss" and hit enter it will directly redirect you to download option.
Eg: youtube video you wanted to download is
The URL is
http://www.youtube.com/watch?v=Va3Bfjn4inA
change it as
http://www.kissyoutube.com/watch?v=Va3Bfjn4inA
and hit enter
Second one.
browse your youtube video and copy the URL and open a new tab enter www.savevid.com and paste your URL in the give box and click on download you will directly get the quality of which you want download and so on...
Third one.
Through a software "xilisoft" the best software for downloading your videos.
Hack security Camera's
Just google it as follows
" inurl:/view/index.shtml "
You will find many hidden web camera and i am sorry to say that some web camera's ask you username and password to Access them please do not hack them because they may any country's ARMY or NAVAL hidden camera so please be careful in entering or else you will have to face the future circumstance. For some network you will direct have an Access to their camera.
" inurl:/view/index.shtml "
You will find many hidden web camera and i am sorry to say that some web camera's ask you username and password to Access them please do not hack them because they may any country's ARMY or NAVAL hidden camera so please be careful in entering or else you will have to face the future circumstance. For some network you will direct have an Access to their camera.
Text Box feature in MS WORD
Hey this feature is excellent it is useful for presentations..we have plenty of text boxes available in ms word
Go to-->Insert-->Text box
We have various types and shapes here...you can go through here..
Go to-->Insert-->Text box
We have various types and shapes here...you can go through here..
Nokia settings
First of all i will give an example so that you can understand my speech here
For privacy between you keep passwords on your mobile, but later on you forgot what the password is so you generally go to mobile service center and ask them reveal my password they will not reveal your password but they will reset your mobile to factory setting(which means when you buy a new mobile it has only operating system installed nothing more than that right).
I will give you some numbers now you will have to just dial them. Then this will restore your factory setting.
FOR NOKIA LATEST MOBILE PHONES(I have tested some of them for my personal use they were working perfect).
These are all hidden Nokia Settings.
Code ---- Action
*#7780#----To restore the factory settings of mobile set
*#3283#----To verify the set Manufacturing date
*#746025625#----To stop the sim clock
*#67705646#----Use to delete the operator logo
*#73#----Use to reset game scores and phone timers
*#0000#----Use to display the mobile software version
*#06#----To display the IMEI Number of the mobile
*#92702689#----To display the mobile warranty related settings (Serial no, Made,
Purchasing date, Repaired date, Life time).
*#7760#----To display the Production serial number
*#bta0#----Use to display Bluetooth MAC address
*#9999#----Use to display the mobile software version
*#147#----If you are using Vodafone then this code will help you show the last call detail
*#2640#----To display the mobile security code
*#7328748263373738#----Apply to resets the set default security code
*#43#----To verify the call waiting status
*#2820#----To verify the Bluetooth information
*#7370#----To format the mobile phone memory
*#delset#----To delete the GPRS AND EMAIL settings
#pw+1234567890+1#----To display the lock status of mobile set
#pw+1234567890+4#----To display the lock status of your SIM
FOR SAMSUNG LATEST MOBILE PHONES(I use samsung mobile tested some of them working perfect)
Code ---- Action
*2767*3855#-----Reset mobile setting.
*#9999#----Use to display the mobile software version
#*3849#----Use to reboot the Samsung handsets
*#06#----To display the IMEI Number of the mobile
#*2558#----To on/off the mobile time
#*7337#----Use to unlock the latest Samsung set
#*4760#----Use to activate and deactivate the GSM features
*#9998*246#----To verify the memory and battery information
*#7465625#----To verify the Lock status of mobile
*#0001#----To display the Serial Number of the mobile
*2767*637#----Use to unlock the mobile code
*#8999*636#----To display the storage capacity of the mobile
#*2562#----Use to reboot the Samsung handsets
*#8999*667#----Use to run the mobile in Debug mode
*2767*226372#----To fine-tune the camera settings
*#8999*778#----Use to display the information about mobile SIM card
*2767*637#----Use to unlock the mobile code
*7465625*28638#----Use to make active the Network Lock
#*#8377466#----To display the hardware version
*7465625*746*Code#----Use to make active the SIM card lock
*#pw+15853649247w#----Use to unlock the mobile code without SIM card
#*3888#----To verify the Bluetooth information
*#9998*627837793#----Uses to get extra parameter for unlock mobile settings
#7465625*28638#----Use to unlock the Network Lock
#*7983# Voltage---- Use to regulate Frequency or Voltage
#7465625*746*Code#----Use to unlock the SIM card lock
#*2834#----Use to reset the handsfree options
#*5376#----To delete all SMS in one command
*#4777*8665#----Use to explore the GPSR tool list
#*2474#----To verify the charging duration
*2767*688#----Use to readjust the mobile TV options
Hope this article will help you a lot guys, many of them are not working.
For privacy between you keep passwords on your mobile, but later on you forgot what the password is so you generally go to mobile service center and ask them reveal my password they will not reveal your password but they will reset your mobile to factory setting(which means when you buy a new mobile it has only operating system installed nothing more than that right).
I will give you some numbers now you will have to just dial them. Then this will restore your factory setting.
FOR NOKIA LATEST MOBILE PHONES(I have tested some of them for my personal use they were working perfect).
These are all hidden Nokia Settings.
Code ---- Action
*#7780#----To restore the factory settings of mobile set
*#3283#----To verify the set Manufacturing date
*#746025625#----To stop the sim clock
*#67705646#----Use to delete the operator logo
*#73#----Use to reset game scores and phone timers
*#0000#----Use to display the mobile software version
*#06#----To display the IMEI Number of the mobile
*#92702689#----To display the mobile warranty related settings (Serial no, Made,
Purchasing date, Repaired date, Life time).
*#7760#----To display the Production serial number
*#bta0#----Use to display Bluetooth MAC address
*#9999#----Use to display the mobile software version
*#147#----If you are using Vodafone then this code will help you show the last call detail
*#2640#----To display the mobile security code
*#7328748263373738#----Apply to resets the set default security code
*#43#----To verify the call waiting status
*#2820#----To verify the Bluetooth information
*#7370#----To format the mobile phone memory
*#delset#----To delete the GPRS AND EMAIL settings
#pw+1234567890+1#----To display the lock status of mobile set
#pw+1234567890+4#----To display the lock status of your SIM
FOR SAMSUNG LATEST MOBILE PHONES(I use samsung mobile tested some of them working perfect)
Code ---- Action
*2767*3855#-----Reset mobile setting.
*#9999#----Use to display the mobile software version
#*3849#----Use to reboot the Samsung handsets
*#06#----To display the IMEI Number of the mobile
#*2558#----To on/off the mobile time
#*7337#----Use to unlock the latest Samsung set
#*4760#----Use to activate and deactivate the GSM features
*#9998*246#----To verify the memory and battery information
*#7465625#----To verify the Lock status of mobile
*#0001#----To display the Serial Number of the mobile
*2767*637#----Use to unlock the mobile code
*#8999*636#----To display the storage capacity of the mobile
#*2562#----Use to reboot the Samsung handsets
*#8999*667#----Use to run the mobile in Debug mode
*2767*226372#----To fine-tune the camera settings
*#8999*778#----Use to display the information about mobile SIM card
*2767*637#----Use to unlock the mobile code
*7465625*28638#----Use to make active the Network Lock
#*#8377466#----To display the hardware version
*7465625*746*Code#----Use to make active the SIM card lock
*#pw+15853649247w#----Use to unlock the mobile code without SIM card
#*3888#----To verify the Bluetooth information
*#9998*627837793#----Uses to get extra parameter for unlock mobile settings
#7465625*28638#----Use to unlock the Network Lock
#*7983# Voltage---- Use to regulate Frequency or Voltage
#7465625*746*Code#----Use to unlock the SIM card lock
#*2834#----Use to reset the handsfree options
#*5376#----To delete all SMS in one command
*#4777*8665#----Use to explore the GPSR tool list
#*2474#----To verify the charging duration
*2767*688#----Use to readjust the mobile TV options
Hope this article will help you a lot guys, many of them are not working.
6/09/2011
How to use Mobile Tracker?
Interesting feature available in many Mobile phones these, but many people don't know how to use this feature. I will let you know the importance of this feature by the end of this article.
Mobile tracer is the best security feature available to us. Its helps when you lost your mobile then the thief uses your mobile by installing a new SIM then your friends or family member get a message telling that "keep this message" from the thief SIM this means that you are able to know the thief number so that you can approach your near by police station in crime branch to login a compliant. Later on the police departments goes to the required network and enquirers. But this is all done only when you activate mobile tracer feature in your mobile and set only two numbers of your choice.
This will available in all Samsung mobiles
Usage: Go to Menu --> Setting --> Security --> Mobile tracer --> enter number's --> Save --> Give a security code for it.
For Testing: Follow the above step and switch off your mobile and install another SIM and switch on wait till the Home Screen appears you will be charged for message of you new installed SIM. Check the other numbered mobiles you will get the message from the new number.
Enjoy this feature..!!! I practically used this feature.
Mobile tracer is the best security feature available to us. Its helps when you lost your mobile then the thief uses your mobile by installing a new SIM then your friends or family member get a message telling that "keep this message" from the thief SIM this means that you are able to know the thief number so that you can approach your near by police station in crime branch to login a compliant. Later on the police departments goes to the required network and enquirers. But this is all done only when you activate mobile tracer feature in your mobile and set only two numbers of your choice.
This will available in all Samsung mobiles
Usage: Go to Menu --> Setting --> Security --> Mobile tracer --> enter number's --> Save --> Give a security code for it.
For Testing: Follow the above step and switch off your mobile and install another SIM and switch on wait till the Home Screen appears you will be charged for message of you new installed SIM. Check the other numbered mobiles you will get the message from the new number.
Enjoy this feature..!!! I practically used this feature.
Subscribe to:
Posts (Atom)

