cannot access to network drive after successfully login
Page 1 of 2 1 2 LastLast
Results 1 to 15 of 19

Thread: cannot access to network drive after successfully login

  1. #1
    Registered User
    Join Date
    Oct 2002
    Posts
    92

    cannot access to network drive after successfully login

    Hello,

    My Laptop runs with win 2000 and services Pack 4 and a login script is allocated to it that enable it to have access to some network drives. When log into a NT domain this morning, all network drives have a small little cross beside it that shows that it is not connected. when click onto any of the network drive, it shows an error saying:
    An error occured while reconnecting to S: \\server name\sharefolder$ microsoft windows network : The local device name is already in use. This connection has not been restored.

    Action taken:
    1. Restarted computer serveral times and login.( no luck)
    2. Check network cable is tightly connected.
    3. Can access to internet and ping to the router and able to see domain when double click to My computer but not able to map any network drives.

    Please advise and share the knowledges.
    Thanks all
    a

  2. #2
    Registered User Stalemate's Avatar
    Join Date
    May 2001
    Location
    d4-e5
    Posts
    15,120
    Things to check:

    • Can you still access the shares using the UNC from a command line or in the Windows Explorer address bar - "\\server name\sharefolder$"?
    • If you right click My Computer on your Desktop and select Disconnect Network Drives, do you see the mapped drives there already? To other shares or the correct ones?
    Human beings, who are almost unique in having the ability to learn from the experience of others, are also remarkable for their apparent disinclination to do so. -Douglas Adams

  3. #3
    Registered User
    Join Date
    Jan 2001
    Location
    small dank IT hovel
    Posts
    203
    Can you ping the server?

    Can you browse via double click <Network Places> -> <Entire Network> -> <Microsoft Windows Network> -> Domain

    Can you see the Server listed?

  4. #4
    Registered User
    Join Date
    Jul 2000
    Location
    Brandon, FL U.S.A.
    Posts
    300
    This typically happens by not adding /persistent:no to the drive mapping lines in your batch file. It is not supplying the credentials and attempting to do the map because it sees said resource as already being mapped.

    Try changing your batch file to this syntax:

    net use Z: \\server\share <password> /user:domain\username /persistent:no

    Then manually disconnect all of your mapped drives and run the batch file again.

    If ALL of your drive mappings are handled by this same batch file, you could always add the following on the first line:

    net use * /delete /y

    Which will delete all of your network drives before attempting any mappings, and in that case all you would need to do it edit the batch and then run it.

    If I completely missed the mark here, I apologize for the wasted time.
    Life is 10% what happens to you and 90% how you react to it.

  5. #5
    Registered User
    Join Date
    Oct 2002
    Posts
    92
    Tks,

    To answer :

    1) Stalemate
    I cannot access using UNC command. When i disconnected all the network drive, i cannot see any network drive wne i restart my laptop and login again.

    2) PBase001
    i can see my entire network and domain when i browse it.

    3) Melmac
    I'll try it out and let you know.. Tks
    a

  6. #6
    Registered User
    Join Date
    Oct 2002
    Posts
    92
    Hi Melmac,

    I have tried your method and it is not working. See below whether i have did the correct thing.

    net use Z: \\paper\calenda$ <password> /john:abccompany\john /persistent:no

    One strange thing is that only my laptop have this problem. when i go to any other workstations with win 98 / win2000 or win xp, i have no problem loggin in using the original script file that i use to have. i believe the problem lies within the Laptop.

    Any other suggestions
    a

  7. #7
    Registered User
    Join Date
    Jul 2000
    Location
    Brandon, FL U.S.A.
    Posts
    300
    /john:abccompany\john

    should be

    /user:abccompany\john
    Life is 10% what happens to you and 90% how you react to it.

  8. #8
    Registered User
    Join Date
    Oct 2002
    Posts
    92
    Hi,

    i have make the amendment and no luck.
    Do you think the problems lies with the Laptop and the problem not lies in the server because i can see all my network drive when i log on using other workstation.

    tks
    a

  9. #9
    Registered User
    Join Date
    Jul 2000
    Location
    Brandon, FL U.S.A.
    Posts
    300
    It is definitely an issue with your laptop. This error occurs when you are trying to map a drive letter that is already mapped to another resource. Try changing the drive letter that you are mapping and see if that changes anything. It is not a network issue. If you read the error message, where it says 'local device name', that is referring to the drive letter you are attempting to map, the particular share it is connecting to, or even the credentials required for said share, does not even come into play at this point.
    Life is 10% what happens to you and 90% how you react to it.

  10. #10
    Registered User
    Join Date
    Apr 2001
    Location
    Canada
    Posts
    478
    When you logon to the laptop ensure that it shows the proper domain in the domain box and not local.
    Have you checked that the proper IP info is being handed out by the DHCP server?
    Have you tried setting a static IP with a gateway pointing to the domain server and the right DNS servers?

  11. #11
    Registered User
    Join Date
    Aug 2003
    Posts
    38
    When you log into the laptop locally (not connected to the domain), are there any "removable drives" in MyComputer?

  12. #12
    Registered User
    Join Date
    Oct 2002
    Posts
    92
    hi all,

    Melmac,
    Do you know how to manually remove any drive letter that is reside in registry or somewhere in my Laptop that had cause the local device not able to map.

    Futuretech,
    i'm very sure that i log into the correct domain. the Laptop is running in a static IP and gateway is pointed correctly. Any other suggestions.

    Reddman,
    When log in locally, only a removeable drive (thumb drive is used and the drive letter assisgn is E .

    Tks
    a

  13. #13
    Registered User
    Join Date
    Jul 2000
    Location
    Brandon, FL U.S.A.
    Posts
    300
    The next logical step is to try mapping a different drive letter and see if it changes anything. Have you tried changing the script to map a different drive letter altogether like I suggested previously?
    Life is 10% what happens to you and 90% how you react to it.

  14. #14
    Registered User
    Join Date
    Apr 2001
    Location
    Canada
    Posts
    478
    Check that the time /day/date is correct on the laptop.
    To verify if you are logging on to the domain and which server you are logging on, at a command prompt, type set and then press ENTER. Look for the LOGONSERVER entry. If it is set to the name of your computer, you were logged on using cached domain credentials. If you are logging on the domain, the LOGONSERVER entry is set to one of the domain controllers.

    Have you looked at event viewer on the machine itself or at the event viewer on the server to see if any errors are being generated?

  15. #15
    Registered User
    Join Date
    Oct 2002
    Posts
    92
    Hi

    Melmac,
    I have tried, but no luck.

    futuretech.
    I will try your method and see what is the outcome.

    By the way, any other suggestions. My laptop has the latest service pack 4 for win2000.

    Tks
    a

Similar Threads

  1. HP/Compaq HDD Capacity Lock
    By TheCardMan in forum Hard Drive/IDE/SCSI Drivers
    Replies: 25
    Last Post: March 7th, 2005, 07:50 PM
  2. cannot access cd drive
    By rosebum in forum CD-ROM/CDR(-W)/DVD Drivers
    Replies: 6
    Last Post: January 3rd, 2003, 08:22 PM
  3. ECS k7s5a network and drive problem
    By TrackMan in forum BIOS/Motherboard Drivers
    Replies: 7
    Last Post: May 1st, 2002, 07:38 PM
  4. Can't access slave drive after clean install win98SE on master
    By pennyjo in forum Windows 95/98/98SE/ME
    Replies: 3
    Last Post: January 31st, 2002, 09:42 AM
  5. Replies: 14
    Last Post: March 8th, 2001, 06:11 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •