Domain question - folder redirection

Right in my new job as domain admin, i’m trying to figure out how to redirect a user my documents to a share on a NAS we have just bought (so as to help shorten roaming profiles logon times).

THe problem i have come across is the fact that the NAS doesn’t support file level permissions but is allowed onto the domain and can use the domain user accounts for permissions on the shares. As using the group policicy to redirect the folder wont work due to the permissions problem, Is it possible to create a mapped drive to the share then re point mydocs location via a logon script?

TIA Preecey

i dont see why not… tho if you have users that are mobile and not allways connected you could run into problems…

From what i have read both web and books, mapped drives are now a big nono and should be left to rot with nt4. Think the domain maybe a little screwed up from the previous sysadmins, so i am currently using some vmware machines to help me through the AD myre. nothing like a challenge :slight_smile:

try this in your login script, assuming it’s vbs

MyDocuments = "Z:"
MyPictures = “Z:\My Pictures”
WshShell.RegWrite “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Personal”,MyDocuments,“REG_SZ”
WshShell.RegWrite “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\My Pictures”,MyPictures,“REG_SZ”

all sorted now with a nice login script :smiley:
Now to just document what i have done and then start to set up the real thing :slight_smile:
Gone and got me a nice Microsoft press book on vbscript as well.

vbs login script, now you want a pretty one, with company logo on, welcoming the user to the system, with a nice ‘made by me’ bit at the botom…

would the me be you or me? :smiley:

you of course, I could just give you the guts of what we use. well once i’d stripped it down, which I need to do anyways as it was written when I was learning and it’s not the most clean of scripts

Cool would be very grateful Dammo :slight_smile: