need files - GT540 Optimus General

hi could someone upload these files please
fastboot.exe
adb.exe
and the .dll file that make both run properly
thanks in advanced i am going to make a easy filing tool for learners to use
edit: got the files i needed

here you go : Link
Code:
adb.exe
fastboot.exe
AdbWinApi.dll
AdbWinUsbApi.dll
CMD.exe

Related

copy files by dos or vbs script to SD-Card

Hi,
anyone know how to copy files to the storage card?
Not be using the ActivSync!
To clearify i want to do something like executing this dos command:
copy C:\foo.zip \?Mobile Device?\Storage\foo.zip
I know it can be done by the Explorer but i want to do automaic
on special events!
Greets
fos
I wrote a tool for that, 'pput.exe' see http://www.xs4all.nl/~itsme/projects/xda/tools.html or http://wiki.xda-developers.com/wiki/XdaUtils
I'm looking for a set of tools that enable copy using a command on the device (for instance run "robocopy /r \Windows\a.txt \Storage Card" to copy a.txt and overwrite it if it exists, even when it's readonly... Mortscript doesn't support that
itsme tools
itsme said:
I wrote a tool for that, 'pput.exe' see http://www.xs4all.nl/~itsme/projects/xda/tools.html or http://wiki.xda-developers.com/wiki/XdaUtils
Click to expand...
Click to collapse
@Itsme, How can I copy a whole folder and all the files and dirs inside? I have not managed.

CrunchIT Method

A Type of COMPRESS EXTENDED ROM that uses the SelF eXtracting Archive (SFX), done thru a Zip Program(Pocket Rar, Winzip, or Winrar), Zip it then Make a SFX with Nsctech CrunchIT 5.0, then add the XdA2JoJo.v3.0.1t.CAB in config.txt to automatically execute the ExtROM.exe and extract the files to TEMP folder, the files will be executed by autorun and needed to specify the \TEMP\ as the path, after installing all program files, it will remove the cab files in the TEMP folder with wei's Fast Cleanup 1.3
.. for more details about the CrunchIT Method Click Here

nk.bin and dumprom

Hello,
I tried to extract nk.bin with dumprom util and it was extracted well.
But, dumprom have any bug.
After dumprom util extract files from nk.nb0, it change arm files to mips files.
I extracted files as the following steps;
First, download nk.bin from attached files.
One is arm nk.bin file for wince 5.0 and the other is arm nk.bin file for wince 6.0.
And, download nkbintools files to extract bin image files.
nkbintools also have dumprom util.
1. to dump the content of a nk.bin:
viewbin.exe nk.bin
(write down start and length)
2. cvrtbin -r -a START -w 32 -l LENGTH nk.bin
this command converts the nk.bin to a nk.nb0 (START and LENGTH from the command bevor)
3. dumprom.exe -d dump -v -5 nk.nb0
the content of the nk.bin will be written in the directory "dump". It must exists, otherwise an error occurs.
4. now, see files that is extracted and you will know that they are changed to MIPS files.
Anybody who know why they are changed MIPS files?
oh, thank you so very much... ive been trying for days to extract some nk.bin for some crypton nav...
It worked!!! THANK YOU!!!
Hi wong7942,
thank you very much for providing the images!
I wanted to extract the WinCE6 image to take some files out. My Navigon 2510 explorer is missing important core parts for modding (explorer.exe, control panel,...).
After extracting and copying to Device, the system says "not a valid exe". But at least on my Windows the dll looks right (Processor architecture ARM).
Any idea how to use the extracted files on PNA?
Thanks
Morpheus
HOw to make wince NK.bin file from dump files
CAn anybody tell me HOw to make wince NK.bin file from dump files .
////////////////////////////////////////////////////////////////////////////////////
wong7942 said:
Hello,
I tried to extract nk.bin with dumprom util and it was extracted well.
But, dumprom have any bug.
After dumprom util extract files from nk.nb0, it change arm files to mips files.
I extracted files as the following steps;
First, download nk.bin from attached files.
One is arm nk.bin file for wince 5.0 and the other is arm nk.bin file for wince 6.0.
And, download nkbintools files to extract bin image files.
nkbintools also have dumprom util.
1. to dump the content of a nk.bin:
viewbin.exe nk.bin
(write down start and length)
2. cvrtbin -r -a START -w 32 -l LENGTH nk.bin
this command converts the nk.bin to a nk.nb0 (START and LENGTH from the command bevor)
3. dumprom.exe -d dump -v -5 nk.nb0
the content of the nk.bin will be written in the directory "dump". It must exists, otherwise an error occurs.
4. now, see files that is extracted and you will know that they are changed to MIPS files.
Anybody who know why they are changed MIPS files?
Click to expand...
Click to collapse
kumar08 said:
CAn anybody tell me HOw to make wince NK.bin file from dump files .
////////////////////////////////////////////////////////////////////////////////////
Click to expand...
Click to collapse
i need to know too
please somebody help us

