Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Drive mapping

Status
Not open for further replies.

finsalgal

IS-IT--Management
Mar 29, 2003
11
GB
I am trying to map a drive to the application i need to run. ie sys\data i have tried always to do this. It works fine each time but loses the setting on reboot. I have selected the check box to allow windows to map this every time windows starts but that does not work. The system is xp professional. Anyone any ideas??
 
Why don't you map this drive in the login script, then the drive will map every time the user logs in? This is the best way to do drive mappings.

-----------------------------------------------------
"It's true, its damn true!"
-----------------------------------------------------
 
Thelad is correct. I suggest making a group that will ahve access to this app. Then in the login script do something like this:
IF MEMBER OF "APPGROUP.." THEN
MAP P:=SERVER\SYS1:FOLDER
END
Notice the group has the trailing dots to show the correct context. You need that or the full context.
You could also use the ROOT command in the mapping to keep them from browsing up the volume. Like this:
MAP ROOT P:=SERVER\SYS1:FOLDER

Jon

There is much pleasure to be gained from useless knowledge. (Bertrand Russell)
 
Thanks for your help. It works fine now.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top