Tips Add Ida Pro to right click Menu

Storm Shadow

Administrator
Staff member
Developer
Ida Pro Expert
Elite Cracker
Its always handy to add differnt software to the mouse rightclick menu.
We gonna add ida pro in this example, but you can add all programs this way.

open regedit
navigate to
Code:
HKEY_CLASSES_ROOT\*\shell

kF7bjWQ.png

Right click Shell in left menu and add New Key
This is the name thats gonna show in rightclick menu, so we gonna call it IDA 32



uNXiMLB.png

Right click the new IDA 32 in left menu and add New Key again
this we call Command



V4lI8nO.png

Now go to the right menu under the newly created Command key.
Press Edit and Paste with "" quotes. the path to ida.
Remember to add "%1" at the end.

Code:
"C:\Program Files (x86)\IDA 6.5\idaq.exe" "%1"

Do the same steaps for IDA 64 option
Code:
"C:\Program Files (x86)\IDA 6.5\idaq64.exe" "%1"

test

udX0324.png
 
Top