How To Create A Group Policy Drive Mapping?

Asked By 10 points N/A Posted on -
qa-featured

I want to map drives on individual system by using batch programs and those bat files need to be stored to each system using the group policy drive mapping.

SHARE
Answered By 0 points N/A #128794

How To Create A Group Policy Drive Mapping?

qa-featured

You can create a drive mapping batch file by the following steps.

Step 1: open notepad application in Windows and type

@echo off

net use <map-letter>:\<server-name><shared-folder-name> <password> /user:<domain><user-name>

/persistent:yes

For example:

net use P: \TechyVServer123g$ pASswOrD

/user:TechyVITAdmin /persistent:yes

Step 2: Save the file as mapdrive.bat in the required folder

Step 3: When you require to open the mapped drive or create one you can double click the batch file.

Step 4: Finally place these batch files to each system by using shared folders or shared connection.

Related Questions