logon script

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

we have win 2000 advanced server environment. i want to create a shared
network drive in the DC machine and assign a drive letter say P. this shared
network drive should be available for any user who logs into the domain.

your help is appreciated.
 
sridhar said:
we have win 2000 advanced server environment. i want to create a shared
network drive in the DC machine and assign a drive letter say P. this shared
network drive should be available for any user who logs into the domain.

You could do this with a group policy logon script:
"UserConf\Windows Settings\Scripts\Logon"

In the script, you can map the share via "net share" like:
net use p: \\server\share /persistent:no

"net use /?" at the command-line will also help you.

cheers,

Florian
 
hi thanks for that

can you pls. guide me as to how do i goto the group policy option in a
windows 2k server.
can you pls. guide me after this
start->programs->admin tools->
 
Back
Top