Icon on Shortcut to .NET WinForms application automatically update - c#

I have a VB.NET WinForms application which has a custom icon. I changed the icon (to something else) in the project's properties, and I can see it is correct on the EXE that is built, but all shortcut's to it retain the old icon. If I create a new shortcut the icon is correct.
When I try to set the icon on the shortcut manually (using Change Icon in the shortcut's properties) Windows report the error 'The file %1 contains no icons.', which I think may be part of the issue, as it isnt able to locate the icon automatically (so it doesn't update).
What can I do to get the icon on the shortcut to update automatically?
Update: Logging off and on again refreshes the icon cache, and the icons change. Also calling ie4uinit -ClearFontCache updates the icons, but this doesnt work in newer versions of Windows.

Try this.
http://blogs.technet.com/b/heyscriptingguy/archive/2005/08/12/how-can-i-change-the-icon-for-an-existing-shortcut.aspx
I'm not sure why you can't delete the old shortcuts and make new ones, but I hope this helps!

Related

Visual Studio Installer Project - shortcut icons not set

I've created a WinForm application with .NET 4.6.1 and C#. I'm using Visual Studio 2017, with latest fixes updated (up to 29-Sept-2018).
The application uses a custom icon, and it's correctly shown: exe file is displayed with the proper icon.
I've created an Installer Project using the "Microsoft Visual Studio 2017 Installer Projects" extension. The installer copies sets of files in different locations (under Program Files, under the user's App Data, etc), and the files are correctly copied. EXE files correctly display the custom icon I've set.
Now, here comes the problem.
I've set a shortcut on the desktop.
The shortcut is created and actually works, but the icon is wrong: the default windows icon is shown instead.
I've tried several solutions and read from several forums.
1- I've tried to "Create New Shortcut" from the File System view (Desktop folder), and then set the Icon from the Properties window.
2- I've tried to right-click the output exe and select "Create a shortcut to primary output", and then dragged the shortcut to the desktop folder.
3- I've tried to select the icon referencing directly the Application Output exe: the wizard allows me to select the correct icon, I select it and confirm.
4- I've tried to select the icon referencing the source ICO file: once again, the wizard allows me to select the correct icon, I select it and confirm.
Any solution I've tried, I ALWAYS obtain a shortcut displayed with the default icon and NOT with the custom icon.
Whatsmore, if I try to manually "Create a shortcut" by right-clicking on the EXE, in window's File Explorer, the shortcut is created using the correct custom icon! So, it's strange that Visual Studio (or the installer) is not able to do the same thing during the installation.
Do you have any idea of the cause of the problem, and how to fix it?
Thanks!
I had the same issue, and tried every combination the OP also tried.
In the end my issue was down to the fact my .ICO file did not have the correctly sized images for the desktop shortcut. (It would have been nice if Visual Studio had told me that!!!!)
Oddly like the OP generating a shortcut by hand did make the icon appear, so I find the above a bit strange!
Anyway I was generating my .ICO file using GIMP to convert a PNG. I had clearly got this stage wrong.
I'd suggest trying a different .ICO file first and see if that is the cause.
It was for me and I solved it by using the following site:
http://icoconvert.com/
I then ticked the relevant boxes for the sizes, used this new .ICO file and hey presto it all works
I'd the same problem.
I had fix it simply select the main ouput (.exe) and not the .ico in the shortcut property icon option. I suppose installer not recognize the .ico file correctly.
I encountered the same problem. Just ensure you set the icon for the project to the same icon file as for the desktop shortcut and user program shortcut.
The icon file must follow the dimensions of Windows 7.
You can use http://icoconvert.com/ for changing the icon dimensions.
I had the same problem, using VS 2019 with the Visual Studio Installer extension.
I checked my icon had the correct dimensions (16x16, 32x32 and 48x48 within the ICO file), so it wasn't this.
Also, I had previously installed the app and the icon had worked fine. I'm using the "replace previous version", but I'm not sure if this is cause.
I double-checked the installers Outputs, and yes, the .ico was being copied/included... however I found that the defined shortcut (in VSI editor) did not have the icon property defined anymore - it had reverted to "(None)".
1
I resolved it in VSI, by using the Properties window for the shortcut, on the Icon property, select Browse from the DDL, then set the .ico from the source file. (The VSI detail tab still shows the default "text doc" icon, but result after install is the one I wanted/selected).
This is not the first time VSI has done this to my projects, so I'm guessing it is a slight bug of this otherwise great extension.
The problem for me was that the .ico was compressed with PNG.
Do not export using Vista PNG compression! Use normal BMP frames instead.

