Windows 10: How to make taskbar labels wider?

Discus and support How to make taskbar labels wider? in Windows 10 Support to solve the problem; I always have labels showing in my taskbar so I can see exactly what I have open with the titles of each spreadsheet for example listed in my taskbar... Discussion in 'Windows 10 Support' started by DMAA, Feb 20, 2018.

  1. DMAA Win User

    How to make taskbar labels wider?


    I always have labels showing in my taskbar so I can see exactly what I have open with the titles of each spreadsheet for example listed in my taskbar rather than hidden behind an icon.

    However it is frustrating how narrow the labels are because the titles are always cut off. This is more of a problem when document have log prefix's.

    Does anyone know if this can be edited at all? I know that it can't be edited just using settings.

    :)
     
  2. Ed1-US Win User

    Icon missing from Shortcut in Taskbar

    I want to have a shortcut button on the Taskbar to open the Control Panel. I added a Control Panel shortcut to the Desktop and dragged it to the Taskbar. That created a Control Panel button/shortcut on the Taskbar, but the button/shortcut has no icon -
    it is just blank.

    I have set the Taskbar setting for "Combine Taskbar buttons" to "Always, hide labels". If I change this setting to show the labels, the label for this Taskbar shortcut includes a small Control Panel icon. But it disappears when the setting is changed back
    to hide labels.

    My other buttons/shortcuts in the Taskbar and in the Notification area all have appropriate icons.

    How can I get an icon for the Control Panel in the Taskbar? I did have one displaying properly until I reset Windows 10.
     
    Ed1-US, Feb 20, 2018
    #2
  3. Just Icons on the Task Bar

    Hi,

    To hide the labels,

    Right-click the taskbar>Taskbar Settings.

    Under Show Labels, choose Never show labels from the dropdown.
     
    Sumit Dhiman2, Feb 20, 2018
    #3
  4. dalchina New Member

    How to make taskbar labels wider?

    dalchina, Feb 20, 2018
    #4
  5. DMAA Win User
    Thank you very much. It works fine in Windows 10, a very easy tweak.
     
  6. dalchina New Member
    Good, bear in mind any such changes will be overridden when you upgrade, so keep the reg file aside to reapply as necessary.
     
    dalchina, Feb 22, 2018
    #6
  7. RickC Win User
    I've written a very simple GUI that may help.

    • It uses a slider to adjust the label width value.
    • It shows the width values as the slider is moved.
    • It creates the 'MinWidth' registry key if it doesn't exist.
    • It changes the 'TaskbarGlomLevel' registry key that can prevent the setting from working.
    • It offers a choice of whether to immediately sign out.

    How to make taskbar labels wider? [​IMG]


    I created it using AutoHotkey (to give me practise using a slider control) so you'll need this installed if you just use the script itself [use a 'Custom install' and choose the '32-bit (Recommended)' option]. I've tested it with Windows 10 Home 1709 Build 16299.125 x64.

    The script is as follows (and heavily commented - anything after a semi-colon [;] is a comment):
    Code: ; Prompted by Always, Sometimes, or Never Combine Taskbar Buttons in Windows 10 #SingleInstance Force ; Only allow one instance of the script to run at a time #NoTrayIcon ; Prevent showing a tray icon ; Allow registry commands in a 32-bit script to access redirected keys in the 64-bit registry view and vice versa ; Thanks to qwerty12 (see Unable to write registry key/value - AutoHotkey Community) SetRegView 64 ; TaskbarGlomLevel settings: 0 = Always combine, hide labels; 1 = Combine when taskbar is full; 2 = Never combine (the only setting which can be used) RegWrite, REG_DWORD, HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, TaskbarGlomLevel, 2 RegRead, SliderVal, HKCU\Control Panel\Desktop\WindowMetrics, MinWidth ; Read the current width setting and store it in a variable if ErrorLevel ; i.e. if it doesn't exist { RegWrite, REG_SZ, HKCU\Control Panel\Desktop\WindowMetrics, MinWidth, 38 ; ... then create default value SliderVal = 38 ; ... and store it in a variable } ; Set up the GUI slider Gui, Add, Slider, x32 y30 w350 h50 gSliderUpdate vSliderVal Range38-500 ToolTipTop TickInterval10 Thick20, %SliderVal% Gui, Add, Text, x10 y34 w25 h40 , 38`n(Min) Gui, Add, Text, x380 y34 w50 h40 , 500`n(Max) Gui, Add, Text, x50 y10 w420 h20 , The current label width is %SliderVal%. Use the slider to make changes. Gui, Add, Button, x90 y80 w90 h30 , Cancel Gui, Add, Button, x250 y80 w90 h30 , OK Gui, Show, w420 h120, Taskbar Labels - Width Changer return SliderUpdate: ; Update the text control with new value when slider is released GuiControl, Text, Static3 , The current label width is %SliderVal%. Use the slider to make changes. return ButtonOK: ; What happens if the OK button is clicked MsgBox , 36, Commit change now?, You need to sign out/sign in for the change to take effect.`n`nSign out now? IfMsgBox, Yes { RegWrite, REG_SZ, HKCU\Control Panel\Desktop\WindowMetrics, MinWidth, %SliderVal% SetRegView, Default ; Set the registry back to its default Run shutdown -L,, hide ; Log user off immediately } IfMsgBox, No { RegWrite, REG_SZ, HKCU\Control Panel\Desktop\WindowMetrics, MinWidth, %SliderVal% ; Write the new value to the registry SetRegView, Default ; Set the registry view back to its default ExitApp ; Close the script } return ButtonCancel: ; What happens if the Cancel button is clicked GuiClose: ; Close the GUI without making any changes ExitApp ; Close the script[/quote] Just copy the code above and paste it into Notepad then save it as something like Taskbar Label - Width Changer.ahk. (Make sure the filename ends with .ahk, not .txt.)

    Alternatively, I've attached a Taskbar Labels - Width Changer.zip file with both the .AHK script itself and a compiled version with custom icon.

    VirusTotal - analysis for the script.
    VirusTotal - analysis for the compiled exe. (Note the 2 warnings, which are false positives, and the comments.)

    Hope this helps...
     
    RickC, Feb 26, 2018
    #7
  8. DMAA Win User

    How to make taskbar labels wider?

    Just copy the code above and paste it into Notepad then save it as something like Taskbar Label - Width Changer.ahk. (Make sure the filename ends with .ahk, not .txt.)

    Alternatively, I've attached a Taskbar Labels - Width Changer.zip file with both the .AHK script itself and a compiled version with custom icon.

    VirusTotal - analysis for the script.
    VirusTotal - analysis for the compiled exe. (Note the 2 warnings, which are false positives, and the comments.)

    Hope this helps...[/quote] Wow, that's impressive! Thanks very much. It makes a huge difference to be able to see the file names when you have lots of windows open.
     
    DMAA, Apr 4, 2018
    #8
