I have tried pushing the ie favorites through and ADM, and a script. I even manually edited the reg files. But when the user logs in, it creates a folder called %username% instead of the users Name.
Here is the expample script I am using. That all works and it does set the variables.
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,"\\file004\Users\%USERNAME%\Favorites","REG_SZ"
RegLocate = "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Favorites"
objShell.RegWrite RegLocate,"\\file004\Users\%USERNAME%\Favorites","REG_SZ"
Thanks for any help
Mike