Network Drive in Local profile

  • Thread starter Thread starter Andrew
  • Start date Start date
A

Andrew

Hi,

How to preset network drive in all local profiles without logging in each
account?
Thanks!

Andrew
 
Andrew said:
Hi,

How to preset network drive in all local profiles without logging in each
account?
Thanks!

Andrew

What exactly do you mean with "without logging in each account"?
 
For example, I created a local account named ABC and assign initial
password.
I can set the network by log on with ABC and manually map the network drive.

So if I created 20 accounts, I want to know if there is any way to set it
globally so that I need not logon their accounts one by one and set the
network drive manually.

I guess the network drive information is stored in local profile but don't
know where.

Thanks for your help!
 
Andrew said:
For example, I created a local account named ABC and assign initial
password.
I can set the network by log on with ABC and manually map the network drive.

So if I created 20 accounts, I want to know if there is any way to set it
globally so that I need not logon their accounts one by one and set the
network drive manually.

I guess the network drive information is stored in local profile but don't
know where.

Thanks for your help!

Instead of mapping the drive manually in each profile, script it:
1. Click Start / Run / cmd {OK}
2. Type the following commands:
notepad "%AllerUsersProfile\Start Menu\Programs\Startup\netlogon.bat"
{Enter}
@echo off {Enter}
net use /persistent:no {Enter}
net use * /del /y {Enter}
net use S: \\SomeServer\SomeShare {Enter}
3. Save and exit, then try it out.

You will find that every user will run netlogon.bat and thus get
the drive mapped.
 
Back
Top