Connecting Multiple Drives and Permission to users

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • raj96ct18
    New Member
    • Feb 2007
    • 6

    Connecting Multiple Drives and Permission to users

    Hi,

    I need to know how do i give multiple drive connection to users. Iam using windows 2003 server as my file server, right now iam able to give only one drive access to the users. but now i need to give multiple drive for the users for different purpose.

    Please let me know how do i do it

    regards
    Rajesh
  • Cyberdyne
    Recognized Expert Contributor
    • Sep 2006
    • 627

    #2
    Go in My Computer in the user's station and map as many network drives as you want. Its Under tools > map network drive...

    Good Luck, Cyber

    Comment

    • raj96ct18
      New Member
      • Feb 2007
      • 6

      #3
      Originally posted by Cyberdyne
      Go in My Computer in the user's station and map as many network drives as you want. Its Under tools > map network drive...

      Good Luck, Cyber
      hi thanks for that, bit i need to know how do i connect sitting from the server without doing any thing on the client machine

      Comment

      • bartonc
        Recognized Expert Expert
        • Sep 2006
        • 6478

        #4
        Originally posted by raj96ct18
        hi thanks for that, bit i need to know how do i connect sitting from the server without doing any thing on the client machine
        There's a check box there where Cyberdyne said to look. It says "Reconnect at logon".

        Comment

        • Cyberdyne
          Recognized Expert Contributor
          • Sep 2006
          • 627

          #5
          Ok so if you are on a domain go to the user and assign them a drive (this will depend on the version of the server, small business or standard, R2 or non R2)

          But either one has the capacity...

          In the server management go to users, right click on the user you want and go to properties, then go to Profile then Under Home folder Check "Connect" choose the drive you want.

          Good Luck. (don't forget to relogon the user for changes to take effect)

          Cyber

          Comment

          • raj96ct18
            New Member
            • Feb 2007
            • 6

            #6
            Originally posted by Cyberdyne
            Ok so if you are on a domain go to the user and assign them a drive (this will depend on the version of the server, small business or standard, R2 or non R2)

            But either one has the capacity...

            In the server management go to users, right click on the user you want and go to properties, then go to Profile then Under Home folder Check "Connect" choose the drive you want.

            Good Luck. (don't forget to relogon the user for changes to take effect)

            Cyber

            Thanks for that but i need to connect multiple drives to a single user how do i do it without mapping it on the client machine my question was this is there a way that ican do it

            Comment

            • Cyberdyne
              Recognized Expert Contributor
              • Sep 2006
              • 627

              #7
              Looks like you will have to do a group policy and run client install commands on next logon.

              Cyber.

              Comment

              • tofuman
                New Member
                • Apr 2007
                • 1

                #8
                Originally posted by Cyberdyne
                Looks like you will have to do a group policy and run client install commands on next logon.

                Cyber.
                So, would you please teach us how to do it? I need to make it work for my users. Many thanks. :)

                Comment

                • RevBooter
                  New Member
                  • Mar 2007
                  • 69

                  #9
                  do you use active directory? if so setup a batch file, and add it to the login script under account tab for each particular user. this will run under every long on. will go something like...

                  //this part deletes the drives on logon
                  net use h: \\servername\sh arename /d
                  net use i: \\servername\sh arename /d
                  net use j: \\servername\sh arename /d

                  //this part remaps the drives on logon
                  net use h: \\servername\sh arename
                  net use i: \\servername\sh arename
                  net use j: \\servername\sh arename

                  try that, if not i think you cans till setup a logon script under xp!

                  Comment

                  • Dedric Starks
                    New Member
                    • Apr 2007
                    • 23

                    #10
                    I've got 2 words for you.

                    VBS Script

                    Comment

                    • RevBooter
                      New Member
                      • Mar 2007
                      • 69

                      #11
                      batch file far easier! vbscripts can be a bit complex for inexperience scripters!

                      Comment

                      • Dedric Starks
                        New Member
                        • Apr 2007
                        • 23

                        #12
                        True... or....I could just post the text of the script :D

                        Set objNetwork = CreateObject("W Script.Network" )
                        objNetwork.MapN etworkDrive "Drive letter here:" , "Put in Network drive path here"

                        Comment

                        Working...