33

By default when I access some computer's share ( typing \\hostname in Windows Explorer ) Windows passes credential of my current user. It prompts for credentials only when current user's credentials are incorrect.

Is there some way to force Windows not to pass current user's credentails, but prompt for them ? I thought about making use of net view command, but it doesn't grab 'user' and 'password' parameters.

malloc4k
  • 831
  • 2
  • 9
  • 16

3 Answers3

37

if you type the command

net use \\SERVERNAME /u:DOMAIN\USER 

you will be prompted for the password of that user to be used when accessing that server

Phil
  • 3,138
  • 1
  • 21
  • 27
25

If the accepted answer gives you this error;

System error 1219 has occurred.

Multiple connections to a server or shared resource by the same user, using 
more than one user name, are not allowed. Disconnect all previous connections 
to the server or shared resource and try again.

You'll need to first remove the existing shares. If you're in a hurry, this will nuke all of them, regardless of server;

NET USE * /DELETE

If, you want to be a bit more precise and preserve your other shares, use the following command to list the existing shares on the server;

NET VIEW \\SERVERNAME

Then delete the conflicting share with;

NET USE \\SERVERNAME\SHARENAME /DELETE

Finally, using the accepted answer will succeed;

NET USE \\SERVERNAME\SHARENAME /u:USERNAME
Enter the password for 'USERNAME' to connect to 'SERVERNAME':
The command completed successfully.
Shawn McGough
  • 471
  • 6
  • 9
0

Remember that this must be typed at the command prompt (CMD) opened with administrator permission, or in Windows powershell also with administrator permission.

Once this is done you can use run (winkey + r) and enter the address you want to access (\serverName\shareName).

Dave M
  • 4,494
  • 21
  • 30
  • 30