Hi All,
I thought I might share this little script I have made.
Very Simply it is a Batch file that Will UnTar / Tar Oidin compatible files to flash. It also selects the relevant files for each type (Phone/PDA/CSC/Full).
Now also will create .md5 files for flashing and can compress to 7 zip!.
It will automatically use the files needed to make a CSC, Phone, PDA or Full type flash file and can auto split a Single Flash package into 3 separate ones!
It is very basic but very handy for creating a ROM package for a certain Country/CSC or with a certain Modem.
Also Splits a single ROM into a PDA/Phone/CSC.
UPDATE:
7/2 - v2 - Added MD5 support to script. Use v2.
9/2 - v3 - Lots of code cleanup, should be easier to use. Also added 7-zip support!
* Note directory layout has now changed, less confusing now I hope
If this really works, then You bohdans are fu**ing AWESOME!
Confirmed to be working on ZSJG4
I use peazip for the same work, but an automated script is way better. Congrats.
md5sum support
bohdans said:
Hi All,
I thought I might share this little script I have made.
Very Simply it is a Batch file that Will UnTar / Tar Oidin compatible files to flash. It also selects the relevant files for each type (Phone/PDA/CSC/Full).
It is very basic but very handy for creating a ROM package for certain country or with a Certain Modem.
Also Splits a single ROM into a PDA/Phone/CSC.
Click to expand...
Click to collapse
Thanks for the script!
Could you also add md5sum support
lownoise said:
Thanks for the script!
Could you also add md5sum support
Click to expand...
Click to collapse
Hi,
MD5 Support added
Usage Guide
Usage guide for noob please
Thanks,
Last future request for now......
bohdans said:
Hi,
MD5 Support added
Click to expand...
Click to collapse
Works great
Last future request for now: after the md5 files are created 7zip the files to make them in size smaller for the upload....
zion12 said:
Usage guide for noob please
Thanks,
Click to expand...
Click to collapse
Instructions are pretty clear in the program itself.
Bump............................................................... 10
bohdans said:
Hi All,
I thought I might share this little script I have made.
Very Simply it is a Batch file that Will UnTar / Tar Oidin compatible files to flash. It also selects the relevant files for each type (Phone/PDA/CSC/Full).
It is very basic but very handy for creating a ROM package for certain country or with a Certain Modem.
Also Splits a single ROM into a PDA/Phone/CSC.
UPDATE:
7/2 - Added MD5 support to script. Use v2.
Click to expand...
Click to collapse
Option 8 misses from menu (I put the tar file in "in" and still misses).
coradux said:
Option 8 misses from menu (I put the tar file in "in" and still misses).
Click to expand...
Click to collapse
Hi sorry it its looking in out folder, I will fix it tonight and add 7 zip
Sent from my GT-I9000 using XDA App
coradux said:
Option 8 misses from menu (I put the tar file in "in" and still misses).
Click to expand...
Click to collapse
Hi,
Issue is fixed in Version 3. Also know has a packaged and extracted folder instead of in and out, hopefully that will make more sense. Tar's, MD5's and 7-zip files are in Packaged, all the raw files are in extracted.
Also added 7-zip support as requested.
bohdans said:
Hi,
Issue is fixed in Version 3. Also know has a packaged and extracted folder instead of in and out, hopefully that will make more sense. Tar's, MD5's and 7-zip files are in Packaged, all the raw files are in extracted.
Also added 7-zip support as requested.
Click to expand...
Click to collapse
Hi,
I have created a PDA package of XWJS5 with SpeedMod k13a 500hz using your APP. Worked correctly except for one thing. The main ******.tar file containing all the files wasn't detected by option 8 whether I put it in /extracted or in the main folder. Where do I put it? I used Peazip ultimately to extract my *.tar.
PS : I used your V3
ragin said:
Hi,
I have created a PDA package of XWJS5 with SpeedMod k13a 500hz using your APP. Worked correctly except for one thing. The main ******.tar file containing all the files wasn't detected by option 8 whether I put it in /extracted or in the main folder. Where do I put it? I used Peazip ultimately to extract my *.tar.
PS : I used your V3
Click to expand...
Click to collapse
So you need to place your original tar into the packaged folder
Sent from my GT-I9000 using XDA App
bohdans, You sir are FREAKING AWESOME!!! I'm still working on understanding how to make my own ROM but this will most help greatly!
Nice idea once I used Win 7. WinXP does not have CHOICE.EXE/COM by default. SET /p works with minor configuration.
Good work.
IamSonoma said:
Nice idea once I used Win 7. WinXP does not have CHOICE.EXE/COM by default. SET /p works with minor configuration.
Good work.
Click to expand...
Click to collapse
Hi,
I dont have any PC's that still run XP. IF you want to post the modifications it needs I will update the Script and give you credit
bohdans said:
Hi,
I dont have any PC's that still run XP. IF you want to post the modifications it needs I will update the Script and give you credit
Click to expand...
Click to collapse
It would take a lot of work. It will involve changing every CHOICE command. I have rewritten the main and full sections.
I believe pulling the choice command out of win 7 (c:\windows) might be easier.
I will test it later today.
Edit: The windows 7 choice won't work
The first menu is easy...
Code:
rem CHOICE /C:123456789 /N /M "Please Select Type of ROM to Package:"
rem IF ERRORLEVEL 9 GOTO EXIT
rem IF ERRORLEVEL 8 GOTO EXTRACT
rem IF ERRORLEVEL 7 GOTO COMPRESS
rem IF ERRORLEVEL 6 GOTO MD5
rem IF ERRORLEVEL 5 GOTO MSPLIT
rem IF ERRORLEVEL 4 GOTO MCSC
rem IF ERRORLEVEL 3 GOTO MPHONE
rem IF ERRORLEVEL 2 GOTO MPDA
rem IF ERRORLEVEL 1 GOTO MFULL
SET menuchoice=0
SET /P menuchoice=Please make your decision:
ECHO.
IF %menuchoice%==1 (GOTO MFULL)
IF %menuchoice%==2 (GOTO MPDA)
IF %menuchoice%==3 (GOTO MPHONE)
IF %menuchoice%==4 (GOTO MCSC)
IF %menuchoice%==5 (GOTO MSPLIT)
IF %menuchoice%==6 (GOTO MD5)
IF %menuchoice%==7 (GOTO COMPRESS)
IF %menuchoice%==8 (GOTO EXTRACT)
IF %menuchoice%==9 (GOTO EXIT)
The second gets complicated. It will take some rewriting.
Code:
REM CHOICE /C YN /M "WARNING: Do you wish to Continue? (This will Delete any FULL.tar files in \compressed)"
REM IF ERRORLEVEL 2 GOTO MENU
set /p yn="WARNING: Do you wish to Continue? (This will Delete any FULL.tar files in \compressed)"
if "%yn%"=="" (echo Not entry)
if /I "%yn%"=="n" (GOTO MENU)
if /I "%yn%"=="y" (GOTO MFULL_TAR)
If others can use Vista and Win 7 "CHOICE" command I probably would not invest a lot of time in it unless you want too. SET /P is universal and works for WIN XP and WIN7.
I have WIN 7 at work and it does as it should.
Ok,
So i know this is for the I9000, but theoretically will it work for the US galaxy S versions?
I'm wanting to create an Odin Flash file for the Galaxy S SCH-i500 "Showcase" since we're the only Galaxy S that doesn't have one.. And if I could use this to get this done it would be VERY helpful!!!
I tried creating a .tar from zipping my showcase_system.rfs and the zImage together but that didn't work.. I don't know if it's just b/c we don't have a pit file or what..
Any suggestions would be VERY helpful and appreciated...
Thanks
Related
Huge Credit goes to all involved in this project!
But foremost a huge thx to addi that helped me setup Cygwin!!!!
Thank you addi!
Click to expand...
Click to collapse
If you want to support me and my work,
donate towards my notebook fund.
Perkas Notebook Fund
People who has donated, a HUGE THX!
Click to expand...
Click to collapse
This is how I make my ROMs in w7 Ultimate 64bit
Software needed:
Cygwin http://www.cygwin.com/
dsixda_Android_Kitchen, http://forum.xda-developers.com/showthread.php?t=633246
Put the kitchen here: http://imageshack.us/photo/my-images/808/installkitchen.png/
Magic iso http://www.magiciso.com/
7zip or winrar
APK manager http://forum.xda-developers.com/showthread.php?t=695701
Template :
PerkaROM Template at the end of this post.
Stock firmware :
In this guide JVP 2.3.4
How to :
* Get the modem and kernel (zImage) you want to use
* Un tar PDA.tar and CSC.tar
* Use Magic iso to extract factoryfs.rfs, Got to File, Open,
choose show all files and browse to the facoryfs and open, when open right click the NO NAME, up to your left and extract it.
* So now make a folder called system
* Put the extracted factoryfs in the system folder and zip it. (I use no compression as its faster)
* Now u have a zip called system.zip with a system folder in it.
* Put the system.zip in the dsi kitchen folder /original_update
* Start the kitchen and use option 1, go with default options.
* Use option 0 advanced, then 11 and then option b to deodex system apk and framework, and w8
* Now save the system folder from working folder in the Kitchen
* Get my template
* Dont extract the Template just open it in winrar or similar.
* Copy your modem and zImage (kernel) to the update folder
* Now copy your system to the template /system
* Use Magic iso to extract cache.rfs, Got to File, Open,
choose show all files and browse to the cache.rfs and open, when open right click the NO NAME, up to your left and extract it.
* Unzip the sec_csc.zip and copy the files to system, (1 csc folder and 2 files)
* Now u should have a working stock ROM to flash in CWM (rooted)
* After testing the ROM you can optimize and zipalign it.
* In apk manager folder /place-apk-here-to-batch-optimize you put
framework-res.apk, twframework-res.apk and all system apks but not these:
AxT9IME, Camera, Email, MMS, Phone, Screen Capture, Settings, Swype, Thinkdroid, Voice search
* Choose option 15
* Then choose both(zp)
* Let it run and done.
* Now put back the apks where they belong in the ROM.
* Flash your optimized ROM and feel the difference!
Here is a video of the guide made by Flozzo so go and press his thx button
Check out his Theme here
Thank you Flozzo!!!
Press the thank you button if you like the guide THX!
Nice guide, Perka.
great job buddy
WOW, this will come handy to a lot of guys. Sticky material.
perka you always do great job with guides....so is it with this one
congrats mate
Hey Perka!
From the Captivate forums, I would like to say this guide is a fantastic base for creating ROMs, I have created my own ROM using this guide by coldflid:
http://forum.xda-developers.com/showthread.php?t=1142104
But this is yet another fantastic guide, and now putting them side by side on and reading both would have saved me a couple hours of reading on google.
Hahah but great guide!
THANK A LOT
This is a great guide. Nice job mate.
Thank you all for your kind words
Perka said:
Thank you all for your kind words
Click to expand...
Click to collapse
Thanks for the tutorial
Enviado desde mi GT-I9000 usando Tapatalk
Thanks very useful!
Please help!I made my own rom but when i want to flash via recovery it says "installation aborted".What should i do?
Sorry for my english!
So, did anyone use my guide?
Pls feel free to post anything regarding cooking ROM´s here.
Perka said:
So, did anyone use my guide?
Pls feel free to post anything regarding cooking ROM´s here.
Click to expand...
Click to collapse
I read it and its good
But I use kitchen and a stock ROM which is much easier but keep it up mate
Sent from my HD2 using XDA Premium App
Perka said:
So, did anyone use my guide?
Pls feel free to post anything regarding cooking ROM´s here.
Click to expand...
Click to collapse
I´ve used your guide, but I didn´t quite got through the magic iso process.I extracted but it gave me one single file like the one i had before.I think i got a bit confused in the iso progress.
francomile said:
I´ve used your guide, but I didn´t quite got through the magic iso process.I extracted but it gave me one single file like the one i had before.I think i got a bit confused in the iso progress.
Click to expand...
Click to collapse
Well did u open it?
When its open in magic iso, there's a window to your left with the file structure, right click and extract to a folder of your choice.
If u need it I can make some screens.
Post if u want them.
and pls ask if anything.
Ps. maybe u can just copy all to a folder?
norbi2011 said:
Thanks very useful!
Please help!I made my own rom but when i want to flash via recovery it says "installation aborted".What should i do?
Sorry for my english!
Click to expand...
Click to collapse
Hey I missed you post, sry, well
Its hard to say what is wrong,
Kernel?
Filesystem?
++++?
Pls tell me more what did you put in the rom?
And what rom are you on now?
Perka said:
Well did u open it?
When its open in magic iso, there's a window to your left with the file structure, right click and extract to a folder of your choice.
If u need it I can make some screens.
Post if u want them.
and pls ask if anything.
Ps. maybe u can just copy all to a folder?
Click to expand...
Click to collapse
Hey, thanks for the quick answer.'ve opened the magic iso serched for the file and pressed the option to extract, and it extracted in the location file i choosed, bu the extracted content its just the same as the original file, same size, same name, same rfs extention. What was i suposed to get with the extraction, several files? I'll try to make it again and try to extract it before anoying you to post some captures, if it doesn't works, i'll be back to be a pain in the ass again
Enviado desde mi GT-I9000 usando Tapatalk
Oh just forgot, nice to see your file stash pro app updating!thanks
Enviado desde mi GT-I9000 usando Tapatalk
francomile said:
Hey, thanks for the quick answer.'ve opened the magic iso serched for the file and pressed the option to extract, and it extracted in the location file i choosed, bu the extracted content its just the same as the original file, same size, same name, same rfs extention. What was i suposed to get with the extraction, several files? I'll try to make it again and try to extract it before anoying you to post some captures, if it doesn't works, i'll be back to be a pain in the ass again
Enviado desde mi GT-I9000 usando Tapatalk
Click to expand...
Click to collapse
OK, manage to do it. but now i have other question:
in system file do i put together the extracted content of factoryfs.rfs and cache.rfs withouth any other files ?
What about CSC extracted file? it contains also a cache.rfs.should I extract it too with magic iso? and shall i put all the CSC and PDA files toguether?? I ´m a bit messed up here, but just need you to clarify me better the whole PDA and CSC part, ...well I know that CSC goes on system but i don't really have clear if i need to extract the cache.rfs from CSC too. I hope you can understand me right, because I´m a bit confused too
francomile said:
OK, manage to do it. but now i have other question:
in system file do i put together the extracted content of factoryfs.rfs and cache.rfs withouth any other files ?
What about CSC extracted file? it contains also a cache.rfs.should I extract it too with magic iso? and shall i put all the CSC and PDA files toguether?? I ´m a bit messed up here, but just need you to clarify me better the whole PDA and CSC part, ...well I know that CSC goes on system but i don't really have clear if i need to extract the cache.rfs from CSC too. I hope you can understand me right, because I´m a bit confused too
Click to expand...
Click to collapse
* Put the extracted factoryfs in the system folder and zip it. (I use no compression as its faster)
Now this u deodex.
When its done.
* Unzip the csc zip and copy the files to system (to your deodexed system folder)
When theres a new FW out ill make a video
Hope this helps, if not, well, Ill have to make a video now
How can i create an updater-script?
edit:never mind
Here is a script to help remove some of the bloatware that comes on our stock ROMs. It is a pretty simple script and can be personalized by editing the updater-script file. You will need to have a custom recovery already flashed on your phone to use this mod (ie: Rogue, CWM, etc...). Just put the zip on your sdcard and flash like a ROM. This is for deodex roms only, but if the demand is high I'll update it to work with odex roms as well. The files that are removed are listed below.
I am not responsible for bad that things that happen as a result of flashing this.
Click to expand...
Click to collapse
Code:
[B][SIZE="4"]REMOVED LIST (odex files removed as well):[/SIZE][/B]
/system/etc/KiesAir - (Kies Stuff)
/system/etc/kies - (Kies Stuff)
/system/app/AxT9IME.apk - (Samsung Keyboard)
/system/app/Divx.apk - (DIVX player)
/system/app/Kies.apk - (Kies app)
/system/app/KiesAir.apk - (Connect to phone via wifi)
/system/app/kieswifi.apk - (Connect to Kies via wifi)
/system/app/Launcher2.apk - (Stock Launcher)
/system/app/MinimalHome.apk - (Minimal skin :confused:)
/system/app/MobilePrint.apk - (Access printers via wifi)
/system/app/MobileTrackerEngineTwo.apk - (Part of Samsung dive)
/system/app/MtpApplication.apk - (Needed to connect to Kies)
/system/app/PhotoRetouching.apk - (Photo app)
/system/app/PolarisOffice.apk - (Polaris office app)
/system/app/PressReader.apk - (Part of reader hub)
/system/app/SamsungAppsUNAService.apk - (Needed by Samsung Apps)
/system/app/SamsungWidget_ProgramMonitor.apk - (Program Monitor Widget)
/system/app/SelfTestMode.apk - (Self test mode)
/system/app/ShareApp.apk - (Share Applications to social media)
/system/app/SnsAccountFb.apk - (Samsung social hub facebook)
/system/app/SnsAccountLi.apk - (Samsung social hub linked in)
/system/app/SnsAccountTw.apk - (Samsung social hub twitter)
/system/app/SnsDisclaimer.apk - (Disclaimer showed by social hub)
/system/app/SnsImageCache.apk - (Used by Samsung social hub)
/system/app/SnsProvider.apk - (Used by Samsung social hub)
/system/app/SocialHub.apk - (Samsung social hub)
/system/app/SprintID.apk - (Sprint ID app)
/system/app/Term.apk - (Virtual terminal)
/system/app/TrimApp.apk - (Part of video editor)
/system/app/VideoEditor.apk - (Stock video editor)
/system/app/VisualizationWallpapers.apk - (Live Wallpapers)
/system/app/VoiceRecorder.apk - (Voice recorder app)
/system/app/VoiceSearch.apk - (Voice search-can be re-installed from market)
/system/app/VoiceToGo.apk - (Driving mode)
/system/app/WlanTest.apk - (Wifi test)
/system/app/wssyncmlnps.apk - ([URL="http://forum.samdroid.net/f28/apk-files-root-system-app-safe-delete-860/#post11147"]see here[/URL])
/system/app/BooksPhone.apk - Google Books
/system/app/BuddiesNow.apk - Buddies Now app
/system/app/Dlna.apk - Allshare.apk
/system/app/JobManager.apk - Samsung Task Manager
/system/app/LiveWallpapers.apk - Live Wallpapers
/system/app/Personalization.apk - ??????
/system/app/Protips.apk - Protips widget
/system/app/SamsungWidget_News.apk - Samsung News Widget
/system/app/SecretWallpaper1.apk - Wallpapers
/system/app/SecretWallpaper2.apk - Wallpapers
/system/app/SisoDrmProvider.apk - DRM (works with DrmUA.apk)
/system/app/Sprint_Installer.apk - Sprint Installer app
/system/app/SprintMobileWallet.apk - Sprint Mobile Wallet app
/system/app/MediaHub.apk - MediaHub app
Here is a rough guide on how to edit the script:
1. You need an archive program like 7zip or WinRAR to open the .zip file up.
2. Open the path (META-INF/com/google/android) until you see a file named updater-script.
3. Pull the updater-script file out of the archive and make your edits with Notepad++ (NOT REGULAR NOTEPAD).
4. Drag the updater-script back into the archive and select "store" as the compression type.
5. Put the .zip on your phone and flash.
If you are looking for a list of what can and cannot be removed, please look at these posts:
https://spreadsheets.google.com/spr...1gdDJRekl4QmkyNmIzUmRvX2h3UDVkQXc&output=html
http://forum.xda-developers.com/showpost.php?p=19240692&postcount=3
http://forum.xda-developers.com/showpost.php?p=18880512&postcount=1
Credits:
maddogin - list of removed apps that is primarily used here
smhtc - i tweaked/added to his script and made it usable for our phone
pulser_g2 - list of safe to remove app for i9100
Anyone else who I forgot.
Additional Link for Tapatalk/XDA app users:
http://www.mediafire.com/?qig7zkksf0195gb
Nice! Couldn't have made it easier
Sent from my SPH-D710 using xda premium
Good stuff, would like to see an odex version at some point.
Thank you..
Sent from my SPH-D710 using xda premium
How much space does this create, when using it as is, without adding or removing anything? Also, is there a list of what each apk listed is actually doing on our devices, so we know if we want it removed or not? Maybe not of all of them, as some are obvious, but of the ones that arent would be good!
KingOfThaJungle said:
How much space does this create, when using it as is, without adding or removing anything? Also, is there a list of what each apk listed is actually doing on our devices, so we know if we want it removed or not? Maybe not of all of them, as some are obvious, but of the ones that arent would be good!
Click to expand...
Click to collapse
I updated the list in the OP. Thanks for the suggestion.
I haven't tested how much space this creates so if someone on a stock rom would test for me that would be great.
EDIT:
I corrected the script error that wasn't deleting the /system/etc/ folders. I used "delete" rather than "delete recursive". N00bish, I know. Please re-download from OP.
Thanks for this. I'm not familiar with how to edit the updater script. I searched but nothing that explains it clearly. Provide some guidance/link?
texas83 said:
Thanks for this. I'm not familiar with how to edit the updater script. I searched but nothing that explains it clearly. Provide some guidance/link?
Click to expand...
Click to collapse
Here is a rough guide on how to edit the script:
1. You need an archive program like 7zip or WinRAR to open the .zip file up.
2. Open the path (META-INF/com/google/android) until you see a file named updater-script.
3. Pull the updater-script file out of the archive and make your edits with Notepad++ (NOT REGULAR NOTEPAD).
4. Drag the updater-script back into the archive and select "store" as the compression type.
5. Put the .zip on your phone and flash.
Not sure if you saw this link here but it was the list of stuff I first utilized when trying to debloat my rom. Maybe you can have 2 scripts one for real hard core de-bloating and another one like you have now... Quite sure you both have alot of the same stuff just trying to put more info out there.
Thanks alot for the script you would of saved me a lot of time....Now you can save others.
playya said:
Not sure if you saw this link here but it was the list of stuff I first utilized when trying to debloat my rom. Maybe you can have 2 scripts one for real hard core de-bloating and another one like you have now... Quite sure you both have alot of the same stuff just trying to put more info out there.
Thanks alot for the script you would of saved me a lot of time....Now you can save others.
Click to expand...
Click to collapse
I don't know how I missed your post.
I plan on adding some additional files as well as the odex stuff. I'll use your list to help with the explanations and determining what can and can't be removed. Thanks!!
+1 for an odex version
ericwgarza1 said:
I don't know how I missed your post.
I plan on adding some additional files as well as the odex stuff. I'll use your list to help with the explanations and determining what can and can't be removed. Thanks!!
Click to expand...
Click to collapse
Lol its not my post just a post I used to remove bloat from my phone....lol Its all good just trying to help out
Two questions:
1) What happens if we put an apk on the list to remove, and it just so happens that that either that apk is not there or it is misspelled?
2) Is there a way to edit the script to move them to a folder on the sd card rather than just deleting it? Just in case you want to re install it or need it....
If you haven't seen it already, I use this when I strip rom's down: http://forum.xda-developers.com/showpost.php?p=19240692&postcount=3
It doesn't have everything listed as to what it does, but clears a lot out. Other than what you have posted, all I really know is that vtt-sprint apk is the default voicemail app.
m_reyna_16 said:
Two questions:
1) What happens if we put an apk on the list to remove, and it just so happens that that either that apk is not there or it is misspelled?
2) Is there a way to edit the script to move them to a folder on the sd card rather than just deleting it? Just in case you want to re install it or need it....
Click to expand...
Click to collapse
1- It wont delete it
2- sure there is but these files in the system/app/ get pushed over and not installed. There are programs like androidcommander that can help assist you to do what it is you want done in batches
Recommend people actually try kies air, definitely not worthless bloat.
Sent from my SPH-D710 using Tapatalk
cray-z said:
If you haven't seen it already, I use this when I strip rom's down: http://forum.xda-developers.com/showpost.php?p=19240692&postcount=3
It doesn't have everything listed as to what it does, but clears a lot out. Other than what you have posted, all I really know is that vtt-sprint apk is the default voicemail app.
Click to expand...
Click to collapse
I hopefully plan on adding some additional stuff to this today/tonight. I'm still under the weather from the stomach flu and have some stuff for work to get out by the end of the day so that's why I said "hopefully".
playya said:
1- It wont delete it
2- sure there is but these files in the system/app/ get pushed over and not installed. There are programs like androidcommander that can help assist you to do what it is you want done in batches
Click to expand...
Click to collapse
yea but then again there are advantages as to editing the script...
- less storage space needed, unlike a program, regardless if it barely takes up space
- dont need to install a program for it, just run it through cwm after a flash...
- etc lol
so what would be the command to push it to the sd card? i know it involves mv but i dont know a lot about editing these scripts, all i need is the correct command via example and i think i can do it myself
m_reyna_16 said:
so what would be the command to push it to the sd card? i know it involves mv but i dont know a lot about editing these scripts, all i need is the correct command via example and i think i can do it myself
Click to expand...
Click to collapse
I don't believe that edify scripting supports the mv function like adb does. You'd probably have to write a .sh program to make something like this happen. I don't plan on implementing this feature but if someone wants to create it I will gladly add it to the zip and OP.
EDIT:
I have updated the script with that now removes .odex files as well. Enjoy!!!
Great job man!
Was waiting for an odex version of this script.
Thank you..
ericwgarza1 said:
I don't believe that edify scripting supports the mv function like adb does. You'd probably have to write a .sh program to make something like this happen. I don't plan on implementing this feature but if someone wants to create it I will gladly add it to the zip and OP.
EDIT:
I have updated the script with that now removes .odex files as well. Enjoy!!!
Click to expand...
Click to collapse
ericwgarza1 said:
Here is a rough guide on how to edit the script:
1. You need an archive program like 7zip or WinRAR to open the .zip file up.
2. Open the path (META-INF/com/google/android) until you see a file named updater-script.
3. Pull the updater-script file out of the archive and make your edits with Notepad++ (NOT REGULAR NOTEPAD).
4. Drag the updater-script back into the archive and select "store" as the compression type.
5. Put the .zip on your phone and flash.
Click to expand...
Click to collapse
EDIT*** Fixed... apparently had a bad download... re d/l and 7zip read it perfectly... thanks for your hard work! much appreciated!
=====================
ORIGNAL:::Apparently I am that bigger idiot that your sig is refferring to lol because I feel that I'm following these instructions perfectly and yet everytime I try to flash I get installation aborted.
I'm assuming Im not doing step 4 correctly because I have no idea what you're talking about with "store as the compression type" --- with Notepad++ or windows or 7zip???
I think the reason I'm not getting that far is because when I try to move to file in 7Zip --- it says "Unsupported compression method" error during the copy
Thanks --- all I want to do is keep the Samsung keyboard along with the Live Wallpapers
---------- Post added at 10:25 PM ---------- Previous post was at 09:51 PM ----------
Ummm one more question --- what made you remove Task Killer. Didn't even noticed it was on there --- what are people thoughts on the stock Samsung Task Killer... is it helpful? or Useless?
What you need .. ?
->Cygwin
-> DSIXda Kitchen
-> A windows/ Linux environment.
-> MagicISO
-> Base ROM --NOT CUSTOM ROM-- --AN OFFICIAL ROM--
-> 7-zip
Download official firmware .. !!
Extraction of RFS (Basic thing)
Well, THis is the First thing you should do.
Here are the steps:
-> Download a Firmware of your choice from the above link.
-> If you Firmware is in .zip format, be sure to extract the FW to a folder.
-> In the folder, you should find a PDA file ( The file which use put in the PDA place when you flash using ODIN)
-> Install 7-Zip if you dont have it, if you have it...Proceed to next step
->Right Click on the PDA file and open the archive using 7-zip.
-> Now, you can see a file named "system.rfs" or "factoryfs.rfs" or "systemFS.rfs", just copy the file to your C:\ (YOU CAN COPY IT ANYWHERE. I am taking C:\ as my base location)
Well, THis is the First thing you should do.
Here are the steps:
-> Download a Firmware of your choice from the above link.
-> If you Firmware is in .zip format, be sure to extract the FW to a folder.
-> In the folder, you should find a PDA file ( The file which use put in the PDA place when you flash using ODIN)
-> Install 7-Zip if you dont have it, if you have it...Proceed to next step
->Right Click on the PDA file and open the archive using 7-zip.
-> Now, you can see a file named "system.rfs" or "factoryfs.rfs" or "systemFS.rfs", just copy the file to your C:\ (YOU CAN COPY IT ANYWHERE. I am taking C:\ as my base location)
Note:- PDA file = .tar
End of Step 1
reserved 1
reserved 2
reserved 3
reserved 4
reserved 5
reserved 6
reserved 7
Reserved 8! xP
there're already a tut to make a rom for sgy. we can use it for comparison http://forum.xda-developers.com/showthread.php?t=1493319
http://forum.xda-developers.com/showthread.php?t=1590330
this one is for customizing
Ha ha ha not so much reserved guys
I have posted dis thread on a request so stop bulling
Sent From my lovely FIT..... !! lOvE u Fit
kurotsugi said:
there're already a tut to make a rom for sgy. we can use it for comparison http://forum.xda-developers.com/showthread.php?t=1493319
http://forum.xda-developers.com/showthread.php?t=1590330
this one is for customizing
Click to expand...
Click to collapse
this is just basic!!
For zipalign,deodex,root,busybox etc where is that ?
Dis thread will give the tut from the scratch !
And for error in script part u may help them !
If u give permsn i may post ur name too
Sent From my lovely FIT..... !! lOvE u Fit
you can use that post for spesific info about SGY. for an instance, you mentioned about system.rfs in your 1st post. well...SGY's stock rom doesn't have that kind of file. instead, it have system.img which somehow cannot extracted by magicISO. the common method used to build the kernel is a little bit differet too. you may check sgy.creed post about build a kernel. his method is not work for SGY but you can find a proper guide created by irfanbagus on 1st page.
kurotsugi said:
you can use that post for spesific info about SGY. for an instance, you mentioned about system.rfs in your 1st post. well...SGY's stock rom doesn't have that kind of file. instead, it have system.img which somehow cannot extracted by magicISO. the common method used to build the kernel is a little bit differet too. you may check sgy.creed post about build a kernel. his method is not work for SGY but you can find a proper guide created by irfanbagus on 1st page.
Click to expand...
Click to collapse
it must be having .rfs !
Wat does rfs mean ?
File system(root) so it must be having .. While flashing firmware through odin does it downloading system.rfs ??
Sent From my lovely FIT..... !! lOvE u Fit
and magic iso can extract .img file
Sent From my lovely FIT..... !! lOvE u Fit
not every device has same structure on stock firmware. some devices have system.rfs but some of them have system.img instead. as a prove, if you use dsixda kitchen, you'll see an option to extract system files from system.img file. you may also download a sgy's stock firmware from doky78's post to verify it.
btw, before you continue I'd like to suggest to make a sgy rom by yourself. no need to make a modified one. you only need to make a flashable stock rom.
factoryfs.rfs
Avilove.Cullen said:
->Right Click on the PDA file and open the archive using 7-zip.
-> Now, you can see a file named "system.rfs" or "factoryfs.rfs" or "systemFS.rfs"
Note: PDA file = .tar
Click to expand...
Click to collapse
SGY does not have factoryfs.rfs like other Galaxys.
but magicISO works on SGY odinized stock ROM tar files, when untarred. stock ROM is odexed though. deodexing gives you some smali/baksmali error messages.
lol...this old thread. forget it, mai. this guy know nothing about rom development. most of his guide is never could be used to build a rom for sgy.
OK so now people know this thread is not very useful. just to not waste anybody's time
And I thought this was a new thread
This kitchen is for begin easily with moding.
this is written for oxeded rom
Remember you need custum kernel (latest siyah or boeffla or perseus......... )
Why I do it? Coz when I flash a new rom I want extended power menu, CRT and MWC immediately so I decide to learn how to do.
This kitchen is done specially for this 3 mod but the scripts are very simple and you can easily modify them.
remember you need custum kernel (latest siyah or boeffla or perseus... )
You must have all drivers installed on your PC, ADB, 7zip, java…
Your phone must be rooted + busybox installed …
Be sure your firewall does not block ADB…
When you install a new rom unzip the archive WORK1.7z and change the name example WORK_XXEMA2 connect your phone then open then follow English menu.bat
You have a script in French
Forgive my English…
I am working under seven 64 bits… I not test it in another system…
If this post helps you push the thank button
You can use it like you want but don’t forget to put a link to this post.
script updated now u can reoxed without quitting first script
Let’s see the job:
Launch english menu (english) or menu (french)
let the script opened all long your mod you just follow all steps
for 1,16 and 17 you must plug your phone
The number 1 is very important without it you can do nothing…
1 = download from phone all the framework, FlashBarServices.apk and init.rc.
Init .rc is saved as init.doc for you open it and manually extract the BOOTCLASSPATH and write it in framework\BOOTCLASSPATH.txt
2= copy android.policy.odex and services.odex and FlashBarServices.odex to the mod directory
3= baskmali android.policy.odex to deoxeded it
4= edit GlobalActions.smali in android.policy (if you search it you’ll lose time!)
5= edit GlobalActions$SinglePressAction.smali in android.policy
6 = edit PhoneWindowManager.smali in android.policy
7 = copy the 3 globalactionsfiles files to android.policy for mod extended power menu
8 = smali android.policy to get classes.dex (the classes.dex is incorporated in the jar) and copy originals files and moded files to auto oxeder
9 = baskmali services.odex to deoxeded it
10 = edit PowerMangerService$ScreenBrightnessAnimator.smali in services
11 = edit MultiWindowManagerService.smali in services
12 = smali services to get classes.dex and copy originals files and moded files to auto oxeder
13 = baskmali FlashBarServices.odex to deoxeded it
14 = edit FlashBarInfo.smali in FlashBarServices
15 = smali FlashBarServices to get classes.dex and copy originals files and moded files to auto oxeder
16 = re-oxed an framework exemple android.policy.jar or Services.jar and send it to phone (plug the phone and be sure your firewall allow ADB)
17 = re-oxed an apk exemple FlashBarServices and send it to phone (plug thephone and be sure your firewall allow ADB)
echo 18 quit
After you connect your phone then open auto oxeder and you run the script (it’s untouched coz perfect) and you follow instructions it’s very simple.
Advices :
do a nandroid backup before all !!!
If you have a box like this
Code:
[LEFT]#getter for: Lcom/android/server/PowerManagerService;->mScreenBrightnessHandler:Landroid/os/Handler;
invoke-static {v7}, Lcom/android/server/PowerManagerService;->access$7300(Lcom/android/server/PowerManagerService;)Landroid/os/Handler;
move-result-object v7
const/16 v9, 0xa[/LEFT]
Push Ctrl then click in the box for select t all or you will just select the visible part of the text.
In documentation.7z you have copy of all mod, an init.rc saved as init.pdf inside you have BOOTCLASSPATH in red, you must remove all path in this text (system/framework) and save the result in BOOTCLASSPATH.txt (you have an exemple of BOOTCLASSPATH.txt)
MWC you take MWC apk here LegendK95 [MOD][4.1.2][Deodex/Odex]MultiWindow Complete Control {Deodex XXELLA Added!}
if u have trouble with Adb didable firewall to see if it is responsable
when you want to mod your phone remember that you often need custum kernel coz stock kernel not allow you to do what you want
Hope I forget nothing. Good moding
CREDITS:
THANKS TO ALL WITHOUT YOUR WORK NO KITCHEN
Sicopat [HOW TO][Windows] Manually Deodex and Odex back
Alkhafaf [UTIL][4/1/13] Auto Odexer Script- Now much easier to mod or theme your odex files
Sorg [Manual] Proper CRT-OFF for JB
magn2o [MOD/HOWTO] [UCALG1/UCALH1] Extended Power Menu
Cristiano Matos [HOW TO] AOSP Lock + Toggle| 3 Way Ext. Power Menu| CRT-OFF| Long Menu Press to Kill
LegendK95 [MOD][4.1.2][Deodex/Odex]MultiWindow Complete Control {Deodex XXELLA Added!}
DOWNLOAD
documentation.7z
WORK1.7z
other download =
work1 https://skydrive.live.com/redir?resid=4AE88384347A26BF!156&authkey=!AK9HeWrP4tz147I
documents https://skydrive.live.com/redir?resid=4AE88384347A26BF!155&authkey=!AO5-StT-l1_4dv4
this one is for de-oxeded rom
You need custum kernel (siyah, boeffla perseus...)
Need testers coz i have not de-oxeded rom
run english_deodex_menu.bat an follow all step as explain in first post
for instructions it's same that the other
when i have time i'll write an how to
download=
work 2 https://skydrive.live.com/redir?resid=4AE88384347A26BF!159&authkey=!AJKyDn6NlNs4Iy0
documents [url]https://skydrive.live.com/redir?resid=4AE88384347A26BF!155&authkey=!AO5-StT-l1_4dv4[/URL]
brave person to try?
another tip:
install PhilZ Touch with aroma filemanager
copy your originals files in sdcard for exemple in sdcard/sauve.
if you have a pbm bootloop... you reboot recovery and open aroma filemanager and restore your originals files to the good place.
if you open /system in aroma and you find nothing = go back and mount system, for next time you tick in aroma the option automount
this tip is valable also for all thing you want to copy in system if you have not root explorer and it is free
another tip:
X-plore Filemanager is free with it you can manage root (be carefull with root files )
I want to try it to enable crt off effect on my s3 with Android Hd Revolution...what happens if i fail?
Will i brick my phone?
Also it's impossible to download your files without registering...
Willy89 said:
I want to try it to enable crt off effect on my s3 with Android Hd Revolution...what happens if i fail?
Will i brick my phone?
Also it's impossible to download your files without registering...
Click to expand...
Click to collapse
no u can, there simple script with adb, one of them is auto oxeder script
very easy to use.
no u can download without registering (perhaps 4 shared change ? ) i'll upload it in my box !
it is very easy to use an i have done an update for reoxeding without quiting first script
do as i say in my tip = install phill recovery and aroma file manager and try it to be sure it work.
create a directory in sdcard and copy (if u have not root explorer do it with aroma)from /system/framework android.policy .odex and .jar and services.odex and .jar go to /system/app and copy flashbarservice.odex and .jar
it u have pbm you reboot recovery and copy these file back to there place and redo your mod to see where u fail
kondronaute said:
no u can, there simple script with adb, one of them is auto oxeder script
very easy to use.
no u can download without registering (perhaps 4 shared change ? ) i'll upload it in my box !
it is very easy to use an i have done an update for reoxeding without quiting first script
do as i say in my tip = install phill recovery and aroma file manager and try it to be sure it work.
create a directory in sdcard and copy (if u have not root explorer do it with aroma)from /system/framework android.policy .odex and .jar and services.odex and .jar go to /system/app and copy flashbarservice.odex and .jar
it u have pbm you reboot recovery and copy these file back to there place and redo your mod to see where u fail
Click to expand...
Click to collapse
You mean that i can't enable crt off effect with this mod? Sorry but i don't get what you mean...
And another question: where can i find the file i need to download in step one? I mean "all the framework, FlashBarServices.apk and init.rc."
Willy89 said:
You mean that i can't enable crt off effect with this mod? Sorry but i don't get what you mean...
And another question: where can i find the file i need to download in step one? I mean "all the framework, FlashBarServices.apk and init.rc."
Click to expand...
Click to collapse
have you an samsung SIII ?
plug it and do english menu (if you speak english) or menu if you speak french.
when you put choose number 1 in the script it will do all that for you,
after you enter2 and it will do what explained ....
it seem you not lauch english menu or menu
for choice number1, 16 and 17 phone must be connected to PC
other thing when you edit files(4,5,6,10,11,14) the file is opened in notepad but you must write in your mod , you have in documentation.7z all mod or you can open cristiano matos guide and follow it....
Willy89 said:
I want to try it to enable crt off effect on my s3 with Android Hd Revolution...what happens if i fail?
Will i brick my phone?
Also it's impossible to download your files without registering...
Click to expand...
Click to collapse
i just see Android Hd Revolution i dont know if it is oxeded or desoxeded ?
my kitchen is for stock (probably it work also with oxed rom without any pbm)
edit= i do a search it seem deoxeded
Hello,
I just tried it and it works just fine.
A word of advice for people who are afraid this can mess up their phone, all the original files are in \framework\ directory, so if something doesn't work simply replace the new modded files with the ones found in that directory and you're good to go
kondronaute said:
have you an samsung SIII ?
plug it and do english menu (if you speak english) or menu if you speak french.
when you put choose number 1 in the script it will do all that for you,
after you enter2 and it will do what explained ....
it seem you not lauch english menu or menu
for choice number1, 16 and 17 phone must be connected to PC
other thing when you edit files(4,5,6,10,11,14) the file is opened in notepad but you must write in your mod , you have in documentation.7z all mod or you can open cristiano matos guide and follow it....
Click to expand...
Click to collapse
Answered to your Pm....
So what my first step?
Could you please make a noob prof step by step tutorial?
Lost.soul said:
Hello,
I just tried it and it works just fine.
A word of advice for people who are afraid this can mess up their phone, all the original files are in \framework\ directory, so if something doesn't work simply replace the new modded files with the ones found in that directory and you're good to go
Click to expand...
Click to collapse
thank you its nice to you to try it
i see a lot of poeple waiting for CRT extended menu and MWC now they can do it in 20 minutes
Willy89 said:
Answered to your Pm....
So what my first step?
Could you please make a noob prof step by step tutorial?
Click to expand...
Click to collapse
belive me the op is very clear :
attach phone to computer
unzip work1 and documments
rename work1 directory with the rom u want to mod exemple work1_xxema2
in this directory lauch english menu.bat (or open a cmd and launch it)
you have 17 options
type 1 and enter = if it work alle framework are dowloaded to work1_xxema2/framework
if not work = your firewall block ADB so disable it and do 1 enter
after that you folow all step 2 to 17
in step where you edit files= 4,5,6,10,11,14 = the files are edited in notepad just make the good change and save (for the good changes in document you have the 3 mods in pdf documents, or you can follow cristiano matos OP )
my job is just for you gain time all take 20 minutes !!!
Trying right now with the support of a paper sheet.
In this sheet i'm writing one by one passage (in italian) so if i'm succesful i could write a step by step ultra noob guide to improve your efforts
Willy89 said:
Trying right now with the support of a paper sheet.
In this sheet i'm writing one by one passage (in italian) so if i'm succesful i could write a step by step ultra noob guide to improve your efforts
Click to expand...
Click to collapse
yesssssss that will help me and others
it seem your rom is deodex sorry i'll try (if i have time ) to do a kitchen for deodex i think it will be easier coz 2 steps removed = deodex and reodex
kondronaute said:
it seem your rom is deodex sorry i'll try (if i have time ) to do a kitchen for deodex i think it will be easier coz 2 steps removed = deodex and reodex
Click to expand...
Click to collapse
Thank you.
If other people is willing to try this but it's afraid to fail just do it.
Kondronaute is one of the kindest person here on XDA and it will help you in every way he can.
I've tried it personally, he's very kind and helpful.
ok Willy89 i put an version for de-oxeded rom for test coz my rom is odex...
kondronaute said:
for de-oxeded rom
Need testers coz i have not de-oxeded rom
run english_deodex_menu.bat as administratror an follow all step as explain in first post
for instructions it's same that the other
when i have time i'll write an how to
download=
https://skydrive.live.com/redir?resid=4AE88384347A26BF!157&authkey=!AMLUm8dx4lFtX-U
[url]https://skydrive.live.com/redir?resid=4AE88384347A26BF!155&authkey=!AO5-StT-l1_4dv4[/URL]
Click to expand...
Click to collapse
Found tester you kind man!!!
I know that is a noob question but what i have to do when i reach step for and it opens "global Action.smali" text file?
I answerr by my self...yhis is the txt for extended power menu
Willy89 said:
Found tester you kind man!!!
I know that is a noob question but what i have to do when i reach step for and it opens "global Action.smali" text file?
I answerr by my self...yhis is the txt for extended power menu
Click to expand...
Click to collapse
i think now you got it
just make all change for what you want to do (3 ext, crt mwc)....
and follow all number one by one
kondronaute said:
i think now you got it
just make all change for what you want to do (3 ext, crt mwc)....
and follow all number one by one
Click to expand...
Click to collapse
Like you said in pm my fail could be caused by stock kernel...
Ok I am going to keep this simple. These tool will allow you to add any battery image to any TW ROM. First unzip the tools. Then all you need to do is grap the framework-res.apk, twframework-res.apk, and SystemUI.apk from which ever ROM you are using and/or want to change the battery images for. Now grab the 204 PNG's for your new battery. Place these in the folders that are named as such. I have included a zip with a bunch of battery PNG's for you to use. Even the ones from my ROMs. Some are complete and some are not though. You HAVE to have 204 images or the tool will not start. Enjoy!
Side note, need a tester for the Windows tool as I tweaked it but have not tested. Thanks!
How to:
Code:
For Linux (Tested on Ubuntu12.04 64-bit)
Before anything:
add the required apks (framework-re.apk, twframework-res.apk and SystemUI.apk) to the folder "Input_APKs."
then you will need to add all 204 battery PNG'd to "Input_Images"
now you will:
1) Make sure these packages are installed.
sudo apt-get install openjdk-6-jre openjdk-6-jdk (step 4)
****** Do not just click on the Mod_Battery.sh file. Open a terminal
and run it! *************************
2) Open terminal in the Battery_Mod_Tool_v1.2/Working_Dir folder and run:
./Mod_Battery.sh
3) If you are having problems then make sure the following files are executable.
./Working_Dir/Mod_Battery.sh
./Working_Dir/7za
./Working_Dir/aapt
4) You may notice some java errors whilst running the Mod_Battery.sh script.
If so you need to install java. The instructions for Linux are below...
5) As of now for Infamous 4.4 the Framework-res.apk, twframework-rek.apk, and SystemUI.apk are included. 4.5+ you will need to add the apks yourself.
[/B]
Code:
[B]For Windows:
Before anything:
add the required apks (framework-re.apk, twframework-res.apk and SystemUI.apk) to the folder "Input_APKs."
then you will need to add all 204 battery PNG'd to "Input_Images"
now you will:
- Double-click "Mod_my_battery!.bat" and sit back and wait
NOTE:
If you modify ANY files within the "Working_Dir" folder, the process will not work. Do not rename, remove or add any files to this directory
URL for Java Development Kit:
http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u1-download-513651.html
to download JDK, Simply;
1) Select "Accept License Agreement".
2) Select "jdk-7xx-windows-xxx.exe" for your version of Windows. (Windows x86 = 32-bit, Windows x64 = 64-bit)
3) Run installer with default settings should be fine.[/B]
Link(s):
Linux tool download link
Windows tool download link
Battery PNG's #Infamous as of Feb 22, 2013
Install Java for Linux
Big thanks to shayne77 for making this. I only modified it to work for our phones and Jelly Bean.
saved just in cause
and one more for whatever
Re: [Tool][MOD] Add any battery image to any TW ROM
Nice work but it seems faster to pull the apks open them, paste your images and zip and flash, just saying.
Sent from my wicked fast SGS3!
This is very true. This tool is for every user even the less experienced.
Re: [Tool][MOD] Add any battery image to any TW ROM
Jamison904 said:
This is very true. This tool is for every user even the less experienced.
Click to expand...
Click to collapse
Yeah, I see how it could benefit the less experienced. Either way, nice tool.
Sent from my wicked fast SGS3!
Thanks buddy. Didn't make it just tweaked it to work for the S3. All the credit goes to shayne77.
Battery PNG's #Infamous as of Feb 13, 2013
Says url not found might me my firewall but could you please check it.
Thanks
weird... here you go
http://goo.im/devs/Jamison904/T999/Infamous_S3/Tools/Battery PNG
Sent from my dark hole called an office.
Jamison904 said:
weird... here you go
http://goo.im/devs/Jamison904/T999/Infamous_S3/Tools/Battery PNG
Sent from my dark hole called an office.
Click to expand...
Click to collapse
The file you requested was not found
Lets see if we can find that for you...
Search results for devs/Jamison904/T999/Infamous_S3/Tools/Battery PNG
That is what I got from Goo.
maybe I need to try a different browser
Thanks
yeah just tried myself. Goo most of lost it. Ill check go see if I have an older one on my mirror. Give me a sec and thanks for the heads up
Ill have to reupload it tonight. Thanks again
Sent from my dark hole called an office.
Battery_PNG
Fixed link.
Jamison904 said:
Battery_PNG
Fixed link.
Click to expand...
Click to collapse
I give up this is what it is saying again.
The file you requested was not found
Lets see if we can find that for you...
Search results for devs/Jamison904/T999/Infamous_S3/Tools/Battery_PNG
Thanks though I got the other files so All I have to do is find images and place them into your formula.
Dang it. I even tested yesterday after up loading it. OK good deal. Ill upload it to my mirror some time this weekend. I dont get why it keeps doing that...
Sent from my dark hole called an office.
LINK
Different server. Third time is a charm.
I am really surprised that this didn't get the attention I thought it would. People afraid of it? Or don't have a need for it.
Jamison904 said:
LINK
Different server. Third time is a charm.
Click to expand...
Click to collapse
Thanks Worked great!
:good:
Jamison904 said:
I am really surprised that this didn't get the attention I thought it would. People afraid of it? Or don't have a need for it.
Click to expand...
Click to collapse
Alright, giving this a shot, I def like battery #5. I like the idea of having a tool, but what's the easy way akapaul26 is speaking of?
Chefedogg said:
Alright, giving this a shot, I def like battery #5. I like the idea of having a tool, but what's the easy way akapaul26 is speaking of?
Click to expand...
Click to collapse
Tool won't work for me, I've followed every direction to the T...
Windows or Linux? Thanks