如何查看哪个用户正在使用命令提示符网络文件锁定文件?

如何查看哪个用户正在使用命令提示符网络文件锁定文件?

我搜索了一下,发现可以使用 net file 来找出哪个用户正在锁定文件。请注意,我暂时不想强制关闭该文件

我走的路对吗?

答案1

我走的路正确吗?

是的。

net file无需任何其他选择即可:

列出服务器上打开的文件。该清单包括分配给打开文件的标识号、文件的路径名, 用户名以及文件上的锁的数量。


网络文件/帮助

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.

进一步阅读

相关内容