fix icon

Discussion in 'Windows 10' started by Hamidreza2010, Aug 3, 2016.

  1. Hamidreza2010

    Hamidreza2010 MDL Novice

    Nov 27, 2015
    21
    0
    0
  2. Belarathon

    Belarathon MDL Senior Member

    Nov 21, 2007
    316
    37
    10
    Did you use some sort of tweaking app to remove the arrow overlay from your shortcut icons?
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,233
    94,615
    450
    Murphy78 once made a script which rebuilds icon cache, maybe he can send it to you.

    But first answer Belarathon's question :)
     
  4. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. hb860

    hb860 MDL Expert

    May 7, 2010
    1,012
    1,858
    60
    #5 hb860, Aug 4, 2016
    Last edited by a moderator: Apr 20, 2017
    Win+R ->
    Code:
    ie4uinit.exe -show
    This will rebuild your icon cache. No tools required.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    #6 kaljukass, Aug 4, 2016
    Last edited by a moderator: Apr 20, 2017
    Code:
    @echo off
    color 1f
    pushd "%CD%"
    CD /D "%~dp0"
    (NET FILE||(powershell -command Start-Process '%0' -Verb runAs -ArgumentList '%* '&EXIT /B))>NUL 2>NUL
    :--------------------------------------
    ECHO -------------------------------------------------------------------------------
    echo. Iconcache Rebuild Script
    ECHO -------------------------------------------------------------------------------
    
    
    ECHO This script will restart explorer and delete the iconcache files.
    ECHO The system will reboot when finished.
    ECHO -------------------------------------------------------------------------------
    CHOICE /c YN /n /M "Run this script? (Y/N): "
    set errortemp=%ERRORLEVEL%
    IF %ERRORTEMP% EQU 2 EXIT
    IF %ERRORTEMP% EQU 0 EXIT
    taskkill /f /im explorer.exe
    takeown /f %userprofile%\appdata\local\iconcache.db && icacls %userprofile%\appdata\local\iconcache.db /grant administrators:F
    attrib -r -s -h %userprofile%\appdata\local\iconcache.db
    del %userprofile%\appdata\local\iconcache.db
    if %ERRORLEVEL% NEQ 0 (ECHO iconcache.db deletion errors detected)
    takeown /f %userprofile%\appdata\local\microsoft\windows\explorer\iconcache*.* && icacls %userprofile%\appdata\local\microsoft\windows\explorer\iconcache*.* /grant administrators:F
    attrib -r -s -h %userprofile%\appdata\local\microsoft\windows\explorer\iconcache*.*
    del %userprofile%\appdata\local\microsoft\windows\explorer\iconcache*.*
    if %ERRORLEVEL% NEQ 0 (ECHO iconcache folder item deletion errors detected)
    takeown /f %userprofile%\appdata\local\microsoft\windows\explorer\thumbcache*.* && icacls %userprofile%\appdata\local\microsoft\windows\explorer\thumbcache*.* /grant administrators:F
    attrib -r -s -h %userprofile%\appdata\local\microsoft\windows\explorer\thumbcache*.*
    del %userprofile%\appdata\local\microsoft\windows\explorer\thumbcache*.*
    if %ERRORLEVEL% NEQ 0 (ECHO thumbcache folder item deletion errors detected)
    ECHO Process Complete. System will reboot in 5 seconds.
    timeout /t 5 /nobreak>NUL
    shutdown /r /t 0
    
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. WindowsBrownie

    WindowsBrownie MDL Novice

    Aug 28, 2015
    15
    1
    0
    download winaero tweaker there is a fix in it to rebuild your icon cache
    winaero . com
     
  8. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    In QUICK LINKS in my sig
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    #9 kaljukass, Aug 4, 2016
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    #10 lobo11, Aug 4, 2016
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    I don't have it. Maybe it is/was empty and some cleaners has removed it? Don't know. You may try, maybe helps, although I doubt in it.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    #12 lobo11, Aug 4, 2016
    Last edited: Aug 4, 2016
    Yup, registry cleaner would do it, copy mine add it back:D

    I learned the hard way using registry cleaners, I just use mine to empty recycle bin & other simple things, never anything to do with registry, Revo Uninstaller Pro takes care of most.:D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. hb860

    hb860 MDL Expert

    May 7, 2010
    1,012
    1,858
    60
    The 29 parameter is responsible for the shortcut overlay icon.
    The shell icons key DOES NOT EXIST by default.
    lobo11, you have disabled the shortcut overlay icon with some tool. That's why you have the key and the parameter.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. Hamidreza2010

    Hamidreza2010 MDL Novice

    Nov 27, 2015
    21
    0
    0
    Thanks all dears
    My problem was solved :clap:
     
  15. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    Yes I disabled the shortcut overlay with Ultimate Windows Tweaker, (In QUICK LINKS), forgot about that:worthy:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. T-S

    T-S MDL Guru

    Dec 14, 2012
    3,984
    1,331
    120

    Nice you to see that you're "explaining" it to the author of winaerotweaker :D
     
  17. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    I was not explaining anything, just telling him he was right, and I am well aware of who he is.:confused:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...