| mekkatorqu (242) | |
|
I THINK that I did this once, but I can't remember how, however I found only some VB examples, not c++ I want to change the process name that shows in the task manager under processes tab, for example PKL.exe to testpkl.exe is this possible? plain win32 api edit: also how can I change description in the processes tab? | |
|
Last edited on
|
|
| modoran (1245) | |
|
It could be possible, either directly with a kernel patch (no win32 api will be able to bypass, not only task manager) From user mode a solution is to alter your process command line at runtime, you could find working code examples on the web. http://forum.sysinternals.com/modifying-command-line-of-process_topic16185.html | |
|
|
|
| mekkatorqu (242) | |
| how about the description in processes tab? how do I change it? | |
|
|
|
| modoran (1245) | |
| I think the description is taken from the executable itself using version info api. Any resource editor can change that or you can do it programatically. | |
|
|
|
| mekkatorqu (242) | |
| ye but where/how? ATM description is the executable name, also I don't see anything in the resedit to change the desc | |
|
Last edited on
|
|