I have a map drive created from Tools>Map network drive. Where in the drive is mapped to a different machine's shared folder.So each time i switch off the machine ,it asks for password when i open the drive.Is there a way to save this password?

FYI The OS i am having is windows XP.

link|improve this question

40% accept rate
Which version of Windows? I know on XP and Vista / 7 there is a way. – Randolph West Apr 13 '10 at 5:00
updated my question – Ravisha Apr 13 '10 at 5:20
feedback

2 Answers

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
Its Not working – Ravisha Apr 15 '10 at 5:04
@Ravisha What happens when you try? Do you get an error message? Can you post the exact text you are typing which isn't working? – Stephen Jennings Apr 15 '10 at 5:32
I have given the proper password in the way you mentioned.I am not getting any error,but its asking for password when i open the mapped drive – Ravisha Apr 15 '10 at 6:11
If you go to control userpasswords2 > Advanced > Manage Passwords, does the computer name show up there? Try deleting it if so, then run the net use command again, and make sure you get the message "The operation completed successfully." – Stephen Jennings Apr 15 '10 at 13:58
did that,but still on restart the password has to be entered – Ravisha Jun 1 '10 at 2:47
show 1 more comment
feedback

First, if you're in a domain environment, you would give the correct NTFS permissions to the share and setup a login script. I like using net use

net use z: \\server\sharename

If you're in a workground environment, if you create the same user name and password on the shared machine as you're logging in at the client you can do the same thing.

If something like that isn't available you can specify the user name and password with the script.

net use z: \\server\sharename /user:machinename\username Password

I make it a little harder for the average user to know the permissions and set it as an exe with this tool.

http://download.cnet.com/Bat-To-Exe-Converter/3000-2069_4-10555897.html

link|improve this answer
Using the second method, if the drive becomes disconnected (not unmapped, just disconnected), it will prompt for a password next time it is accessed. The /savecred argument stores the credentials in LSASS protected storage so they can be reused automatically. – Stephen Jennings Apr 13 '10 at 5:40
feedback

Your Answer

 
or
required, but never shown

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