Interesting Findings ...
|
Changing image of smart man in Axapta client (Ver 3.0 / SP3) file.. I always used to be very curious to find out contents of Axapta client file(ax32.exe). This interest of mine first led me to find out file dependencies of Axapta client application. And that was quite long back. If interested, you can read my experience here. This interest got rekindled after I happened to see some posts in Axapta Technet website about changing the image of smart man who appears when we start Axapta ver 3.0 / SP3 client. This post contains my experience when I tried to change the image of smart man. Here I go .. Since this file (Ax32.exe) is an executable, we need to use a decent resource editor which would enable us to analyse PE files. You might ask one or two questions now. - What are PE files? - Why should we use a tool for this purpose? Well, PE stands for Project Executable. This is basically a type of file format. This format is the native format of executable binaries for all MS 32-bit operating systems. If you look into files with types like .EXE, .DLL, .OCX, .SYS etc, you would see that all these files uses same PE format. In fact, these files are referred to as PE files. This term was chosen because of the intention to have a standard file format across all flavors of Windows. Many people say that it was Microsoft who introduced PE file format as part of the original Win32 specifications. However, root of this file format can be tracked to Common Object File Format (COFF) found on VAX/VMS from DEC. It is said that the original Windows NT team actually came from DEC and that they used the existing code in DEC for the Windows NT platform. For a detailed history on this, you might want to refer to this excellent article from Matt Pietrek. Coming to resouce editors, these are basically very powerful tools. Using a decent resource editor, you can analyse file structure, track dependencies, correct checksums, repair or change resources etc. By nature, such tools are meant for advanced users. Also it is strongly advised to take a back up of the original files before you modify anything using such tools. The tool that I chose for this purpose - PE Explorer from HeavenTools. For information like how to use this tool etc, I would suggest you to download a demo version of this tool and look at the help file. Their help file is very comprehensive. Once you install this and managed to open Axapta client (don't forget to take a backup!!), then all you have to do is - visit Resouces section. Once there then it is pretty straight forward to identify image of our Smart man and replace him with the image you fancy! :-) File Dependency Analysis
Whenever I install Axapta, I always used to wonder about the dependency files for Axapta client application (ax32.exe). There are several types of file dependency. Some of them are - Operating System: Microsoft Windows XP Professional (32-bit), version 5.01.2600 Service Pack 1 Program Executable: c:\program files\damgaard\axapta client\bin\AX32.EXE Program Arguments: NONE Starting Directory: C:\Program Files\Damgaard\Axapta Client\Bin\ Search Path: C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\MSDE\BINN Dependency Walker Options Selected: - Simulate ShellExecute by inserting any App Paths directories into the PATH environment variable. - Log DllMain calls for process attach and process detach messages. - Hook the process to gather more detailed dependency information. - Log LoadLibrary function calls. - Log GetProcAddress function calls. - Log debug output messages. - Automatically open and profile child processes. |