may i know which program do you use to change icons?

Page 1 of 2 12 LastLast

  1. Posts : 314
    windows 10 pro 64
       #1

    may i know which program do you use to change icons?


    Hi
    i would like to change some system icons
    like drive icons , dvd , blue ray icons
    may i know which program do you use?
    i don't want to mess up with w10

    i prefer don't use autorun.inf because i can't change blu ray burner
    thanks
      My Computer


  2. Posts : 5,169
    64bit Win 10 Pro ver 21H2
       #2

    Hi drugo,

    There may be some 3rd party software for doing this but you can do it within W10 using the range of built in icons by the following method:

    https://www.tenforums.com/tutorials/3963-folder-icon-change-windows-10-a.html


    You can adapt the method for other shortcuts too. There are lots of good icons in C:\Windows\System32\imageres.dll
      My Computers


  3. Posts : 314
    windows 10 pro 64
    Thread Starter
       #3

    philc43 said:
    Hi drugo,

    There may be some 3rd party software for doing this but you can do it within W10 using the range of built in icons by the following method:

    https://www.tenforums.com/tutorials/3963-folder-icon-change-windows-10-a.html


    You can adapt the method for other shortcuts too. There are lots of good icons in C:\Windows\System32\imageres.dll
    hi
    thanks philc
    but i have some really beautiful icons
    but are we sure that CustomizerGod won't mess up windows 10 ...
      My Computer


  4. Posts : 5,169
    64bit Win 10 Pro ver 21H2
       #4

    You will find that CustomizerGod will not work for some of the icons in W10. Here is a quote from their site:

    If you're using Windows 10, you may notice read-only resources in the left-hand pane. Or if you open shell32.dll in Windows 8+, it too will be loaded as read-only. This happens because the system file containing those resources is digitally signed. Modifications to the file will break the signature and Windows will refuse to load it.

    This'll hopefully be circumvented in a future update to CustomizerGod.

    Some other comments:

    CustomizerGod lets you change the start button in Windows 7 and 8.1 but not in Windows 10. A separate app or a future update to CustomizerGod will let you change the start button in Windows 10.

    In Windows 10, Microsoft moved the start button resource back to the visual style's msstyle file, like in Windows Vista and XP. So if you really want to change it, use a 3rd-party theme that comes with a custom start button.
      My Computers


  5. Posts : 314
    windows 10 pro 64
    Thread Starter
       #5

    philc43 said:
    You will find that CustomizerGod will not work for some of the icons in W10. Here is a quote from their site:

    If you're using Windows 10, you may notice read-only resources in the left-hand pane. Or if you open shell32.dll in Windows 8+, it too will be loaded as read-only. This happens because the system file containing those resources is digitally signed. Modifications to the file will break the signature and Windows will refuse to load it.

    This'll hopefully be circumvented in a future update to CustomizerGod.

    Some other comments:

    CustomizerGod lets you change the start button in Windows 7 and 8.1 but not in Windows 10. A separate app or a future update to CustomizerGod will let you change the start button in Windows 10.

    In Windows 10, Microsoft moved the start button resource back to the visual style's msstyle file, like in Windows Vista and XP. So if you really want to change it, use a 3rd-party theme that comes with a custom start button.
    hi
    thanks!!!
    i wanted to change hard disk icon and burners icon
    seems i can't do it
    here there is a video

    but i don't know how safe is it
      My Computer


  6. Posts : 42,983
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #6

    I use 'Icon changer' which creates a version of imageres.dll containing some 77 Win 7 icons. (If it had a different icon set available, I guess that would work).

    However its 'Patch' function (to replace the default dll) seems ineffective, so I have to replace the dll manually. (which is hardly ever).

    Depends what icons you want and how long you want to spend doing it.

    Bear in mind that
    - any major upgrade (like 1511 in November)
    - an in-place upgrade repair install
    - SFC /scannow

    will revert system files - and hence resources - to MS default
    Last edited by dalchina; 12 Mar 2016 at 02:50.
      My Computers


  7. Posts : 314
    windows 10 pro 64
    Thread Starter
       #7

    dalchina said:
    I use 'Icon changer' which creates a version of imageres.dll containing some 77 Win 7 icons. (If it had a different icon set available, I guess that would work).

    However its 'Patch' function (to replace the default dll) seems ineffective, so I have to replace the dll manually. (which is hardly ever).

    Depends what icons you want and ow long you want to spend doing it.

    Bear in mind that
    - any major upgrade (like 1511 in November)
    - an in-place upgrade repair install
    - SFC /scannow

    will revert system files - and hence resources - to MS default
    hi
    thanks
    i would like to change the icon size on explorer on the left side , but i guess it's no possible , right?
    they are so tiny , i would like to try w10 under a 4k monitor
    thanks
      My Computer


  8. Posts : 42,983
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #8

    Not as far as I know. And agreed, on higher res screens things get to look tiny.

    Scaling (not recommended by MS!) is an option but then affects everything.
    (Settings, search Scaling)

    Here's my explorer This PC view:
    may i know which program do you use to change icons?-snap-2016-03-12-13.29.23.jpg
    Last edited by dalchina; 12 Mar 2016 at 08:31.
      My Computers


  9. Posts : 2,799
    Linux Mint 20.1 Win10Prox64
       #9

    To change the icon for system drive(s). Open the registry and go to:
    1. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons
    2. create a key for the drive you want to change the icon
    3. set the Default Icon to what ever icon you want to change.


    Here's an example to change the icons for drive C and W:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\C]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\C\DefaultIcon]
    @="%SystemRoot%\\System32\\imageres.dll,1"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\W]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\W\DefaultIcon]
    @="%SystemRoot%\\System32\\imageres.dll,93"
    may i know which program do you use to change icons?-.jpg

    To set back to the default, just delete C & W under DriveIcons
      My Computer


  10. Posts : 314
    windows 10 pro 64
    Thread Starter
       #10

    topgundcp said:
    To change the icon for system drive(s). Open the registry and go to:
    1. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons
    2. create a key for the drive you want to change the icon
    3. set the Default Icon to what ever icon you want to change.


    Here's an example to change the icons for drive C and W:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\C]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\C\DefaultIcon]
    @="%SystemRoot%\\System32\\imageres.dll,1"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\W]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\W\DefaultIcon]
    @="%SystemRoot%\\System32\\imageres.dll,93"

    To set back to the default, just delete C & W under DriveIcons
    hi
    very nice
    but can i use the icon too?
    at least in the video above , the author used the icons
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 14:43.
Find Us




Windows 10 Forums