dunk6 Posted October 1, 2009 Posted October 1, 2009 Hi all, i have a program which only running by right clicking. When we install it, it added into right click menu(not sure exact term to calls.) I want to write a code on automated on this program but i couldn't find it's execution file. i believe it must be ext ".exe" So my problem is how can i find the .exe location? thanks in advance.
Yashied Posted October 1, 2009 Posted October 1, 2009 ...by right clicking.Right clicking where? On the file (what the extension)? On the Desktop? My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
Mison Posted October 1, 2009 Posted October 1, 2009 What's the name of that program...? Start > Search.. enter the name.. if you're lucky, you will find NameOfTatProgram.exe.. check the properties of that .exe file... you should know its location by now Hi ;)
jvanegmond Posted October 1, 2009 Posted October 1, 2009 Or check the windows registry. Try to search for whatever you know about the application. Maybe you'll come across something good. github.com/jvanegmond
herewasplato Posted October 1, 2009 Posted October 1, 2009 Welcome to the forum.I think that the term for a "right click menu" is a context menu:http://windowsxp.mvps.org/context_folders.htmAnd it might be a DLL and not an EXE.For example, "Desktop Restore" by Jamie O’Connell installs one DLL file and one document.From that document:Tech. Notes: The application is named dkticnsr.dll, and is installed to the application folder “[bootDrive]:\Program Files\Desktop Restore” (i.e. no longer to: Windows System ShellExt folder). The module is registered with the system as a COM component. The registry key used for storage is: HKEY_CURRENT_USER\Software\JOConnell\DeskTop. Each desktop icon is stored as a subkey under this location.So, you might be jumping into working with DLLs.Like Yashied asked: Do you see this menu item when you right click on a file or folder?For folders, you can start your hunt in this area via regedit:HKCR\Folder\ShellEx\ContextMenuHandlers\Which should give you a CLSID to search for...Which should give you want is being called when you select a given item from a context menu.Happy hunting. [size="1"][font="Arial"].[u].[/u][/font][/size]
dunk6 Posted October 1, 2009 Author Posted October 1, 2009 Right clicking where? On the file (what the extension)? On the Desktop?right click on all kind of files and folders. Like winzipWhat's the name of that program...? Start > Search.. enter the name.. if you're lucky, you will find NameOfTatProgram.exe.. check the properties of that .exe file... you should know its location by nowOr check the windows registry. Try to search for whatever you know about the application. Maybe you'll come across something good.Thanks for the reply.. Found the location which i installed the program. But here only have 1 exe and the lots of dll files. The program mention is an encryption/decryption program, so it was suppose 2 exe right? Only have here is decrypt .exe not encrypt .exe. Is there a possibilities that the encypttion exe are done using these dlls? thank you!
dunk6 Posted October 1, 2009 Author Posted October 1, 2009 For folders, you can start your hunt in this area via regedit:HKCR\Folder\ShellEx\ContextMenuHandlers\Which should give you a CLSID to search for...Which should give you want is being called when you select a given item from a context menu.Happy hunting.i attach here the context menu list and the findings that i got. it seems that it, the name for the context menu didnot appeared here. even there are values that idont know what's that means thankz
Mison Posted October 1, 2009 Posted October 1, 2009 Read program documentation, look for the possibility of execute this program using Command Line... if it's possible, then it's much easier to encrypt the target file.. Hi ;)
herewasplato Posted October 1, 2009 Posted October 1, 2009 right click on all kind of files and folders. Like winzip ...Then it will be in the section for files and folders:...and it should be under ContectMenuHandlers.If there are several and you cannot recognize the one of interest by the reg key name, then look them all up until you find an entry that points to the folder that you ave already located for your program. "Look them up" by double clicking where I've circled in green - then copy that info and search for a key:This should locate the DLL of interest to you: [size="1"][font="Arial"].[u].[/u][/font][/size]
dunk6 Posted October 2, 2009 Author Posted October 2, 2009 Thank you very much. that's answer my problems. thanks all!! But if in this case, can AutoIt automate program using dll extension instead of .exe? eg: Run("someProgram.exe")
herewasplato Posted October 2, 2009 Posted October 2, 2009 Thank you very much. that's answer my problems. thanks all!! But if in this case, can AutoIt automate program using dll extension instead of .exe? eg: Run("someProgram.exe") Probably... but I've never done it. You can start learning by reading: monoceres http://www.autoitscript.com/forum/index.php?showtopic=80724 trancexx http://www.autoitscript.com/forum/index.php?showtopic=85618 monoceres http://www.autoitscript.com/forum/index.php?showtopic=93496 There may be other good threads for learning about working with DLLs, those just came up in a forum search [size="1"][font="Arial"].[u].[/u][/font][/size]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now