ClioSport.net

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • When you purchase through links on our site, we may earn an affiliate commission. Read more here.

Group policy - IE favourites -

Car  Rav4
Hi,

How the heck do you force the IE favourites to be ontop of all the other ones??

So annoying.
 
don't quite fancy getting everyone to use FF really.

:)

Just need to know for IE,

Thanks though
 
Can't force them to the top I'm afraid, however if you delete everyone's favourites then it'll be at the top!
 
Taken from Expert Exchange

http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/2003_Server/Q_22545305.html
There isn't a way using Group Policy. I have configured a Logon Script in Group Policy to do the job.

Create a VBS script and place this code in it. You may change the "Z:\Favorites" to what you like.
--------------------------------------------------

Option Explicit

Dim RegLocate, objShell

Set objShell = WScript.CreateObject("WScript.Shell")

RegLocate = "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Favorites"

objShell.RegWrite RegLocate,"Z:\Favorites","REG_SZ"

RegLocate = "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Favorites"

objShell.RegWrite RegLocate,"Z:\Favorites","REG_SZ"
 
Back
Top