Tuesday, October 30, 2012

Add your own key to right click menu

Open regedit .... start > search "regedit"
open HKEY_CLASSES_ROOT\*\shell
rightclick on shell new > key ...... rename new key as you want which will be displayed on menu
then right click on renamed key new > key rename it as "command" and open it... on the right side
you will see "default" file.... open it, paste following code,

"C:\Program Files\nameofsoft.exe" "%1"



note : format should in the same format..... replace nameofsoft with your own application name...
it can be easily found out... right click on app which you want to add... click properties...




copy the Target.... paste it in default file.... you are done.... check it in any file.... :)



Monday, October 29, 2012

Regedit or registry tricks



Regedit tool is very useful to use windows as superuser.... you can edit Windows Registry keys easily with it as you wish.... registry is basically associated with system settings... i'll share some of cool useful tips on it later... 

To Open Registry Editor go to Start > Run (or Start > search ) and then enter 'regedit' (witout quotes) Click 'Ok' Button or open it Then it will Bring Registry editor in front of you. like below image


Make a backup through file export.... just in case..

Transparency mod for your Android, make it yourself


make backup before try this....!!!! 

you need::::
* stock framework-res.apk
* apk manager or any other
* text editer like notepad++
* 7zip
* patience and GK
* of course rooted phone :P  

STEPS :
decompile framework, in decompiled framework folder> res folder> values > styles.xml open it via notepad++ styles.xml is the key file, it control all apps layout and look..... 

* in styles search for <style name="Theme"> this is the main theme layout... all app uses this..... 

* under <style name="Theme"> search for <item name="colorBackground">@color/background_dark</item> now change this to <item name="colorBackground">@color/transparent</item> we are calling transparent color instead of dark which is inbuilt defined in color.xml in values folder..... 

* now main part add <item name="windowIsTranslucent">true</item> in theme... means after <item name="colorBackground">@color/transparent</item>......... this line makes all app apps to be transparent.... 


Next there are two methods..........

first method :::
now make a transparent image save it as png file....... make sure it has correct resolution..... dont make full transparent it looks odd.....
save it and past in draweble mdpi or hdpi which ur device support..
now in styles.xml look for <item name="windowBackground">@drawable/screen_background_dark</item> below main theme....
change this to <item name="windowBackground">@drawable/"your image name"</item> add ur image name without ".....
save and close....

------OR-------

second method ::::
in styles.xml look for <item name="windowBackground">@drawable/screen_background_dark</item> below main theme....
change this to <item name="windowBackground">#80ffffff</item> or any other color hex code first two digits control transparency.....
save and close....

compile framework delete resources file in keep folder.... open stock framework (unedited) with 7zip,, amd open edited framework with 7zip/WinRAR...
drag and drop resources file and res folder from edited to unedited framework...... 
thets it... make flashable zip or adb push......... 

ask me if u hav .......

Screeny :

Learn Batch Programming - 2



See Previous post before it

start :  The "start" command can launch a Windows program either by specifying the program name or by specifying a data file name that is associated with a particular program (one that would automatically launch if you clicked on it in Windows).


options :
minimized - /m
maximized - /max
restored - /r
wait - /w



ex :
start notepad.exe
will open notepad

start C:\new.doc
will open the file Myletter.doc in Word or WordPad

start http://www.facebook.com
will open Facebook page in your browser

copy : one more powerful command... 

Syntax : COPY [source] [destination] [options]

Key : destination :  Pathname for the new destination files
      source :  Pathname for the file or files to be copied.
        /A  :  ASCII text file (default)
        /B  :  Binary file copy
        /V  :  Verify : check that the new files were written correctly.
        /Y  :  No confirmation prompt 

Ex : 
copy oldfile.doc newfile.doc
copy in the current folder

goto : used to jump from one line to other without any condition.... idol for Virus.... 
Syntax : goto label           
             ......................                 
             ......................
             ......................
             ......................
             : label

Control jumps to label skipping  the in between lines.... label may be located before or after goto.....

Key  label : a predefined label in the batch program. Each label must
           be on a line by itself, beginning with a colon.
To exit a batch script file or exit a subroutine specify goto:eof this will transfer control to the end of the current batch file. Unlike Exit /b the goto:eof will automatically set an errorlevel.

what if a batch file with following code :
  
@echo off
:loop
start notepad.exe
goto loop


it is a small VIRUS.... it will start infinite notepad windows.... as loop doesn't end...  never try in your own pc...
u have to direct off your computer to terminate it....... :P

for :  Repeats a task or command based on a condition.... the argument take list value each time....


Syntax :
for %%argument in (list) do command
Key : Argument : any letter from A to Z. 
         List: a sequence of strings separated by spaces or commas...

Ex :
for %%d in (A,C,D) do DIR %%d *.*
Displays the directories of drives A, C, and D sequentially.

for %%f in (*.TXT *.BAT *.DOC) do TYPE %%f
Types the contents of all .TXT, .BAT, and .DOC files in the current default directory.