Dynamically Set Taskbar Icon for Windows Application

My company has a branding mechanism that sets the icon for a Windows Application, like so:
if (AppBranding.Is("FOO"))
Icon = MyProject.Properties.Resources.Icon_FOO;
else
Icon = MyProject.Properties.Resources.Icon_BAR;
Icon_FOO and Icon_BAR are resources that point to their respective .ico files.
Also, Icon and manifest in Project > MyProject Properties > Resources is set in Visual Studio.
When users launch the application, the correct icon appears based on branding. However, if they pin the program to the taskbar, the icon reverts to Icon_FOO.ico, regardless of branding. When they unpin it, the icon toggles back.
I believe that programs pinned to the taskbar use the icon of the .exe, while the icon for the Window is whatever I set Form.Icon to be. I only know how to set the .exe icon by going to Project Properties > Resources and making a selection from the drop down list, as I have in the picture above. How can the icon for the .exe be set dynamically?
The icon in the taskbar is (usually) the first icon resource available in the assembly, and cannot be modified from within the application (unless you create a custom shortcut programmatically).
Instead of trying to manipulate this, you can create a simple starter application (*.exe) with the correct icon and version attributes for each branded version? The .exe than only needs to load the application from an assembly that contains the actual application content.
so you have
Launcher_FOO.exe
Launcher_BAR.exe
with their own custom icons. Both application will create a common application from
Actual_Application.dll
to start the application.
You may use Reflection.Emit to create the Launcher_xxx.exe on the fly:
see google search
see msdn

Setting correct icon for Shortcut in VS2010 Setup Project

