login script &AD

  • Thread starter Thread starter pooch
  • Start date Start date
P

pooch

Question:

I want my user to login and automatically have a folder
created on a separate server with permissions for only
them. i want this folder to be mapped to a drive, say
P:\, so that they can save their data and work to it there
always. No matter what terminal they log in to, they can
acces teh P:\ drive, and it will be theirs.
Is this done with a script? a COM+? Im a way behind in
this area.

Does anyone know where I can find this info?
 
Question:

I want my user to login and automatically have a folder
created on a separate server with permissions for only
them. i want this folder to be mapped to a drive, say
P:\, so that they can save their data and work to it there
always. No matter what terminal they log in to, they can
acces teh P:\ drive, and it will be theirs.
Is this done with a script? a COM+? Im a way behind in
this area.

Does anyone know where I can find this info?

ON the separate server, create a folder called USERS.

For each user, create a sub-folder called UserName.
Share that folder as UserName$
Set appropriate permissions.
net user username /homedir:\\Server\username$

You can use tip 4646 in the 'Tips & Tricks' at http://www.jsiinc.com
to do the above for all users.

In a logon script:

net use p: /delete
net use P: \\Server\%username%$




Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
oops.

net user username /homedir:\\Server\username$ /domain

Question:

I want my user to login and automatically have a folder
created on a separate server with permissions for only
them. i want this folder to be mapped to a drive, say
P:\, so that they can save their data and work to it there
always. No matter what terminal they log in to, they can
acces teh P:\ drive, and it will be theirs.
Is this done with a script? a COM+? Im a way behind in
this area.

Does anyone know where I can find this info?

ON the separate server, create a folder called USERS.

For each user, create a sub-folder called UserName.
Share that folder as UserName$
Set appropriate permissions.
net user username /homedir:\\Server\username$

You can use tip 4646 in the 'Tips & Tricks' at http://www.jsiinc.com
to do the above for all users.

In a logon script:

net use p: /delete
net use P: \\Server\%username%$




Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 

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

Back
Top