Showing posts with label imei. Show all posts
Showing posts with label imei. Show all posts

Tuesday, August 25, 2015

Restore lost IMEI on Android Phone

1. Use imei.exe via cmd. Download link found at the end of this post.
Code:
imei imei_sim1 imei_sim2
a) make sure you replace the imei_sim1 and imei_sim2 to your imei
b) skip imei_sim2 if your phone is not dual sim

A file with the name "MP0B_001_NEW" created in the working folder

2. Rename it to "MP0B_001" and copy it to /data/nvram/md/NVRAM/NVD_IMEI folder of your Android phone
3. Then chown and chmod as shown below.
a) via adb
Code:
adb.exe shell "su -c 'chmod 660 /data/nvram/md/NVRAM/NVD_IMEI/MP0B_001'"
adb.exe shell "su -c 'chown nvram.nvram /data/nvram/md/NVRAM/NVD_IMEI/MP0B_001'"
OR
b) via terminal
Code:
su
chmod 660 /data/nvram/md/NVRAM/NVD_IMEI/MP0B_001
chown nvram.nvram /data/nvram/md/NVRAM/NVD_IMEI/MP0B_001
4. Restart the phone and check your IMEI via *#06#.
Enjoy!!!

Download