I mapped a network drive to a location that needs a password. Now whenever my computer starts up, it tells me that it could not connect to that network drive because a password is needed. How do I make set my computer to remember the password for that mapped network drive?

EDIT: My PC is running Windows XP Professional

link|improve this question

Could posssible specify Windows XP Home or Professional? – Diago Aug 17 '09 at 10:59
feedback

4 Answers

up vote 12 down vote accepted

There's two was to do it - the GUI, or a command line.

GUI Method

  1. Right click 'My Computer' -> 'Disconnect Network Drive'.
  2. Select your network drive, and disconnect it.
  3. Right click 'My Computer' -> 'Map Network Drive'.
  4. Enter the path, and click 'Connect using a different username and password'
  5. Input the appropriate username and password.

Command Line

  1. Create a new batch file with the follwing:
@echo off
net use x: /delete
net use x: \\server\share /USER:COMPUTER\User password
exit

Where:

x: is your preferred drive
\\server\share is your computer name, and share name
COMPUTER\User is the computer's name (or IP) and a valid username on that PC.

Save this in your startup; and it will run when you log onto the computer. The batch file is my personal preferred method, because it overrides any stale credentials that your computer might be saving.

Also keep in mind authentication. When Windows connects to another computer, it first uses your logon information to authenticate. Normally, the guest account is enabled, which is why most computers won't prompt for a password. If that doesn't work, you need to specify an account that is on the remote computer; in the form of COMPUTERNAME\Username. You can specify COMPUTERNAME as a NetBIOS name, or you can use an IP address, such as 192.168.0.100; or whatever the case may be.

link|improve this answer
The GUI didn't help - it still didn't remember my password the next time I logged on. The command line helped - thank you very much. – Lea Cohen Aug 20 '09 at 7:03
feedback

Normally when you are prompted for the password, there is a little checkbox to 'remember my password'.

If it doesn't prompt you, then maybe this kb article will help.

Where this appears to fail is if you are connecting to the server using the same username as you are using to logon into windows but with different password. (I am guessing that windows can not remember two passwords for the same name).

link|improve this answer
feedback

the solution is as answered here : How to save map drive password , worked for me.

Map the drive using this syntax at the command prompt:

net use X: \Hostname\Share /savecred /p:yes

It will then prompt for a username and password, which will be saved and will not prompt even after a reboot.

You can also add the credentials by opening Start → Run → control userpasswords2 → Advanced → Manage Passwords.

This feature exists on Windows XP and later.

link|improve this answer
feedback

if you have already stored a (possibly wrong) Password, then Windows will try to use the wrong password first and then you get the prompt for entering the password. (If you enter the right password, possibly the old password is not replaced?)

you cancheck it Start - Run:

control keymgr.dll

and check if there are any stored passwords for your Network drive?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.