When I was trying to access samba shares from windows I was able to access the shares with entered user name and password but that was happening only once; as windows was storing the session details; I was not able to login with different user name other share access; I was getting error
"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.."
one solution to this is reboot the windows system and try again. But that's very rude solution.
Simple solution is
Open a Command Prompt and type these commands:
net use (to see all existing connections)
net use * /del /yes (to delete all existing connections)
Great..
"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.."
one solution to this is reboot the windows system and try again. But that's very rude solution.
Simple solution is
Open a Command Prompt and type these commands:
net use (to see all existing connections)
net use * /del /yes (to delete all existing connections)
Great..
Comments