On my Windows XP, I am connected to a network shared folder on another Windows XP machine. I access the shared folder through UNC path, e.g.: \Server\shared_folder1\ When I access it first time, it asks for login credentials; but second time onwards, it opens automatically without showing login dialog box (assuming the same credentials). But I need to use a different credential to access the same shared folder. How can I logout from the shared folder which I have already accessed in the current Windows session without restarting the system?
Asked
Active
Viewed 6.7k times
4 Answers
13
Go to Control Panels/User Accounts
Change an account
Click your account
In "Related Tasks" click "Manage my network passwords"
Remove the network location you want to logout from
bateman_ap
- 231
8
Go to Control Panel\All Control Panel Items\Credential Manager, it will have all the IDs and Passwords of the shared network folders that were saved.

Glorfindel
- 4,158
6
You can goto the command line and remove the shared drive:
net use /delete s:
Then you can reconnect as needed:
net use /persistent:yes s: \\server\dir
Ken Brittain
- 176