problem with folder redirection server 2008 r2 and desktops are w7
Hi, we are having weird problem with setup on the title.
We don't have roaming profiles but recently set folder redirection via group policy so that user’s documents folder points to \\server\users\username (also H:\ mapped to this path)
Problem is, if a new user logs in to a machine that they have never logged in before, they logon to temporary profile with windows classic theme and customisation doesn't apply. user doesn’t get internet explorer 9 short cut to pinned their task bar and/or their programs list.
I know removed folder redirection policy and used below script to setup Documents folder on logon
script
----------------
Quote:
set WshShell = CreateObject("Wscript.shell")
MyDocuments = "H:\"
MyPictures = "H:\My Pictures"
WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Ex plorer\User Shell Folders\Personal",MyDocuments,"REG_SZ"
WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Ex plorer\User Shell Folders\My Pictures",MyPictures,"REG_SZ"
Above script somewhat sorted for some of the desktops around, but issue I’ve described still on many computers.
Has anyone had similar problem?
Thanks