How to change it to normal size?

enter image description here

link|improve this question

62% accept rate
feedback

closed as not a real question by techie007, studiohack Nov 10 '11 at 16:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 5 down vote accepted

Right click on the taskbar and select Properties. Uncheck the mark near "Use small icons" and click OK. That's all.

enter image description here

If you are talking about the taskbar button widths, you should see the answer to this question.

To undo the resizing of taskbar icons, you can use this VB script. It's safe and simply changes the value of MinWidth in the related registry path. For convenience, I'm copying the script here:

Option Explicit

Dim WSHShell, n, p, itemtype, MyBox

Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics\"
p = p & "MinWidth"
itemtype = "REG_SZ"
n = "-2310"

WSHShell.RegWrite p, n, itemtype

MyBox = MsgBox("You must reboot for the changes to take effect.", vbOKOnly,"Done")
link|improve this answer
Thanx, but I use Windows XP, and... it seems ti me that there isn't that option... – Daria Jul 29 '11 at 14:24
1  
Please see the last line in my answer (link to another question). – Mehper C. Palavuzlar Jul 29 '11 at 14:25
Thanx, but I'm afraid to use any scripts... Is it so difficult to fix it.. I thought that I just pushed something wrong... Thanx anyway. – Daria Jul 29 '11 at 14:40
1  
@Daria: Please see my edit. I hope that helps. If you want to do it manually, just go to the related registry path and delete MinWidth key. – Mehper C. Palavuzlar Jul 29 '11 at 15:43
1  
@Daria: Don't worry about the script. If you create a System Restore point, you can rollback any changes it makes. – surfasb Jul 29 '11 at 16:25
show 2 more comments
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.