Can't delete IMAGE and VIDEO files via ActiveSync. - P3300, MDA Compact III General

Can't delete IMAGE and VIDEO files via ActiveSync.
They are locked files.
==========================

I think you need to check in the registry for these settings...
HKEY_LOCAL_MACHINE\Security\Policies\Policies
Then change the following values to:
HKEY_LOCAL_MACHINE\Security\Policies\Policies\00001001 = 1
- and -
HKEY_LOCAL_MACHINE\Security\Policies\Policies\00001005 = 40
power off and back on (soft reset) and see if it works now

Related

Batch cab installer

Is there such thing available that would install a selection of cabs at the "click of a button".
Over my time here, I have managed to build a list of favourite applications, however whenever I reflash a new ROM on my device, I have to manually install these applications one by one.
I was wondering if there is some type of auto installer that would auto install a list of 'given' cab files by itself? (perhaps reading the list from an xml or a txt file), and if it required no user interaction, that'd be even better (well maybe it could ask one question, just once... "Install to Device or Storage Card?"
WizzKidd
yeah.. i would like to hav sthg like tat too...
it is very frustrating to install all the programmes after flashing different ROM...
if someone can make sthg like tat will b nice..
Yes there is! Try out Sashimi, you'll have to google for it, don't have it with me. It will install any CAB you throw at it plus it can also run xml files to configure things like email accounts, power settings, etc, etc. After flashing a new rom it takes me all of about 3 minutes to have everything I want installed and all my setting changed to how I want them.
crankshaft said:
Yes there is! Try out Sashimi, you'll have to google for it, don't have it with me. It will install any CAB you throw at it plus it can also run xml files to configure things like email accounts, power settings, etc, etc. After flashing a new rom it takes me all of about 3 minutes to have everything I want installed and all my setting changed to how I want them.
Click to expand...
Click to collapse
which version is that? only on their site it says that the HD will be supported in V8 but they only seem to be at V7.9
Scrap that V8 is out http://www.winmo-experts.com/viewtopic.php?f=7&t=4
I'll have to check that out. I was using 7.9. It aways gave an error about unsupported screen size but still worked fine!
Not sure why but the guy who developed it was banned from xda-dev I believe!
Any chance you can post the app here? Really can't be arsed to register on another site!!!
Cheers
Don't worry, just realised I'm already registered!
Hey, this is a nice app! I'll have to get that, seems great for fast setting up everything after flashing.
to everyone who uses sashimi:
im very interested in your regkeys you backup! maybe you can post your regexport.ini here so we all can see and use the useful regkeys for different programs and settings!
thanks!
Rozenthal said:
Hey, this is a nice app! I'll have to get that, seems great for fast setting up everything after flashing.
Click to expand...
Click to collapse
for that reason i have written my own "autorun" script which does the following:
install cabs
import provisioning files
import registry files
copy files
and could do lots of more...
this is how it works:
copy the script into a folder of your sd card, e.g. \Install. now copy
all cabs into \Install\Cab
all provisioning files into \Install\Xml
all registry files into \Install\Reg
all other files into \Install\Files
the script checks for files in a specific folder and executes the tasks required.
the script requires that mort script is installed. alternatively copy the mort script files (mortscript.exe, mortscript.dll, autorun.exe) into \Install so that you can immediately start with the autorun script after flashing or a hard reset (attention: in this case the name of autorun.mscr and autorun.exe have to be the same - do not rename the script file) . the script also needs a prog "taskmanager.exe" which is only required for importing xml and registry files. it does not do anything else (unless you intentionally run it)
mortscript is available here
task manager is available here
anyway, i have put together all files required in the zip file attached
here is AutoRun.mscr:
Code:
scriptpath = SystemPath("ScriptPath")
Call("InstallCabs")
Call("CopyFiles")
Call("ImportXML")
Call("ImportReg")
Message("Done. Press OK to Reset...", "AutoInstall")
Reset
Exit
Sub InstallCabs
ForEach file In Files(scriptpath \ "Cabs\*.*")
RunWait("\Windows\wceload.exe", """" & file & """ /nodelete /silent")
EndForEach
EndSub
Sub CopyFiles
XCopy(scriptpath \ "Files\*", "\", TRUE, TRUE)
EndSub
Sub ImportXML
ForEach file In Files(scriptpath \ "Xml\*.*")
RunWait(scriptpath \ "TaskMgr.exe", "/provxml " & file)
EndForEach
EndSub
Sub ImportReg
ForEach file In Files(scriptpath \ "Reg\*.*")
RunWait(scriptpath \ "TaskMgr.exe", file)
EndForEach
EndSub
but why dont you just use sashimi? it does the same plus some more things (email settings, wireless passwords,..)
Another vote for sashimi, my only dislike is the interface its shockingly bad. The window disappears for every menu option you go to!
output is version 8, the bug has been fixed, or you can use the modified version 7.9 for HD.
As you know how to save the settings for various programs to be able to restore automatically with sashimi?
you can automatically record programs that require activation key, how?
Most things can be done with the regexport.ini file in the program/ini folder.
You can define which registrykeys should be backed up. Most programs store there configuration and serial keys in the registry. So you just have to search for the right entry.
Here is my regexport.ini
Code:
[MySettings]
RegExportDirMode=Auto
key1=HKCU\Software\ageye\
key2=HKCU\Software\Conduits\
key3=HKCU\Software\FdcSoft\
key4=HKCU\Software\Ghisler\
key5=HKCU\Software\JBlend\
key6=HKLM\Software\FLIP\
key7=HKLM\Software\HTC\QuickGPS\
key8=HKLM\Software\Spb Software House\
key9=HKLM\Software\HTC\Manila\ProgramLauncher\
key10=HKCU\Software\HTCAddicts\cleanRAM\
key11=HKLM\Software\Microsoft\Bluetooth\A2DP\Settings\
key12=HKCU\Software\DaProfik\pRSSreader\
key13=HKLM\Software\HTC\HTCAlbum\Ignored\
egoist6 said:
for that reason i have written my own "autorun" script which does the following:
install cabs
import provisioning files
import registry files
copy files
and could do lots of more...
this is how it works:
copy the script into a folder of your sd card, e.g. \Install. now copy
all cabs into \Install\Cab
all provisioning files into \Install\Xml
all registry files into \Install\Reg
all other files into \Install\Files
the script checks for files in a specific folder and executes the tasks required.
the script requires that mort script is installed. alternatively copy the mort script files (mortscript.exe, mortscript.dll, autorun.exe) into \Install so that you can immediately start with the autorun script after flashing or a hard reset (attention: in this case the name of autorun.mscr and autorun.exe have to be the same - do not rename the script file) . the script also needs a prog "taskmanager.exe" which is only required for importing xml and registry files. it does not do anything else (unless you intentionally run it)
mortscript is available here
task manager is available here
anyway, i have put together all files required in the zip file attached
here is AutoRun.mscr:
Code:
scriptpath = SystemPath("ScriptPath")
Call("InstallCabs")
Call("CopyFiles")
Call("ImportXML")
Call("ImportReg")
Message("Done. Press OK to Reset...", "AutoInstall")
Reset
Exit
Sub InstallCabs
ForEach file In Files(scriptpath \ "Cabs\*.*")
RunWait("\Windows\wceload.exe", """" & file & """ /nodelete /silent")
EndForEach
EndSub
Sub CopyFiles
XCopy(scriptpath \ "Files\*", "\", TRUE, TRUE)
EndSub
Sub ImportXML
ForEach file In Files(scriptpath \ "Xml\*.*")
RunWait(scriptpath \ "TaskMgr.exe", "/provxml " & file)
EndForEach
EndSub
Sub ImportReg
ForEach file In Files(scriptpath \ "Reg\*.*")
RunWait(scriptpath \ "TaskMgr.exe", file)
EndForEach
EndSub
Click to expand...
Click to collapse
the script not working though I follow your intruction,what's wrong?
str0nz0 said:
Most things can be done with the regexport.ini file in the program/ini folder.
You can define which registrykeys should be backed up. Most programs store there configuration and serial keys in the registry. So you just have to search for the right entry.
Here is my regexport.ini
Code:
[MySettings]
RegExportDirMode=Auto
key1=HKCU\Software\ageye\
key2=HKCU\Software\Conduits\
key3=HKCU\Software\FdcSoft\
key4=HKCU\Software\Ghisler\
key5=HKCU\Software\JBlend\
key6=HKLM\Software\FLIP\
key7=HKLM\Software\HTC\QuickGPS\
key8=HKLM\Software\Spb Software House\
key9=HKLM\Software\HTC\Manila\ProgramLauncher\
key10=HKCU\Software\HTCAddicts\cleanRAM\
key11=HKLM\Software\Microsoft\Bluetooth\A2DP\Settings\
key12=HKCU\Software\DaProfik\pRSSreader\
key13=HKLM\Software\HTC\HTCAlbum\Ignored\
Click to expand...
Click to collapse
Thanks for your reply, I just solved a file.reg
Question
is possible to automatically with SAHIMI select the language for installation
resco explorer (multilingual) select /italiano / ok
resco audio explorer (multilingual) select /italiano / ok
is possible to automatically with SAHIMI select the answer is no when asked to reset to complete the installation of
SPB Wireles monitor select /no
SPB Phone Suite select /no
perhaps with a Mortscript running in tandem, I unfortunately do not have capable people who give me a hand?
Thanks for your reply, sorry my bad English
You can do that with the so called auto files.
it is explained in the manual of sashimi.
i have never tried it but it should work like you want.
str0nz0 said:
You can do that with the so called auto files.
it is explained in the manual of sashimi.
i have never tried it but it should work like you want.
Click to expand...
Click to collapse
unfortunately I do not know how to fill the auto file, could you please make some examples that help me understand
Thanks for the great help
ippoglosso said:
unfortunately I do not know how to fill the auto file, could you please make some examples that help me understand
Thanks for the great help
Click to expand...
Click to collapse
[AutoFile]
InstallLocation=0
WindowTitle="SpbPhoneSuite_it.arm.cab"
[ScriptCommands]
1=SendLeftSoft
2=
3=
4=
[AutoFile]
InstallLocation=0
WindowTitle="SpbWirelessMonitor3_it.arm.cab"
[ScriptCommands]
1=SendLeftSoft
2=
3=
4=
[AutoFile]
InstallLocation=0
WindowTitle="audiorec_p.arm.cab"
[ScriptCommands]
1=SendLeftSoft
2=
3=
4=
[AutoFile]
InstallLocation=0
WindowTitle="rescoexplorer_p.ARM.cab"
[ScriptCommands]
1=SendLeftSoft
2=
3=
4=
I do not know the commands
If you are using a UC capable rom (like miri 6.5) you can make a "SDconfig.txt" and it will install whatever cabs you want as part of the first install process at the windows installing screen.
UC Thread for more info.
SPB BackUp 2.0.2. Clean, simple, fast, easy.
Install once all that You want, make backup (is .exe).

FAQ Firmware Modding... How to use Tools like Wave_Remaker and TriX

PLACEHOLDER.
If I have more time today. I will upload few Videos... Screenshots... etc.
About working with these files:
Code:
ShpApp.[B]app[/B]
rsrc_S8500_Open_Europe_Common.[B]rc1[/B]
FactoryFs_S8500_Open_Europe_Common.[B]ffs[/B]
CSC_S8500_Open_Europe_Common_DBT.[B]csc[/B]
and also...
Code:
apps_compressed.bin
amss.bin
Rsrc2_8500(Low).rc2
Lesson 1...
Working with HEX Editor to find MD5 sum ... See here:
http://forum.xda-developers.com/showthread.php?p=25686868#post25686868
To be continued...
Best Regards
Thank you for helping.I only don't know about amss.bin
Code:
S8[B]6[/B]00 [B]XXLD[/B]1 DBT [B]MD5[/B]
amss.bin 726C9536CDAE7F3A330A539B324B4E09
apps_compressed.bin B13B931FC61386A777340D5C4697DFDC
bplib_S8600OpEuroCommon.fota 70ABC89638959F4760A41118E5414F45
CSC_S8600_DBTLB1.csc 5FA176E8B64B3DEBE6AD6A78AA40D999
PFS_S8600_Open_Europe_Common_XXLA1_XXLD1.pfs 394A8265DFB37978AFC93E5D4B549F61
Rsrc2_S8600(Low).rc2 B06D2E03FC2B3A519BCA52C5B40EF556
Rsrc_S8600_Open_Europe_Common.rc1 6CC6D2E82302036FC910AE3EEC79990F
ShpApp_HD.app 063DD3BF6D00828BEDF25A0955F48D1E
Each file has MD5...
It is 16 Byte...
Here I have written about S8600 XXLD1 Firmware as "reference"...
You can find these MD5 "Values" at end of file...
See Video previous post...
Best Regards
I want to Understand About Social Hub Premium on Wave II
I Made it Custom Firmware with soical hub premium for my Wave I Firmware DXLD1
When I made It for Wave II (DXLD1) It is giving error while Log in Facebook and Twitter
I did everything the same that Wave I.But it stilld isn't working on Wave II
I am facing this problem.What i did wrong ? Exactly I don't know
Best Regards
Tutorial 1: Using TriX to Modify Firmwares. A Beginner's Guide
Tutorial: Using TriX to Modify Firmwares. A Beginner's Guide
1. Create a folder in your pc where you will save the dumped files from TriX. Example, create a folder in Local Disk C, called Test.
2. Keep the Firmware you need to modify at desktop for easy access.
3. Launch TriX
4. Check the box for Input File ==> click on the search icon ==> click desktop from the Explorer window and select the firmware file (e.g. ShpApp.app), then click Open (to load the file).
5. Check the box for Output File (where the modified file will be saved) ==> click on the search icon ==> click Local Disk C from the Explorer window and double-click the folder Test. Then enter the File name for your modified file, e.g. ShpApp.app, then click Save (to save the file).
6. After you have selected the input file, and specified the output file name and location, which are under the General tab of TriX, now click on the Scripts tab of TriX.
7. Under the Scripts tab, click on the search icon (at bottom left of TriX) ==> expand the displayed bada folder ==> select fs_shell.trx ==> Open ==> Add
8. After adding the script file, click Start (on top menu) ==> enter 2 (for Your choice) to dump files, then press ENTER.
9. Write C:/Test (for Enter Destination Directory) i.e. if you have created a folder Test as in nº 1 above, then press ENTER. TriX will now dump the files to the directory C:/Test. Wait till the dumping process completes.
10. Now go to the directory C:/Test, and edit any folder/file you want.
Caution: Do not Close TriX yet. Make sure TriX is still open.
11. After editing the dumped files as you like (in C:/Test), go back to TriX and enter option 3 (Your choice) to upload the files. After uploading, enter option 0 to quit. Now close TriX.
12. Your new modified file will be saved at C:/Test.
That’s all. I hope this basic tutorial will help those just beginning to learn how to use TriX.
See attached files for details and screenshots.
Not much time yet...
Meanwhile you can also watch such Videos.
http://www.youtube.com/watch?v=BRWpJWxnylk&feature=player_embedded
Thanx JabbaIsFat
Best Regards
Tutorial 2: How to reduce files from firmware to improve speed
In this tuotrial, you are guided to the files you can safely remove from your custom firmware to increase memory and speed. These files/folders are in the CSC, SHP and FFS. So use TriX or WaveRemaker to dump the files first.
1. CSC FILES
a. Appex => SysDefault => Java => Games => (delete all the games here).
b. CSC => Customer => (delete all except your preferred CSC)
c. CSC => SW_Configuration.xml => (delete all except your CSC. Also edit <NbCustomer>1</NbCustomer).
d. SystemFS => Settings => PreConfiguration (delete all CSC except yours).
Don't delete neither "PreConfiguration.ini" file nor "Default" folder.
2. ShpApp FILES
Osp => Applications => delete the following folders:
a. 1xd3tvpnc5 (Music Hub)
b. 5zdx8bkb6w (Yahoo)
c. 8c59h50loa (GTalk)
d. 577yx64nrt (Caster)
e. 760n3w3202 (MSN)
f. kfdoqs63to (ChatON)
NB: You can as well delete all the language xml files (except your own language) inside "Res" folder of these application:
i. 0rq06e23py (SevenIM)
ii. 8d7uw8z551 (Kona)
iii. rcz4775900 (Bori)
AppEx => Sys (delete this whole folder "Sys"completely).
The Sys folder contains the subfolders listed below which are not used (and already exist in the ShpApp/Osp/Application).
i. BDAgent ===============> [36cbr89p8t in the ShpApp/Osp/Application (BDAgent)]
ii. SamsungAccount=========> [rcz4775900 in the ShpApp/Osp/Application (Bori)]
iii.SamsungApps============> [8d7uw8z551 in the ShpApp/Osp/Application (kona)]
iv. Z7Engine===============> [2482tqy39g in the ShpApp/Osp/Application (z7clientengine)]
3. FFS FILES
a. AppEx => Sys => Widget => (delete these folders: AccuWeather, GoogleMobileService, Memo).
b. Media => Sounds => (delete the "Over the horizon.mp3" file)
c. SystemFS => Media => (from the folders listed below, delete the specified files):
i. Images => delete all except "Wallpaper 01.jpg" and "Wallpaper 02.jpg"
ii. Others => delete the pdf file.
iii. Sounds => Alert tones => delete all except "Cloud.wav", "Good morning.wav", "Haze.wav", "On Time"
iv. Sounds => Ringtones => delete all except "Samsung tune.mp3"
NOTE: Removal of these items will not affect your phone in any negative way.
Rather it will immensely improve the speed and stability of the phone.
Example, you can conveniently now play the Asphalt6 HD game without problems.
Total Memory of Phone will be approximately as follows:
Free Memory Space:
Application Memory: 838 out of 883 MB
System Memory: 570 out of 575 MB

Unlock samsung galaxy tab 8.9

You have a Samsung galaxy tab bound to an operator and you want to unlock it.
I’ve been through a thorough search in the internet and finally I got a solution. My tab is now free. It’s a bit complex, but not impossible.
Below, I’ll give a very clear and detailed description of the whole procedure you have to go through to unlock your tablet.
I you follow all the steps, you will be sure to get the expected result.
Step 1: Root your tab
[ why root the tablet: unlocking the tablet requires access to hidden system files in the root. The root is not normally made accessible to the standard users]
- From the web, search a Root package (easy to find on the web, just google ‘galaxy’ ‘root zip’ you’ll get a small zip file, it may be root.zip, root2.zip, doesn’t matter),
- download the root zip file,
- Copy it to your tab and remember exactly the folder where you paste it.
- Turn off you tab,
- Press simultaneously the volume (-) and power buttons and continue pressing until you got a system screen with two items menu (download, and …),
- Press the volume (-) again to navigate through the two items of the menu, select upgrade,
- In the top of the screen, you’ll get a list menu with 4 items. Scroll to item “install from SDCard” (use volume (-) and (-) to scroll),
- Press power button to select,
- You’ll have to select the root zip folder, navigate through the folder structure using volume (-) (+) buttons,
- Press the power button to execute the zip file,
- Rooting operation will start, you’ll see many progress messages, just wait until the whole process finishes, it takes few seconds.
- Navigate back the menu item “reboot the tab”, press power button.
[ Your tablet will reboot now, you will notice no change, but the change is there, your tablet is now rooted]
Step 2: Preparing to unlock
- From the market, install the free app “super user”,
- Open the newly created shortcut “super user” and validate any message you get, close if necessary, [the SuperUser is an app that will work in the background and grant permissions –when necessary- to other applications to access root. Without it, rooting a tab is meaningless],
- From the market, install “root manager”,[root manager is now your file manager that can go deep through the folder structure and access root folders],
- Launch the “root manager”, the first time you do that, you’ll be prompted to allow “Super User” to grant permissions to “root manager”, allow that,
- Take some time to make yourself familiar with “root manager”, it’s a very simple but powerful file manager,
- Now go back to serious work, locate the folder \efs at the root, [efs folder is very important, it holds all the information to validate your tablet to the GSM/3G operator, it validates the authenticity of your IMEI]
- Just make a copy of the whole folder and save it in a safe place – your PC or a memory stick-. We’ll be back later to this copy, continue now on the tab,
- Open \efs folder, locate the file nv_data.bin,
- Make a copy of nv_data.bin in the same folder \efs and rename the file eg: ORIGINAL_nv_data.bin,
- Delete all the files in the \efs folder except nv.log. Don’t delete the sub folders ( you should normally have the following sub folders .files, imei, gyro….),
- Now leave the tablet powered on (don’t turn off) and move to your PC to continue job,
Step 3: Molding the nv_data.bin file
- In the copy of the \efs folder that you previously made, locate the original file nv_data.bin,
- Make a copy of this file somewhere in your PC. That’s the copy you will be working on,
- Edit nv_data.bin with HexEdit.[ If you are not familiar with depths of binary files, don’t be daunted by the array of codes and bytes],
- Locate the byte 0x181469, it should read 01 value, just edit it to 00 value, do nothing more, just save and exit,
- Now you have created the molded copy of nv_data.bin,
- You need to move this copy of nv_data.bin onto your tablet, either using a memory stick or by USB cable. Paste the file in the \efs folder,
Step 4: tweaking the molded nv_data.bin file
- Now that you pasted the molded nv_data.bin to \efs folder, it needs some minor adjustments before being used,
- In the “root manager”, press and hold on the newly pasted nv_data.bin,
- You’ll get a menu, select properties,
- In the properties box, check all the 9 options (read, write, execute), leave the others,
- Save and exit root manager,
- Go the market and install the free app “terminal emulator”,
- Launch the terminal emulator, accept any message for super user permission,
- In the terminal emulator, execute the following commands [press enter after each line of command]:
o su
o chown 1001:radio \efs\nv_dat.bin
o reboot
- It’s done, your tablet will reboot unlocked.
Verification to make sure everything is OK
- Go to settings, about device, status. Make sure you have a valid IMEI number, the one you have printed on the back of your tablet, not the fake one: 00004**********,
- Insert a valid SIM module, you’ll be promted to enter PIN code if configured so,
- Enter PIN code,
- Enter the APN provided by your operator (necessary to access internet 3G),
ENJOY FREELY
I have rooted AT&T version of tab 8.9, and there is no \efs\nv_dat.bin file on it...
hi
sir can you post an edited nv_data.bin? i cant hex it.. it says it cannot find the bytes you provide TIA
Same for me, /efs folder is completely empty?
no nv-data.bin at all, i tried everything with no luck.
efs folder has some files but no nv_data.bin
I know this is an old post but install from SD card doesn't work in my recovery mode because there is no SD slot. How else can I install the files?

LU620187 Rooting. Installing Recovery

I have currently LU620187 stock rom installed. I want to flash custom ROM. For this I am trying to flash the LU620042_00.kdz.But the flash tool KDZ_FW_UPD.exe crashing giving this error
MOD Up testEX MFC Application has stopped working
I have followed all the steps carefully but still same error. My OS is windows 7
http://forum.xda-developers.com/showthread.php?t=2149211
use this guide,it never failed me dont know for other ,just make sure you follow the guide CAREFULLY & u have the kdz.Use this guide ONLY for flashing the kdz,but u can use the next step from other guide after flashing the kdz .
I already followed the same guide but after step 12 no other window Choose “Different Country” opens and while the LG software updater is opened.
ahsanshah said:
I already followed the same guide but after step 12 no other window Choose “Different Country” opens and while the LG software updater is opened.
Click to expand...
Click to collapse
Hi,
Just spent a day figuring out the issue.
1. The software is now checking online and require internet, when you connect to internet it downloads the files from internet and you can not use the KDZ file
2. In order to use the KDZ file you have to find a older version
Check this URL,
http://forum.shiftdelete.net/lg/364123-lg-g2-kzd-yukleme-lg_kdz_fw-update_offlinefix.html
It has a download link to this file [http://dosya.co/xixcjv2lkth6/LG_KDZ_FW-Update_OfflineFix.rar.html]
1. change 'hosts' file in C:\Windows\System32\drivers\etc and add - 127.0.0.1 csmg.lgmobile.com
2. Install some webserver, i am a webdeveloper so I already had APACHE web server installed.
3. By default, apache listens to port 80, change it to 9002 as the update software try connecting to lgmobile.com on this port
4. When done, follow the tutorial on the Turkish forum... here is something which i understood from there
1 - lg_kdz_fw-update_offlinefix \ b2cappsetup Extract these folders somewhere. There are two folders, "LGMOBILEAX FIX", "LG_KDZ_FW-Update_OfflineFix"
2 - c: \ ProgramData \ lgmobileax delete the contents. (If you can not find the folder create an empty folder)
3 - "lgmobileax fix" paste the files in the c: \ ProgramData \ lgmobileax folder
4 - C: \ Windows \ System32 \ drivers \ etc folder, scroll to and open the hosts file with notepad and at the bottom in "127.0.0.1 csmg.lgmobile.co I type" (without quotes)
5 - automatic offline file, run the procedure and confirm the warning GROUPS - i dont know what does that mean, so ignore it :laugh:
6 - There is a VBS file, well you can run from there or manually follow the tutorial to run the windows enabler and other file using win xp mode and stuff, you know what you are doig... right?
7 - Turn your phone settings developer settings and USB debugging mode on, if your phone is in DOWNLOAD MODE then no worries
8 - unmute your phone by pressing and holding the usb cable. will go into download mode.
9 - R & D test tool 3gqct in the program and bring the selected diag.
10 - at the bottom right of the screen windows enabler program has opened. Click it once and turn it over ten written.
11 - kdz select your file and click on the normal web upgrade test.
12 - The Republic of Korea has been selected under the on-screen language is not set in quarters. Click OK to start processing of fear.
13 - the phone will be opened automatically after installation.
(If your phone restarts itself constantly by long-pressing the power button, power off. Then take a hard format. Then did not pick up the phone I have installed has been installed smoothly kdz file)
so i hope this will work for you,,,
if it does.. press thanks
thanks
Thanks dear for looking into the problem. Will try it and update you later
aamirrajpoot said:
Hi,
Just spent a day figuring out the issue.
1. The software is now checking online and require internet, when you connect to internet it downloads the files from internet and you can not use the KDZ file
2. In order to use the KDZ file you have to find a older version
Check this URL,
http://forum.shiftdelete.net/lg/364123-lg-g2-kzd-yukleme-lg_kdz_fw-update_offlinefix.html
It has a download link to this file [http://dosya.co/xixcjv2lkth6/LG_KDZ_FW-Update_OfflineFix.rar.html]
1. change 'hosts' file in C:\Windows\System32\drivers\etc and add - 127.0.0.1 csmg.lgmobile.com
2. Install some webserver, i am a webdeveloper so I already had APACHE web server installed.
3. By default, apache listens to port 80, change it to 9002 as the update software try connecting to lgmobile.com on this port
4. When done, follow the tutorial on the Turkish forum... here is something which i understood from there
1 - lg_kdz_fw-update_offlinefix \ b2cappsetup Extract these folders somewhere. There are two folders, "LGMOBILEAX FIX", "LG_KDZ_FW-Update_OfflineFix"
2 - c: \ ProgramData \ lgmobileax delete the contents. (If you can not find the folder create an empty folder)
3 - "lgmobileax fix" paste the files in the c: \ ProgramData \ lgmobileax folder
4 - C: \ Windows \ System32 \ drivers \ etc folder, scroll to and open the hosts file with notepad and at the bottom in "127.0.0.1 csmg.lgmobile.co I type" (without quotes)
5 - automatic offline file, run the procedure and confirm the warning GROUPS - i dont know what does that mean, so ignore it :laugh:
6 - There is a VBS file, well you can run from there or manually follow the tutorial to run the windows enabler and other file using win xp mode and stuff, you know what you are doig... right?
7 - Turn your phone settings developer settings and USB debugging mode on, if your phone is in DOWNLOAD MODE then no worries
8 - unmute your phone by pressing and holding the usb cable. will go into download mode.
9 - R & D test tool 3gqct in the program and bring the selected diag.
10 - at the bottom right of the screen windows enabler program has opened. Click it once and turn it over ten written.
11 - kdz select your file and click on the normal web upgrade test.
12 - The Republic of Korea has been selected under the on-screen language is not set in quarters. Click OK to start processing of fear.
13 - the phone will be opened automatically after installation.
(If your phone restarts itself constantly by long-pressing the power button, power off. Then take a hard format. Then did not pick up the phone I have installed has been installed smoothly kdz file)
so i hope this will work for you,,,
if it does.. press thanks
thanks
Click to expand...
Click to collapse

[CLOSED] Technical post with information

Disclaimer: I have not created this tool nor do I hold any rights to the software. I also do no take any responsibility for whatever happens if you decide to use the software. Consider yourself warned.​Theory:
= {Mod edit}[/I]]Questions & Answers (FAQ)
= Also here, and {Mod edit}[/I]]here you will get answers to almost all your questions on HTC Desire 630 Dual Sim, namely: Instructions for Android 6.0, Codes, Fastboot Mode, Bootloader mode, Soft Reset, Hard Reset, Recovery (TWRP).
= Check IMEI
= Check blacklist status
= {Mod edit}[/I]]Tips & Tricks
= Universal extension decryption and extraction tool HTC RUU (There are cases, as here, that the downloaded firmware archive does not open in the usual way - it is encrypted. The tool decrypts and extracts RUU.EXE or ROM.ZIP and creates a workable system.img + boot.img (in OUT / system), as well as the remaining files (in OUT / firmware), such as: firmware, preinstalled applications, etc.)
= {Mod edit}[/I]]Android CODES
= HTC Desire 630 on the forum.xda ... {Mod edit}[/I]]forum.gsmdevelopers.com
= Recovery after the "brick" =​= {Mod edit}[/I]]What is ADB?
Download:
1. Some, in my opinion, interesting applications, tested on HTC Desire 630 Dual Sim:
= Open camera
= ShutApp (namely, this version; launch apk shortcut - answered questions - pulled the widget onto the desktop - went to Settings in the "Security" - "Device Administrators - checked this application - use)
= Via Browser (not affiliated with Google; creates and restores your bookmark file; easy and quick)
= {Mod edit}[/I]]glaz.tv
= {Mod edit}[/I]]Soft Lock Screen (protects the battery and power button; after installation, check the checkbox in the "Administrators"; to use take the first widget)
= SlimLauncher (I always change to this one, simple and enough settings; pull out the widget twice: once - all applications and leave it on the navigation panel, the second - settings, after settings you delete from the screen; on this device, while there is no root-rights, install via .apk, on the devices with root-rights I create the SlimLauncher folder, put the APK file in it and through Root Explorer I place this folder in / system / app and reboot the device).
= {Mod edit}[/I]]Stellio Music Player (decent player, reads all formats).
2. TWRP by Captain_Throwback ... and ... here from the same author, as well as {Mod edit}[/I]]TWRP by {Mod edit}[/I]]еёвжик (this recovery contains a full-fledged file manager, convenient to use; with it, you can remove unnecessary garbage, make changes to build.prop ... And this recovery does not produce any errors during backup).
3. Stock firmware: {Mod edit}[/I]]here (registration is required and select status: free or paid, but our firmware - paid), as well as
{Mod edit}[/I]]here ... {Mod edit}[/I]]here (by the way, it also offers some kind custom firmware) and here.
PS: HTC servers (Rom update utility), be it .EXE or .ZIP, come in various formats and are usually encrypted, so access to files inside is “limited”. To open some archives and take their component parts, it is proposed Decryption tool.
= Stock components (boot, Recovery, Instruction and discussion) ... and ... Stock recovery =
4. RUU и HBOOT for Desire 630 Europe Dual Sim.
5. {Mod edit}[/I]]Drivers
User Benefits:
1. There is a ROOT!!!:
= CHARGING the device up to 90 - 100%;
= We remove the bootloader lock through {Mod edit}[/I]]the standard procedure;
= Throw SuperSU on SD (or on the internal memory);
= We sew custom recovery {Mod edit}[/I]]TWRP;
= We load in TWRP, we make a backup of the system;
= Install {Mod edit}[/I]]Super SU from zip;
= Reboot. The device will reboot 2 times, but then it will start normally.
2. So, having received the root and installing TWRP, we managed to start the sound from two speakers
{Mod edit}[/I]]First file
{Mod edit}[/I]]Second file, which we will replace
A small instruction:
= Copy the mixer_paths.xml file to the root of the phone;
= Reboot and enter recovery (TWRP);
= Go to "Mount" -> tick "System" and return;
= Go to File managerg -> sdcard-> we tap at our mixer_paths.xml file and press "copy";
= Then we will be thrown into the system folder, select "etc" and click "paste";
= The system will replace the file and offers to restart the phone, click and voila.
3. Third-party applications for obtaining ROOT only work on Android 6.0.1. But at the same time, everything in its path (in particular the core) is ignored, after which, at least, the correct display of the charge breaks. And this is only one, visible bug, but how much is still breaking under the hood ...
Therefore, I never recommend anyone to use "OneClickRoot" applications to get ROOT, if there are normal, human methods. "King (o) Root" and similar programs use known vulnerabilities in Android to get ROOT, which a priori cannot be a stable process + It is not known what else these applications are creating with the device (in addition to obtaining the ROOT curve).
4. Set LTE (4g):
We type * # * # 4636 # * # *, go to "Phone Information", find the line "Set preferred network type", select "GSM / WCDMA / LTE auto" in the pop-up window, click "Back" and enjoy.
5. HTC 0ne m8 camera for desire 630
6. {Mod edit}
7. Installing Custom Recovery and SuperSU:
1) first on the device we enter the "For Developers" mode (7 times by build number), go in and turn on:
USB debugging
OEM Unlock
2) we do everything according to the instructions {Mod edit}[/I]]Unlock HTC Bootloader (Sorry for the Russian language, Google will help you)
= after installing the drivers, restart the PC;
= in FASTBOOT mode a red FASTBOOT USB message will appear;
= in ADB RUN in fastboot mode, you need to look for the device in: 1 - Device attached? => 2 - Device attached fastboot?
= after copying Token via ADB RUN, copy it to a TXT document and replace everything (bootloader) with nothing so that Token is free;
= if you accidentally go into the TWRP that has not yet been installed, it is best to keep the buttons (Volume down + power)
3) install custom TWRP:
= download {Mod edit}[/I]]TWRP and {Mod edit}[/I]]Super-SU
Attention!!! Before installing custom recovery, copy the SuperSU file to SD (or internal memory).
= Install TWRP according to the instructions {Mod edit}[/I]]this;
4) go to fastboot and there in Recovery;
5) (optional) we make a backup only of the System section;
6) flash the SuperSU file and return to our OS
PS: 1) recovery slows down so be careful, do not rush;
2) after installing custom recovery before launch there will be a red inscription, but only there it will be, it will not be anywhere else.
8. Who needs animation in the weather:
= download {Mod edit}[/I]]archive and unpack it;
= go to TWRP;
= mount the System partition;
= go to the TWRP conductor;
= copy the weather folder from the archive to system / media;
= reboot device
(It should be like this: system/media/weather)
9. Restore htc Desire 630 system from TWRP backups:
= download backups: here and here (only two parts);
= installation instructions:
a) starting from here and reading the posts below;
b) watch video instructions: {Mod edit}[/I]]here and {Mod edit}[/I]"]here
10. Firmware device in factory condition with a closed bootloader, native boot and recovery:
= Install {Mod edit}[/I]]drivers;
= On the phone off, hold the volume button down and turn it on. Must go into bootloader mode;
= Press the on button once to switch to fastboot mode;
= Connect usb-cable to the phone. After installing the drivers, the screen will display "fastboot usb";
= Download archive with European firmware;
= You start in the archive ARUWizard.exe and follow the instructions of the program.
11. Wi-fi and bluetooth have earned!:
= Disabled synchronization of date and time, and set the clock a year ago;
= I reset the network settings (Settings -> Backup and reset -> Reset network settings -> Reset settings);
= Rebooted the device, and then a miracle - wi-fi and bluetooth earned!
Then he simply turned on the date and time synchronization, rebooted the phone again, and reset the network settings again. So far, the flight is normal, wi-fi and bluetooth are working.
12. Reset FRP (Google account lock) after restoring factory settings:
- Open the keyboard settings by long pressing the gear;
- "Personal Dictionary";
- HTCVR;
- long press on the line - "Select all" - three dots - "Send";
- long press on any of the applications that appeared in the context menu "Share with";
- click "<About the application" and get into the settings;
- Open "Google Settings" - "Search and Tips" - "Google Now Tips" - "Show Tips" - NO;
- Search and download google account 6.0.1 .apk and QuickShortcutMaker .apk;
- We type in the search for “Downloads” and in the resultant search, click on the “Downloads” icon;
- Install the previously downloaded 1-google account 6.0.1 apk and 2-QuickShortcutMaker apk ("Installation is blocked" - "Settings" - put a checkmark "Unknown sources" - OK - back);
- After installing QuickShortcutMaker, click "Open";
- in the field "Enter a keyword" we type in a Google account - click on "Google Accounts" - "Enter your email address and password" where LoginActivity - "View" - 3 points - "Login in the browser" - Ok - enter your Google account - password from it.;
- Throws again in QuickShortcutMaker.
Done, reboot the device, rejoice.
Reserved
THREAD CLOSED on request of OP!

Categories

Resources