Como eu vejo qual usuário está bloqueando um arquivo usando o prompt de comando net file?

1

Eu pesquisei e descobri que o arquivo net pode ser usado para descobrir qual usuário está bloqueando um arquivo. Repare que eu não quero forçar o fechamento do arquivo ainda

estou no caminho certo?

    
por RollRoll 26.09.2016 / 23:18

1 resposta

0

Estou no caminho certo?

Sim.

net file sem mais opções:

list the open files on a server. The listing includes the identification number assigned to an open file, the pathname of the file, the username, and the number of locks on the file.

net file / help

The syntax of this command is:

NET FILE
[id [/CLOSE]]

NET FILE closes a shared file and removes file locks. When used without
options, it lists the open files on a server. The listing includes the
identification number assigned to an open file, the pathname of the file,
the username, and the number of locks on the file.

This command works only on computers running the Server service.

id      Is the identification number of the file.
/CLOSE  Closes an open file and removes file locks. Type this command
        from the server where the file is shared.

Leitura Adicional

por 26.09.2016 / 23:31