What software do I need to decompile a apk?

I need a program to decompile a apk for cm7, to make a rom and my question is what program do I need? from already thank :laugh:
frixed said:
I need a program to decompile a apk for cm7, to make a rom and my question is what program do I need? from already thank :laugh:
Click to expand...
Click to collapse
Try this guide: http://forum.xda-developers.com/showthread.php?t=1989533
you mean like extracting the files from apk file...........you can always use 7zip or winrar
it will extract the file in it like as if unzipping any file.....there you will find the xml files and any media and metadata folder dont know what else
you can use ApkMultiTool to decompile, edit, sign and install apks
apktool & the likes will generate smali code, which is a real mess. Here's how you should proceed to get readable java sources from an apk (for educational purposes only!)
Use apktool only to extract the /res folder from an apk
Extract the classes.dex from your apk (either with an archive manager or in terminal with the following command) :
Code:
unzip yourapp.apk classes.dex
Download dex2jar, put your classes.dex in the same folder and cd to it, then :
Code:
bash d2j-dex2jar.sh classes.dex
Download JD-GUI, put it in the same folder as dex2jar & classes.dex and cd to it, then :
Code:
./jd-gui classes.dex.dex2jar.jar /[COLOR="Green"]/or whatever the generated .jar file's name is[/COLOR]
This will open the jd-gui IDE with all the java sources of your apk, hit source/export all sources (or something like that, I don't remember exactly)
Add the /res folder you extracted with apktool to the /src folder you extracted with dex2jar/jd-gui and import the whole thing as existing Android code into Eclipse
There you go, you now have a full eclipse project out of an apk, the decompilation might have generated a few errors in the code during the process though, you'll need to fix them to be able to rebuild the apk.

How to extract the boot.img file from the oneplus 8 firmware for magisk rooting

Install Python for Windows - Windows is the easiest
Download Payload Dumper (you can find it on XDA by searching or google it)
Download your correct firmware file and unzip it, then discard everything except the payload.bin file - that's the only one you need
Make a desktop folder and name it anything you want. I named mine Python.
Install Python inside that folder.
Take the contents of the Payload Dumper (all the files) and put them in the folder also.
Also put the payload.bin file in that folder
Now open a command prompt ( you can do it in the address bar inside that python folder or whatever you named it by typing CMD).
Run the following two commands in terminal: python -m pip install -r requirements.txt
and the second: python payload_dumper.py payload.bin
that's it. The boot.img and other files will be in the output folder.
cityneversleepz said:
Install Python for Windows - Windows is the easiest
Download Payload Dumper (you can find it on XDA by
...
that's it. The boot.img and other files will be in the output folder.
Click to expand...
Click to collapse
Hi, that's not a question, so this belongs to the guide and discussion thread.
Thanks for doing that next time
cityneversleepz said:
The boot.img and other files will be in the output folder.
Click to expand...
Click to collapse
you could also just throw that payload.bin into the input folder in the payload dumper folder and double click payload dumper.exe

Categories

Resources