Reputation:
I Start a Demo Project just for testing.
But on this demo work good and I just tried to create a release from it. The problem, when I tried to start it (On debug mod for example) I see a process name like
(in the red circle)
I also change the properties of my project like this.
Someone have any solution to do this "DataBaseAccessValidator" to be my name in Task Manager?
To change my solution and my directory name did not work for my problem.
Upvotes: 6
Views: 13912
Reputation: 61
Each time that you start a new application, Windows automatically extracts the application name from the exe file, and stores it for later use, in Registry key known as the 'MuiCache'.
The information is stored in the registry key
HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\Shell\MuiCache
Delete the relevant entries in MUICache and it may fix your issue. You might need to restart your computer as well.
The MuiCache stores strings that are used by applications, particularly the names of executable files. This caching helps Windows optimize the loading and display of application names and other metadata in various parts of the operating system, like the taskbar or when using the search functionality.
Over time, the MuiCache can grow as more applications are installed and used. Windows periodically cleans up outdated or unused entries in this registry key. Users can also manually clear this cache if they encounter issues with incorrect or outdated application metadata being displayed.
Upvotes: 0
Reputation: 9509
You should change the Title
within the Assembly Information
.
Within the Application Properties
page there is a button Assembly Information
, open it and change the Title
. See the following links:
Application Properties then Assembly Information
Upvotes: 13
Reputation: 1635
The name that appear in Task Manager is the name to your executable program. You can change it, by using the properties of your project.
Right click on your project -> select Applicattion Tab -> change assembly name.
Upvotes: -4