Home All Groups Group Topic Archive Search About

enlarging icon on 'Taskbar'

Author
11 Feb 2005 3:30 PM
nospam
Hello,

How do I enlarge the program icons that I want on the Taskbar?

Thankyou
Shane

Author
11 Feb 2005 11:48 PM
Trevor L.
Shane,

Copy this code into a text file with extension  ".vbs" and run it

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 = "-2700"
WSHShell.RegWrite p, n, itemtype
MyBox = MsgBox("You must reboot for the changes to take effect.",
vbOKOnly,"Done")

I think it comes from Kellys Korner http://www.kellys-korner.com/ (on the XP
Tweaks page which is http://www.kellys-korner-xp.com/xp_tweaks.htm). There
is a lot of good stuff there, which I have often used (Thanks, Kelly)
--
Cheers,
Trevor L


I choose Polesoft Lockspam to fight spam, and you?
http://www.polesoft.com/refer.html
Author
12 Feb 2005 7:04 AM
Kelly
Most welcome, Trevor.  :o)

--
All the Best,
Kelly (MS-MVP)

Troubleshooting Windows XP
http://www.kellys-korner-xp.com


Show quote
"Trevor L." <tan***@homemail.com.au> wrote in message
news:%23uXzdQJEFHA.3928@TK2MSFTNGP15.phx.gbl...
> Shane,
>
> Copy this code into a text file with extension  ".vbs" and run it
>
> 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 = "-2700"
> WSHShell.RegWrite p, n, itemtype
> MyBox = MsgBox("You must reboot for the changes to take effect.",
> vbOKOnly,"Done")
>
> I think it comes from Kellys Korner http://www.kellys-korner.com/ (on the
> XP Tweaks page which is http://www.kellys-korner-xp.com/xp_tweaks.htm).
> There is a lot of good stuff there, which I have often used (Thanks,
> Kelly)
> --
> Cheers,
> Trevor L
>
>
> I choose Polesoft Lockspam to fight spam, and you?
> http://www.polesoft.com/refer.html
>

AddThis Social Bookmark Button