Como faço para desconectar o Login de Rede não mapeado?

1

Conectei-me a uma pasta compartilhada de rede, mas não a mapeei para nenhuma unidade. Agora quero desconectar esse local compartilhado sem reiniciar meu PC. Como eu posso fazer isso?

    
por Dhwani 13.01.2014 / 12:12

1 resposta

0

Este link deve ajudá-lo com isso.

Open up a command prompt, and then type in the following:

net use

This will give you a list of the connected drives, including the ones that aren’t actually mapped to a drive letter. To disconnect one of the connections, you can use the following command:

net use /delete \server\sharename

For example, in this instance we’d disconnect like so:

net use /delete 2.168.1.205\root$

    
por 13.01.2014 / 12:48