[TOOL][Windows]OneClick Bootanimator For Pico

Saumitra Yadav

Senior Member
Feb 25, 2013
309
489
0
Bangalore
Hey Guys , I have made a tool to change the bootanimation of our pico from windows only. Now There Is No Need to goto your mobile and open your file explorer and doing all the work to change a bootanimation.By this tool you can change your bootanimation by just a single click.:laugh:

Requirements:
ADB/Fastboot
Follow This Guide:
http://forum.xda-developers.com/showthread.php?t=1955627
Thanks To Andy For Such An Easy Guide.


This Tool Works with all The Roms Except Stock Rom :(

For Sense4 Roms:

1.Download The File bootaniflasher[Sense 4] From here
2. Extract It on Your Pc.
3. Open Folder bootaniflasher[sense4].
4. Now Just Place The bootanimation you want and name it as hTC_bootup.zip
5. Now Run The bootani.bat and press Enter.[Make Sure USB Debugging is Enabled]
6. Your Device Will Reboot Automatically :)

For CM Roms:
1. Download The File bootaniflasher[CM] From here
2. Extract It on Your PC.
3. Open Folder bootaniflasher[CM].
4. Now Just Place The bootanimation you want and name it as bootanimation.zip
5. Now Run The bootani.bat and press enter.[make sure USb Debugging is Enabled].
6. Your Device will Reboot Automatically.

This Is My First Tool . Please Try It And Tell If Its Working Or Not :) Waiting For The Responses.:)

Note: If You want this tool for any other rom eg AOKP,Panadroid, etc. Just PM me the Source/directory where the bootanimation is stored.

Hit Thanks If I Helped You :)
 
Last edited:

Saumitra Yadav

Senior Member
Feb 25, 2013
309
489
0
Bangalore
To Saumitra Yadav:
My antivir blocks your zip file and write me this "Win32/Ramnit.H virus". Is this normal and just error of my antivirus, or it is really infected? :eek:
The file is not infected bro .... it's your antivirus defect .... I use avast and I got no error.... try this tool n give a review :thumbup:

Sent from my HTC Explorer A310e using xda app-developers app
 

thewisenerd

Senior Member
Sep 27, 2012
1,385
2,995
0
A couple of reasons why this tool "might" not work:

Hi! First of all, I haven't tried out this "tool" yet, as I don't have windows :silly:
But, there are a couple of reasons why I think that your tool "might" not work at all times.

First of all, enabling "USB Debugging" alone is not enough. You need to configure root access for both "Apps and ADB" in the case of CyanogenMod. (AOKP provides root access by default, so, it wouldn't be a problem in the case of AOKP.)

After enabling root access to both "Apps and ADB", you "might" need to invoke "su" at least once. And, mounting the /system partition as r/w is a "must-do".

I have made some changes to the code, using this guide (http://forum.xda-developers.com/wiki/Guide:Using_the_Terminal) as reference.


Code:
@ECHO OFF
COLOR 9b
ECHO OneClick Bootanimator For HTC EXPLORER[CM Roms]
ECHO By: Saumitra Yadav
ECHO Make sure your phone has usb debugging mode enabled!
ECHO Make sure you put your custom bootanimation.zip in this folder!
ECHO Use this at your own risk!
ECHO .
ECHO .
ECHO By pressing enter you understand the risks.
PAUSE
ECHO Waiting for device...
ECHO.
adb wait-for-device
ECHO Mounting /system partition as r/w...
adb shell su
adb shell mount -o rw,remount -t yaffs2 system /system
ECHO Sending bootanimation.zip
ECHO.
adb push bootanimation.zip /system/media/bootanimation.zip
ECHO Done sending bootanimation.zip
ECHO.
ECHO Mounting /system partition as r/o...
adb shell mount -o ro,remount -t yaffs2 system /system
ECHO Rebooting device...
adb reboot
ECHO Reboot command initiated.
ECHO Thanks for using this script. 
PAUSE
EXIT
And, a humble request... Do try to keep the code understandable. Example: The output "Finished re-booting" comes before the script initiates rebooting sequence.

Do let me know if this works :)
 
Last edited:
  • Like
Reactions: Saumitra Yadav

Saumitra Yadav

Senior Member
Feb 25, 2013
309
489
0
Bangalore
Hi! First of all, I haven't tried out this "tool" yet, as I don't have windows :silly:
But, there are a couple of reasons why I think that your tool "might" not work at all times.

First of all, enabling "USB Debugging" alone is not enough. You need to configure root access for both "Apps and ADB" in the case of CyanogenMod. (AOKP provides root access by default, so, it wouldn't be a problem in the case of AOKP.)

After enabling root access to both "Apps and ADB", you "might" need to invoke "su" at least once. And, mounting the /system partition as r/w is a "must-do".

I have made some changes to the code, using this guide (http://forum.xda-developers.com/wiki/Guide:Using_the_Terminal) as reference.


Code:
@ECHO OFF
COLOR 9b
ECHO OneClick Bootanimator For HTC EXPLORER[CM Roms]
ECHO By: Saumitra Yadav
ECHO Make sure your phone has usb debugging mode enabled!
ECHO Make sure you put your custom bootanimation.zip in this folder!
ECHO Use this at your own risk!
ECHO .
ECHO .
ECHO By pressing enter you understand the risks.
PAUSE
ECHO Waiting for device...
ECHO.
adb wait-for-device
ECHO Mounting /system partition as r/w...
adb shell su
adb shell mount -o rw,remount -t yaffs2 system /system
ECHO Sending bootanimation.zip
ECHO.
adb push bootanimation.zip /system/media/bootanimation.zip
ECHO Done sending bootanimation.zip
ECHO.
ECHO Mounting /system partition as r/o...
adb shell mount -o ro,remount -t yaffs2 system /system
ECHO Rebooting device...
adb reboot
ECHO Reboot command initiated.
ECHO Thanks for using this script. 
PAUSE
EXIT
And, a humble request... Do try to keep the code understandable. Example: The output "Finished re-booting" comes before the script initiates rebooting sequence.

Do let me know if this works :)
Will try it when i reach home :thumbup:

Sent from my HTC Explorer A310e using xda app-developers app
 

Saumitra Yadav

Senior Member
Feb 25, 2013
309
489
0
Bangalore
Will try it when i reach home :thumbup:

Sent from my HTC Explorer A310e using xda app-developers app
I think the mounting is needed in stock rom coz in all custom roms the system is mounted as r/w .
PS: Now this tool will work on stock also ... coz you edited the script thanks :thumbup:

Sent from my HTC Explorer A310e using xda app-developers app