Windows – “net use /delete” question

command linenetwork-sharesnetworkingwindows xp

I want to delete a network connection. When I type net use I get this:

 Microsoft Windows XP [version 5.1.2600]
 (C) Copyright 1985-2001 Microsoft Corp.

 C:\Documents and Settings\toto>net use

 État         Local     Distant                   Réseau

 -------------------------------------------------------------------------------
 OK           M:        \\192.168.5.138\share  Réseau Microsoft Windows
 OK           R:        \\192.168.2.18\tools   Réseau Microsoft Windows
 OK                     \\192.168.2.43\data   Réseau Microsoft Windows
 La commande s'est terminée correctement.

The syntax for deleting a network map is net use /delete X: if I want to delete one specific connection, or net use /delete ** if I want to delete all connections.

How can I delete the \\192.168.2.43\data connection which, as you can see, is not linked to any logical letter?

Best Answer

net use \\192.168.2.43\data /delete
Related Question