Page 1 of 1
Sort Quick Launch Icons
#1
Posted 11 March 2005 - 04:06 PM
Does anybody know of a good way to sort the icons in the Quick Launch toolbar?
I read a while back a method that involved moving all the links out of the QuickLaunch folder and then adding them back 1 by 1 with a pause between the moves [to allow Windows to realize a change had been made].
I had that in my process when I was doing SP1 and I believe it was working. I have since moved onto SP2 and the process no longer works.
I have thought about trying to use AutoIt but I can't think of a good way to select the icon that needs to be moved.
Thanks in advance.
I read a while back a method that involved moving all the links out of the QuickLaunch folder and then adding them back 1 by 1 with a pause between the moves [to allow Windows to realize a change had been made].
I had that in my process when I was doing SP1 and I believe it was working. I have since moved onto SP2 and the process no longer works.
I have thought about trying to use AutoIt but I can't think of a good way to select the icon that needs to be moved.
Thanks in advance.
#2
Posted 11 March 2005 - 09:58 PM
The only way you can accomplish this is by configuring your quick launch the way you want it on your pc, reboot, then grab the necessary reg entries. Finally, during your UA install import this reg tweak prior to runonceex.
search around.. its been cover a bunch of times.
search around.. its been cover a bunch of times.
#3
Posted 12 March 2005 - 03:26 AM
Copy the shortcuts you want into your $oem$ folder, rename them with a number at the start of the short cut, i.e. "20 Show Desktop.lnk" lowest number goes first on your quick launch.
Chuck these commands somewhere (mine is in kTool.ini):
del /q "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\*.*"
del /q "%AllUsersProfile%\Desktop\*.*"
copy c:\install\Applications\QuickLaunch\*.* "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
copy c:\install\Applications\QuickLaunch\*.* "%AllUsersProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
%AllUsersProfile% is if you want it in all profiles (obviously
).
Chuck these commands somewhere (mine is in kTool.ini):
del /q "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\*.*"
del /q "%AllUsersProfile%\Desktop\*.*"
copy c:\install\Applications\QuickLaunch\*.* "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
copy c:\install\Applications\QuickLaunch\*.* "%AllUsersProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
%AllUsersProfile% is if you want it in all profiles (obviously
#4
Posted 12 March 2005 - 10:35 AM
Oh yea.. theres that way too.. but Im so anal retentive, I dont like the tool tips coming up as "15 Mozilla Firefox".. heh.
#5
Posted 12 March 2005 - 06:12 PM
I'm with you on this one durex. Started a thread myself a month or two ago on this very same topic, and shot that very same suggestion down for the very same reason. 
Anyway, durex's suggested method is the one that I use. Once I had all of my apps setup to install, I ran the install on a test virtual machine. I the reordered the icons to my liking, set up the size of the QL bar, etc... and then exported the following reg entry:
It is very long, and will configure your taskbar the way I like instead of how you like, so I won't bother posting the entire hex value from my reg file. There should be plenty more information on this throughout the forum. Just try a simple search for something like "Quick Launch." Just be prepared to do a lot of reading.
Oh, one other thing that I do to set mine up. Once I had the QL bar configured just the way I wanted, I rar-ed up the QL folder into an SFX that gets extracted during the uA process so that I don't have to worry about moving/creating all my desired shortcuts.
Hope this helps.
Anyway, durex's suggested method is the one that I use. Once I had all of my apps setup to install, I ran the install on a test virtual machine. I the reordered the icons to my liking, set up the size of the QL bar, etc... and then exported the following reg entry:
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop] "TaskbarWinXP"=hex:<Value goes here>
It is very long, and will configure your taskbar the way I like instead of how you like, so I won't bother posting the entire hex value from my reg file. There should be plenty more information on this throughout the forum. Just try a simple search for something like "Quick Launch." Just be prepared to do a lot of reading.
Oh, one other thing that I do to set mine up. Once I had the QL bar configured just the way I wanted, I rar-ed up the QL folder into an SFX that gets extracted during the uA process so that I don't have to worry about moving/creating all my desired shortcuts.
Hope this helps.
#6
Posted 14 March 2005 - 10:25 AM
Thanks everybody for your ideas. Unfortunately, in my environment those methods won't work very well. I have different QL icons appearing depending on what model hardware I am configuring.
I have done quite a bit of reading about the topic on here but haven't found a solution that works well for me yet. FYI.. I even asked Microsoft but they didn't have any good ideas either.
@Cartoonite - I will take a look at that registry entry and see if I can create a "master" reg entry that would handle all of my various configurations.
Oh well, I guess this step will remain a manual step in my process until I figure something out.
thanks.
I have done quite a bit of reading about the topic on here but haven't found a solution that works well for me yet. FYI.. I even asked Microsoft but they didn't have any good ideas either.
@Cartoonite - I will take a look at that registry entry and see if I can create a "master" reg entry that would handle all of my various configurations.
Oh well, I guess this step will remain a manual step in my process until I figure something out.
thanks.
#7
Posted 07 December 2005 - 11:58 AM
DumKopf, on Mar 12 2005, 10:26 AM, said:
Copy the shortcuts you want into your $oem$ folder, rename them with a number at the start of the short cut, i.e. "20 Show Desktop.lnk" lowest number goes first on your quick launch.
Chuck these commands somewhere (mine is in kTool.ini):
del /q "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\*.*"
del /q "%AllUsersProfile%\Desktop\*.*"
copy c:\install\Applications\QuickLaunch\*.* "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
copy c:\install\Applications\QuickLaunch\*.* "%AllUsersProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
%AllUsersProfile% is if you want it in all profiles (obviously
).
Chuck these commands somewhere (mine is in kTool.ini):
del /q "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\*.*"
del /q "%AllUsersProfile%\Desktop\*.*"
copy c:\install\Applications\QuickLaunch\*.* "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
copy c:\install\Applications\QuickLaunch\*.* "%AllUsersProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
%AllUsersProfile% is if you want it in all profiles (obviously
Are you sure it will work to stick them into %allusersprofile%?
EDIT: No it will NOT work to create the QuickLaunch folder like described in the quote!
This post has been edited by druiddk: 07 December 2005 - 03:02 PM
#8
Posted 08 December 2005 - 07:52 AM
BTW!
I used this method to enable the QuickLaunch bar and have a script copy the shortcuts that i put in before making the .reg file.
After Unattended finishes the icons are sorted the way I want
This is the post im refering to:
http://www.msfn.org/...showtopic=44559
I used this method to enable the QuickLaunch bar and have a script copy the shortcuts that i put in before making the .reg file.
After Unattended finishes the icons are sorted the way I want
This is the post im refering to:
http://www.msfn.org/...showtopic=44559
#9
Posted 22 June 2009 - 11:29 AM
#10
Posted 23 June 2009 - 09:08 PM
http://www.msfn.org/...howtopic=135131
for startbar toolbars quick launch ect does it all
could u explain this a bit more
for startbar toolbars quick launch ect does it all
Quote
Thanks everybody for your ideas. Unfortunately, in my environment those methods won't work very well. I have different QL icons appearing depending on what model hardware I am configuring.
could u explain this a bit more
Share this topic:
Page 1 of 1



Help
Back to top









