REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MinThumbSizePx /t REG_DWORD /d 600 /f
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MaxThumbSizePx /t REG_DWORD /d 600 /f
REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MinThumbSizePx /f
REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MaxThumbSizePx /f
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MinThumbSizePx /t REG_DWORD /d 200 /f
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MaxThumbSizePx /t REG_DWORD /d 200 /f
Thank you for this.Hi dfg555,
Those previews of active applications on your Taskbar are called Taskbar Thumbnails.
You can modify the Registry by adding two REG_DWORD (32-bit) Values:
- MinThumbSizePx
- MaxThumbSizePx
These two values need to be added to the following location:
- HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband
Once added their Data value > Decimal needs to be modified. The value you enter represents pixels, and technically is best when both DWORD values share the same pixel size, but you can have differing Data values if you wish.
After modifying the two DWORD values and closing the application used to modify then [ e.g. Registry Editor, or Administrator: Command Prompt, or Administrator: Windows PowerShell prompt ] you need to either:
- Sign-out, then Sign-in for change to take effect, or
- Right-click on Taskbar > select Task Manager > Scroll to bottom of window > Right-click on Windows Explorer and select Restart, which will cause the screen to momentarily flash/darken. Close the Task Manager when done.
Sample image of default status: 200 px x 200 px
View attachment 6123
Here is how to make these modifications using an Administrator: Command Prompt
In this example I'll increase the size to 600 pixels
- Press Windows key + S together
- In the Search/Cortana field type command
- In the search results right-click on Command Prompt & select Run as administrator
- Click Yes to the UAC prompt
- In the Administrator: Command Prompt console type or copy & paste the following:
Code:REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MinThumbSizePx /t REG_DWORD /d 600 /f
Press Enter key
Next, type or copy & paste the following:
Code:REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MaxThumbSizePx /t REG_DWORD /d 600 /f
Press Enter key
Sample image
View attachment 6117
Type exit then press Enter key to close the Administrator: Command Prompt
Your Registry has now been modifed
View attachment 6118
- For these modifications to take affect you now need to do one of the following:
- Left-click on Start > then right-click the Account icon and select Sign out
- Or you can right-click on Taskbar then select Task Manager
- Now scroll to bottom of Task Manager window
- Right-click on Windows Explorer and select Restart
- When done. close the Task Manager and changes will be ready.
Sample image of status now the modifcations have been made and set to 600 px x 600 px
View attachment 6122
Notes:
You can set the size to whatever you like. I just used 600 pixels as an example.
To reverse these modifcations, in an Administrator: Command Prompt you can do one following:
Option One
- Type or copy & paste the following:
Code:REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MinThumbSizePx /f
Press Enter key
Next, type or copy & paste the following:
Code:REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MaxThumbSizePx /f
Press Enter key
Type Exit and press Enter key to close the Administrator: Command Prompt
Now either sign out, then sign in again, or restart Windows Explorer.
Option Two
- Type or copy & paste the following:
Code:REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MinThumbSizePx /t REG_DWORD /d 200 /f
Press Enter key
Next, type or copy & paste the following:
Code:REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MaxThumbSizePx /t REG_DWORD /d 200 /f
Press Enter key
Type exit then press Enter key to close the Administrator: Command Prompt
Now either sign out, then sign in again, or restart Windows Explorer.
If all this seems a little much, I'd be happy to post some REG files you can merge to make the change, and/or reverse the change. If you'd like me to do that just let me know the pixel size you are after as I am assuming 600 pixels (as used in example) is not what you want.
Regards,
Regedit32
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.