for %%P in (%PATH%) do if exist %%P\*.BAT COPY %%P\*.BAT C:\BAT
Copies all batch files which exist in any directory on the DOS command search path into the directory C:\BAT.

pause : PAUSE Pauses the running of a batch file and displays the message "Press any key to continue ..." on the screen. If the optional message is included, it will be displayed first. 

syntex : pause [message]

Ex :
pause < nul
Waits with no comment.

pause Do you want to continue?
Displays "Do you want to continue?" with "Press any key to continue ..." on the next line.

cls  : Clears the terminal screen, setting the cursor in the upper left-hand corner...


echo on ----    Restores normal display activity.
echo off    ----     Halts display of prompt and commands.




Sunday, October 28, 2012

Create your own folder locker with right click option

You might have come across batch programming folder locker which is a old trick.... but here im using same concept modified it n extend its capabilities.....  you have to copy past everything in locker folder to hide files.... why dont there is a option. such that right click on any folder or file and send to locker..... you can make that too... all files are in a zip below if you dont want to mess with....



first open any text editor, notepad++ or notepad....
copy n past below code in it


cls
@ECHO OFF
title Folder locker
if EXIST "locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST lol goto MDLOCKER
:CONFIRM
echo.
echo.
echo ---------------------------------------------------------
echo              FOLDER LOCKER BY AKASH
echo ---------------------------------------------------------
echo.
echo      Are you sure you want to lock the folder(Y/N)
set/p "cho="
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo      Invalid choice.
goto CONFIRM
:LOCK
ren lol "locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo.
echo.
echo ---------------------------------------------------------
echo              FOLDER LOCKER BY AKASH
echo ---------------------------------------------------------
echo.
echo      Enter password to unlock folder
echo.
set/p "pass="
if NOT %pass%==password goto FAIL
attrib -h -s "locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}" locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md locker
echo   locker created successfully
goto End
:End


change password with your own password...... save it as anything.bat see other post for how to save as bat file.... if you are such a noob....  just run bat it will create locker folder... Dont change anything else even folder name....

now the trick part, by meee :)
make another bat file with following code.... save it as mvlock.bat  and put it in the same folder where locker bat ids located


@echo off
attrib -h -s "C:\#\locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "C:\#\locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}" locker
move %1 C:\#\locker
ren "C:\#\locker" locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}
attrib +h +s "C:\#\locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}"


Change # with your file path where locker bat file is present.....

now goto start search "regedit.exe" open it.... MAKE A BACKUP IN CASE IN FILE> EXPORT....
open HKEY_CLASSES-ROOT > * > shell > (right click on shell new > key )
rename key as you wish.... it will be displayed on right clcik...  like "send to Locker".... right click on it new > key rename it as "command"... openimg same command folder... on the right side you will see "(Default)"
open it, you will see edit string... past below code in value data..

"C:\#\mvlock.bat" "%1"

again change # with your path..... click ok.... Done....



you will see on right  send to locker option for all files.....
to make this for folders edit  HKEY_CLASSES-ROOT > Directory > shell > in same way....


all filess in a zip.... just need to "edit mvlock" file path n registry.... follow regedit steps....



You are done.... :) bookmark,share,like this blog, for other cool stuffs from mee...
comment here if you have any doubts......






Saturday, October 27, 2012

MicroFire Tool

Hi guys...
I'm here with my MicroFire Tool.... Tool originally made for Micromax A60 devs... as many dev asked me how to change boot logo frequently.... But now I added some more features..... still it need a lot of improvements... U guys feedback n support needed.... I made it noob friendly, as possible...... 

As i'm the developer of this tool.... all your questions n needs can be asked here.....

comments and suggestions are welcome


Tool has following Features currently-

Boot logo changer- Easy UI to change Boot logo so that any one can change boot logo...
Supported Devices :
- Samsung Galaxy SIII
- Samsung Galaxy SII
- Sony Experia Arc
- LG P350
- Micromax A60
- Karbonn A1
Plz other device users pm me ur device boot.img ( if possible then initlogo.rle )....

Logo.bin files support - New Simple C compiled program by me                        
                                               included in tool, so that all editing will be             
                                               done by tool, what need is that is just a                         
                                               logo.bmp of ur like :P

                                              Supported Devices :
                                              - Motorola Atrix
                                              - Other Motorola devices....
                                              It doesn't work.... o_O let me know....


Jar Tools - By this tool u can easily decompile and compile jar files
                          In one click.... just like tool for apk files....

Apk Tools - By this tool u can easily decompile and compile apk files

Bootanimation changer - Compiled C program by me, by using    
                                                      this tool u can change boot animations,       
                                                      frame speed, repeats, resolutions.. .                          
                                                      easily, 


More features will be added soon... 



Before proceed,

* Only for Windows
* Make sure your path has no spaces
* Your file name has no weird characters



Creadits :

