Start11 v2 some software has a border around the icon

https://i.postimg.cc/vZ0YxGZR/start11v2-bug.png

Sometimes new applications appear with smaller icon and with a border. I did not change anything about them, it is fairly random (as far as I can tell) whether they'll have a border or not.

 

Example image: 

The top one is NSwag Studio, can be downloaded from: https://github.com/RicoSuter/NSwag/releases

The bottom one is TraXile, can be downloaded from: https://github.com/dermow/TraXile

4,730 views 4 replies
Reply #1 Top

Those apps have low resolution icons only so Windows adds a frame to them and paints them smaller.

Reply #3 Top

Okay I found a solution to fix this issue.

 

First you have to "touch" every icon to update last modification date, then use the Refresh icons in Start11 to update icons. This removed every border from all icons for me.

 

Batch I created to "touch" every icon (you have to run it as admin):

 

Code: asp.net
  1. @echo off
  2. for /R "%APPDATA%\Microsoft\Windows\Start Menu\Programs\" %%f in (*.lnk) do copy /b "%%f"+,, "%%f" 1>nul
  3. for /R "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\" %%f in (*.lnk) do copy /b "%%f"+,, "%%f" 1>nul

Reply #4 Top

We have made a change to future updates to Start11 v2 to detect when the OS is about to do this and bypass it.

So frames should be gone in the future, hopefully to never be seen again :)

+4 Loading…