Login Scripe

M

manojmsr

Sir,

e.g.

I have windows 2000 advanced server as a domain controller. In this DC
there is 2 folders A & B . We have 2 users A & B. Whenever user A
logged in his folder A should come there as a F: (F Drive). Whenever
user B logged in his folder B should come there as a F: (F Drive).
But i want whenever user B logged in folder B should come as F drive
as well as folder A should come as G: .
please help me. waiting for your reply

regards,
manoj
 
P

Pegasus \(MVP\)

Sir,

e.g.

I have windows 2000 advanced server as a domain controller. In this DC
there is 2 folders A & B . We have 2 users A & B. Whenever user A
logged in his folder A should come there as a F: (F Drive). Whenever
user B logged in his folder B should come there as a F: (F Drive).
But i want whenever user B logged in folder B should come as F drive
as well as folder A should come as G: .
please help me. waiting for your reply

regards,
manoj

You could create a logon script of this form:

@echo off
if /i "%UserName%"=="A" (
net use F: \\YourServer\ShareA
)

if /i "%UserName%"=="B" (
net use F: \\YourServer\ShareB
net use G: \\YourServer\ShareA
)

By the way, it's a bad idea to use the low letters of
the alphabet for shared drive letters. They tend to
interfere with USB devices. Much better to use letters
higher than O:.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top