* DooMLord for his Boot image tool, by which i got an idea
* thewarhawk for this guide which helped me to make bin logo program
* Thanks to ImageMagick developers for the their tool 
* JesusFreke for smali tool
* Brut.alll for apktool
* XDA members who helped me by giving their device boot.img 
* Me for Script and Logo bin, bootanimation programs  




Link:

Learn batch programming ( noob way )




Many of you may think batch programming is hard... but its not, actually its simplest , you dont need to compile the source here... according to me its not actually PROGRAMMING....!!  just a set of commands .... instead of writing all commands in command prompt just run a simple batch file....  after all this not only you can create a simple virus but also u will know how it works..... I only teach here necessary commands not any useless lines... :)



Icon for ".bat" file in Win7/Vista                            

Icon in Win XP




What is batch scripting ?
- it is set of commands  in ".bat" file written with any editor for Windows OS.... bat file wont work for Linux environment... shell is for linux...

Getting started....
@ You need a good text editor.... you can use Notepad.... or Notepad++  ( my fav. , easy to detect errors)

@ every time when i say save, you need save it as "blabla.bat" not "txt"

    say it clearly : after editing in editor, click save/save as , a dilog box will   appear click save type as
    { All types (".") } NOT "Text file (".txt") as show below


     

give name as you want "@#$%$.bat" not extension must be .bat....

@ simply double click to run it


Step-1:

basics commands :


 # cd  :  means Change Directory :Used to navigate to different      directories...
          ex cd home changes location to home folder from current folder

 # del  :  used to delete any specific file... located in current tree(dir)
          use switches for more option :
          /P  Give a Yes/No Prompt before deleting. 
          /F  Ignore read-only setting and delete anyway (FORCE) 
          /S  Delete from all Subfolders
          /Q  Quiet mode, do not give a Yes/No Prompt before deleting.
          /A  Select files to delete based on file_attributes

          Ex: make a bat file with following lines

               @echo off

               del /Q *.txt

save as anything.bat... run in any directory will delete all text files in that dir..... /q or /Q (batch is not case sensitive) switch don't ask you before deleting... u can use other switches as well.....


# echo : if u are femilar with C programming.... printf equivalent in batch is                  
            "echo" anything after echo 
            will be printed in command prompt... leave a space after echo.... and         
            type as you wish

            Ex:[echo tricks and tips blog ] will display tricks and tips.... you can   
                use special characters as well...

             "echo." used for blank line

             
             Learn batch programming - 2

Friday, October 26, 2012

MicroFire V 2.1 Rom for Micromax A60


-------------------------Before you proceed further--------------------------    
                    #  it work only for micromax A60
                    # you must be rooted ( what is rooting ??!!)
--------------------------------------------------------------------------------------

With a grand success of MicroFire V2.0... I'm quite happy with it, as it has more than 781+375 downloads till now....  and MF V2.1 has more than 500+ 32...This Rom based on both Claro port and Karbonn A1 Rom dump...


As i'm the developer of this Rom.... all your questions n needs can be asked here.....


FEATURES:
* No Netlock
* New ICS Theme by Meee (Ported from GB)
* ICS animations
* ICS Font Roobot
* New Modded Settings.apk
* Added Quick menu in Settings.apk by Meee
* Karbonn A1 Rom Boot.img (Kernel) added
* Init.d support is added to new kernel
* 30 step volume Mod now for all Volume select
* Ongoing call improvement
* Added file to block Ads
* APNS updated
* Superb Battery life due to tweaks and no netlock
* Supports Indian languages
* Karbonn A1 Camera.apk added to increase camera quality
* Added Extended power menu
* New Jelly Bean Ringtones and Notifications sounds added
* Modded LancherPro to look like ICS n consume less memory
* Increase Sound quality mod is added
* Modded MMS.apk
* Reboot and Recovery option in Power Menu
* Zipaligned
* New Nexus Bootanimation
* No annoying sound from low battery
* No auto conversion of sms to mms
* Smoothscrolling mod in framework
* Removed Karbonn boot image from kernel
* Added Updateme app
* Pre added Play store
* Dolphin Browser added
* DSP manager added
* Removed app to SD to fix some bugz
* Added Network Tweaks
* Added performance tweaks
* Updated su
* Updated Superuser.apk
* Added build.prop tweaks
* smartkeyboard added instead of stock keyboard
* Added dictionary for keyboard
* Removed Bravia Engine to fix bugz
* Mi explorer is added
* 1% Battery Mod
* Pre-rooted
* Removed useless stock apps
 


Video tut:


credits : syed samad


Recovery Link :


ADT Link:
Recommended to go for updated MicroFire  than this one



YOU WANT TO USE MY ROM AS BASE ? FEEL FREE TO DO SO, BUT ASK  ME BEFORE THAT




SCREENSHOT :

Welcome to all


Hi all, welcome to my new blog..... stay tuned for cool PC n Android tricks n tips... many hacks...tutorial on some awesome  stuffs, apps, games review (of courses cheats too !!!)... n many other geeky stuff... :) if u know any cool stuff .... u can also share here....