1

I have a network folder. The login credentials changed, and I can't reenter them. I tryed google the solution but net use * /d is not working. It deletes the cache, but then black magic happens, and the old ones are instantly rewritten there, if I try to open the network folder.

C:\Users\*********>net use
A rendszer tárolja az új kapcsolatokat.

A listában nincsenek bejegyzések.

After aptemting to open the folder:

C:\Users\*************>net use
A rendszer tárolja az új kapcsolatokat.


Állapot      Helyi     Távoli                    Hálózat

 -------------------------------------------------------------------------------
OK                     \\**.*.*.***\server       Microsoft Windows Network

But these are the old credentials.

Thank you for your answers!

Mokubai
  • 95,412

2 Answers2

1

Issue the:

    net use * /delete /yes

And then try and see if you can force the proper credentials with:

    net use \\servername /user:\\servername\username password

For example, my test user name, password, and server are: cjohnson Password1234 and \\dev respectively.

    net use \\dev /user:dev\cjohnson Password1234
0

Try this:

net use \\**.*.*.***\server /d /PERSISTENT:YES
Josem
  • 199
  • 1
  • 13