0

I couldn't create a VHD disk on a remote share (\\ortak\backup\lucasrv) because I supplied the wrong credentials, and saved them in the Remote File Browser dialog box.

I can create VHD disks at \\ortak2\backup\lucasrv, the test location.

How can I reset saved user credentials? I think the information is stored in Hyper-V Server 2012 because I've tried to add a disk from a different Hyper-V Manager with no luck. Resetting the user credentials in Hyper-V Manager won't help.

enter image description here

Cosmic Ossifrage
  • 1,640
  • 14
  • 23
Nime Cloud
  • 466
  • 1
  • 4
  • 17
  • Two options: (1) In the start menu search for "manage passwords" and take a look at the various saved Windows Credentials. (2) from a command line `net use` to list and `net use \\server\share$ /delete` to delete one. – Brian Sep 21 '15 at 13:53

2 Answers2

0

At the command prompt, issue the command net use and validate that no active connections are open to the server.

If not, issue the command:

net use * /delete

then attempt to re-connect. You should be prompted for credentials again.

Cosmic Ossifrage
  • 1,640
  • 14
  • 23
yagmoth555
  • 16,758
  • 4
  • 29
  • 50
0

net use \\sharename /delete won't work until you log off. You must log off.

Nime Cloud
  • 466
  • 1
  • 4
  • 17