Thema:

How to make taskbar labels wider?

Loading...
  1. How to make taskbar labels wider? - Similar Threads - taskbar labels wider

  2. Labels overlapping in taskbar

    in Windows 10 Gaming
    Labels overlapping in taskbar: Why the labels are on top of each other as in the screenshot? This happens once or twice per week. https://answers.microsoft.com/en-us/windows/forum/all/labels-overlapping-in-taskbar/847a021c-2e7e-4dd0-8980-a056a59dde65
  3. Labels overlapping in taskbar

    in Windows 10 Software and Apps
    Labels overlapping in taskbar: Why the labels are on top of each other as in the screenshot? This happens once or twice per week. https://answers.microsoft.com/en-us/windows/forum/all/labels-overlapping-in-taskbar/847a021c-2e7e-4dd0-8980-a056a59dde65
  4. Labels on taskbar

    in Windows 10 Gaming
    Labels on taskbar: I understand Microsoft for Windows 11 has brought back a feature to "never combine" or "combine only when the taskbar is full. I found this article. https://pureinfotech.com/show-taskbar-labels-never-combine-windows-11/ I don't have the feature. Any thoughts or suggestions...
  5. Labels on taskbar

    in Windows 10 Software and Apps
    Labels on taskbar: I understand Microsoft for Windows 11 has brought back a feature to "never combine" or "combine only when the taskbar is full. I found this article. https://pureinfotech.com/show-taskbar-labels-never-combine-windows-11/ I don't have the feature. Any thoughts or suggestions...
  6. Making elevator bars wider and easier to see.

    in Windows 10 Gaming
    Making elevator bars wider and easier to see.: The "elevator bars" along the right edge of multi-page items are 1 not clearly illuminated, and 2 are too narrow to easily mouse over. Is there a way to establish a preference for wider and better illuminated elevator bars?...
  7. Making elevator bars wider and easier to see.

    in Windows 10 Software and Apps
    Making elevator bars wider and easier to see.: The "elevator bars" along the right edge of multi-page items are 1 not clearly illuminated, and 2 are too narrow to easily mouse over. Is there a way to establish a preference for wider and better illuminated elevator bars?...
  8. Making and printing picture labels

    in Windows 10 Network and Sharing
    Making and printing picture labels: I have changed to windows 10 I used to be able to make labels for jams etc so easily Now I don't know how to do it I get so far, then I can't save or add names etc help!...
  9. How do I make the Start menu wider?

    in Windows 10 Customization
    How do I make the Start menu wider?: Greetings, My computer crashed and I reinstalled Windows. My start menu is now only has a few tiles on it and I'm adding more. When I try to make it wider by dragging, it snaps back to its original width. How can I make it wider? Thanks, Shane. Windows 10 version 1909...
  10. Labels on Taskbar Icons

    in Windows 10 Customization
    Labels on Taskbar Icons: I've accidently changed something that now gives a description for those icons / windows which are open - [ATTACH] How do I get rid of them? TIA https://answers.microsoft.com/en-us/windows/forum/all/labels-on-taskbar-icons/6a4ac344-0405-42dc-85d5-f4c0bbdeda3b