I have a small app with a setup project.
If I create a shortcut to my Primary Output, then this gets a standard Win7 icon and not the icon specified in my exe's Application Icon?
Whats the best way to make sure my desktop shortcut icon is the same icon as my exe?
e.g. If I change the exe's icon then I'd like the Setup icon to change as well.
If you set the icon for the shortcut you can set a primary output as source. In the file system editor of the setup project, click on the "(Icon)" combobox in the properties pane of the shortcut, then option "(Browse...)", button "Browse...". You'll see this:
Then add output and select the primary output of the exe.
You can add an icon from your target.exe file to the shortcut... in File System On Target Machine, browse to the shortcut in the folder you want to add the icon to (User's Desktop,etc). Right click the shortcut and select Properties Window. You'll see an Icon line... click it, select Browse, then browse to Application Folder/yourExe.exe (change from ICON to Exe files) and say OK. It will show you the icon from yourExe.exe that it has selected, say OK. You basically have to do the same thing for your Add/Remove Icon (appears in Control Panel/Uninstall)... properties page for your setup project. You have to do it for all shortcuts in different folders (User's Desktop, User's Startup, etc.) All icons good now!
To add to Gert's answer: make sure you build your project first. Otherwise the setup app will not see the icon.
Very simple way using IWshShortcut (works in .net 2 too):
WshRuntimeLibrary.IWshShortcut MyShortcut = (IWshRuntimeLibrary.IWshShortcut)WshShell.CreateShortcut(fullPathLnk);
string iconLoc = MyShortcut.IconLocation; // <- example: "c:\icon.ico,0"
I use to check if iconLoc still exists, fix if not, you can use to find and read icon file, etc etc

Application Icon doesn't change correctly using c#

I changed my Application's icon for a new one, by going to: "Project/MyProject Properties/Icon and Manifiest", and load the new icon. Now, in my debug folder the icon of my .exe file appear with the new icon, which is ok, but when I execute the .exe, the application icon in the taskbar still showing the old one.
Please advice.
You have two place to change your icon.
First place
The first place is in the project.
Right click on the project
Select Property
Go in Application Tabs
Choose Icon and Manifest and select the icon you want
Second place
The second place is in the property of your Winform.
Open the Form
Click on the Form
Press F4 or go in the property of the Form
Go down in the property to find "Icon"
Select the icon you want.
The reason you have a different icon in the taskbar than your application (.exe) icon is that the taskbar use the current form icon to display in the taskbar.
After encountering the same problem, I resolved it by doing the following:
Just stop your explorer.exe from task manager and rerun the explorer.exe again.
As a commenter mentioned, you should set in the properties of the *.ico file: Copy to Output Dir: Copy if newer.
This property is not absolutely required. I developed a winform application and tested it without icon. Then I created and added the icon. The icon showed when running with the VS debugger. I copied the bin/debug directory to another pc and there it ran with showing the icon.
But the icon did not show on the development machine when the app started by clicking the *.exe file.
Logout/login windows did not cure this.
Change the Copy To Output Dir property on the icon file to Copy If Newer, and rebuild the application, did help. Now I can start the app by clicking the *.exe and the icon shows nicely.
Conclusion:
It is not always required to build the app with the icon file copied to the output directory, but with this measure you will increase your chances.
Make sure that your *.ico file contains an icon of the proper size (like 16x16 for small task bars).
Copy your new icon in Project Properties --> resources --> icons
In your Main_Load function add:
this.Icon = Properties.Resources.newIcon;
Check this out for icon information and sizes it supports. Assuming this is just a simple error that you are getting check if your ico's are as per what is specified here http://msdn.microsoft.com/en-us/library/ms997636.aspx
I had the same problem and none of the above solved it.
In my case, I had defined the icon different for two different langages (default language english and german). You can see this if there appear two resources files: FormX.resx and FormX.de.resx
With the accepted answer only default icon was changed. But when running the application on my pc the german icon was used.
So I had to change the icon for both resources. In Visual Studio you can change the current resource language by switching the language item (in the forms properties) from default to another language.
I had the same problem. The "first place" mentioned by Patrick is about the file icon, i.e. the .exe aspect. The "second place" is about the form (in the upper left corner).
Restarting windows file explorer seemed to be a satisfactory solution too. But all this didn't work today. I didn't restart the computer, by the way.
This is what really displayed the new icon in the task bar: I realized that there was an old shortcut of the .exe on the desktop. Deleting the shortcut did the job.

Taskbar icon will not change once binary is installed

I have a WPF application in .net 3.5 sp1 where I change the main window icon periodically. I am seeing the taskbar icon change when running under the vs hosting process, when running directly from the bin/Debug or bin/Release folders, but not when the binary is installed and running from \Program Files! The titlebar icon of the window still changes correctly...
I'm setting the icon like this:
Uri imageSource = new Uri("pack://application:,,,/MyProject;component/Images/test.ico");
this.Icon = BitmapFrame.Create(imageSource);
Why isn't the taskbar icon changing?
I do have an ApplicationIcon set. This is what the taskbar icon is displaying instead of changing to what I set it to. According to msdn The ApplicationIcon is just a fallback in case this.Icon is not set.
I do not have the taskbar icon pinned.
The main window is not the startup window of the application. In fact, there is no startup window. The window is opened from a system tray icon.
The icons for the ApplicationIcon and test.ico mentioned above both have their compile action set to Resource.
The WiX installer is not doing anything special to the exe or icons. The exe is referenced like this:
<File Id="MyExe" Name="$(var.MyProject.TargetFileName)"
Source="$(var.MyProject.TargetPath)" KeyPath="yes" Vital="yes" />
I'm currently looking at the AppUserModelID to see if this can solve this but it seems unnecessary to override Windows 7's default behavior in this manner. I have two shortcuts created by WiX. One in the start menu's programs folder and one in the start menu's startup folder.
Update 18Aug11:
Ok this is just odd, odd, odd.
I started trying to solve another annoyance, that my window was allowing taskbar pinning when I don't really want it to (this is default win7 taskbar glomming). So I set IsHostApp REG_BINARY 0000 manually via regedit under HKCR\Applications\MyEXEName.exe. To have the change take effect I had to update the shortcuts that reference the app (or I could have reinstalled). Lo and behold, next time I start up the app, not only does the pinning feature disappear, but the taskbar icon properly updates!!!
Can someone explain how this has solved the issue?
When Windows Installer creates shortcuts in the Start menu, it sets the icon of the shortcuts which point to Installer cache of icons. This feature is required for advertising, where the referenced file does not exist but still the correct icon should be shown. It also allows showing the correct icon to the application if its main .exe is removed (and you can run MSI repair to fix it).
Your application is started with shortcut from Startup folder, and the icon of the shortcut is used on the Taskbar. (And you have the main window: no matter how you show it, when app starts or only when you click app icon in the notification area; moreover you have to have a window to be able to get clicks from notification area icon.)
When you disabled pinning your app to the Taskbar, it ignores the icon set in the shortcut that started your application, and therefore icon on Taskbar updates when you change the window icon.

Categories

Resources