Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change windows Application's default icon in Setup Project

Tags:

How to change the Windows Application's default icon with other one in C# desktop application. I am trying to change it in Setup Project but it is not. I want to show my own icon with Application's shortcut rather then windows default icon

like image 478
Azhar Avatar asked Jan 11 '10 10:01

Azhar


People also ask

How do I change the project icon in Visual Studio?

On the menu bar, choose Project > Properties. When the Project Designer appears, choose the Application tab. (Visual Basic)—In the Icon list, choose an icon (. ico) file.


2 Answers

It is truly odd that when you are creating a deployment (set up) project, and you create a shortcut to the "Primary output" (an .exe), the shortcut does not automatically get the .exe's icon. Instead it gets a generic document shortcut icon. Some of the answers here suggest adding an .ico file to the installer, but that certainly feels wrong. You can get the desired icon into the shortcut without adding an .ico file.

Assuming you have already given your program the desired icon,

  • In the solution explorer, right click on the installation project and go to "View -> File System".
  • in the File System window, find the shortuct whose icon you want to change (for example, under "Users's Programs Menu")
  • go to the shortcut Properties (right-click and pick "Properties Window")
  • go to Icon
  • Browse...
  • change "Files of type" to *.exe
  • browse to and select your "primary output"
  • OK, OK

And as serhio pointed out, a similar process can set the icon for the Control Panel's "Add or Remove Programs" list.

like image 124
Jeff Roe Avatar answered Sep 20 '22 14:09

Jeff Roe


You can also change the Icon in the Add & Remove Programs list.

For this select the Setup1 project and select the property AddRemoveProgramsIcon.

You can select an .ico file or leave the main .exe output as file for the icon.

like image 27
serhio Avatar answered Sep 19 '22 14:09

serhio