the reply for this issue is here.
http://superuser.com/questions/123833/how-do-i-change-the-user-i-am-logged-in-with-on-a-network-share
The network folder specified is currently mapped using a different user name and password", when trying to connect to a drive remotely.
Are you mapping the share to your system, or merely accessing them directly via My Computer? If you map the drive, then you can chose the link to Connect using a different user name and choose the user/password there. The 'net use' command will also allow you
to access a share using alternate credentials, but not sure if it will allow you to browse the share without mapping it using those alternate credentials.
share|improve this answer
'net use' worked! The command 'net use \SERVER * /user:username' works to change the credentials for the share. Thanks! – Tim M Mar 25 '10 at 3:31
@Tim M: Actually, it seems to work better as net use \SERVER\SHARE ... -- that is, without the asterisk (and with a sharename, but I assume you used one when you actually ran it ;-). The asterisk causes a drive letter to be assigned; do this too many times
and you'll run out! – SamB Jul 4 '10 at 20:23
I have the same problem, but when doing it I get an error System error 1326 has occurred. and Logon failure: unknown user name or bad password. but I know the username and passwor dare correct – Petah May 17 '11 at 3:50
add a comment |
up vote 21 down vote
You can override stored credentials for shares in Windows via the Control Panel. I believe this should be possible since around Windows 2000, or at least XP. However, the names of these functions are different in all versions. I am using names from Windows
7 in this post.
Open your account page in User Accounts and Family Safety.
(Click your image in the start menu, or navigate through control panel).
In the left hand side panel, select Manage your credentials.
Under Windows Credentials:
If the server in question has an entry, delete it.
(Most likely it will not be present, if you haven't been here before).
Select Add a Windows Credential.
Enter the server (e.g. \10.0.0.2\myShare).
Enter new desired credentials.
Now, when navigating manually to \10.0.0.2\myShare, it will not use the old credentials any more.
share|improve this answer
Apparently the cmdkey utility is used to manage this from the command line. – Martin Aug 1 '14 at 13:35
I tried to use what Matrix and Tim both suggested, but that did not work for me. In my case I ended up using
net use \SERVER\share /delete
What this did was terminate all connections to the share drive and then when I tried to reconnect it prompted me for my username and password again.