|
|
Page Last Updated: 24/04/2011 Redirect Internet Explorer Favourites
If your users move around from machine to machine, some elements of their profile will not follow them. While some can be redirected via Group Policy, the main one missing from that feature is Internet Explorer Favourites.
However this is easily achieved by modifying the registry as part of the login script.
- Create the registry file. In this example it is called favorites.reg.
The best way is to make the required changes on a test machine. Once verified that they work correctly export the relevant keys. Open the export file in a text editor like notepad and remove the other keys. There are two locations for this particular change and the first is in "hex", making the native registry editor a much easier place to create the initial settings.
The example below redirects both locations to "U:\Favorites" however as the first one is in hex if you are using a different location, then you will need to make the change in your own registry so that the export will be correct.
- Place the following line in to your login script:
%systemroot%\regedit /s favorites.reg
- Place the file in the correct location.
This should be the same directory as your login script (more information here).
|