David
David

Reputation: 87

Modify app icon in TaskManager and not in System tray

I have a program in Windows 10 that displays various icons on the system tray depending on the state of the program.

This is typically done by calling the windows api - Shell_NotifyIcon

Shell_NotifyIcon(NIM_MODIFY/NIM_ADD, &data);

The problem is that I want to show a different icon on the Task Manager. Is there a specific call I can do to solely change the icon in Task Manager?

Upvotes: 0

Views: 346

Answers (1)

user7860670
user7860670

Reputation: 37588

Task manager displays icon for executable. Which is the first icon among executable resources.

Upvotes: 3

Related Questions