Windows:列出我的计算机中的共享文件夹路径及其关联的共享名称

Windows:列出我的计算机中的共享文件夹路径及其关联的共享名称

如何获取计算机上的网络共享列表以及每个共享文件夹的关联路径名?

答案1

从命令提示符或 powershell 中,只需运行

net share

以及所有共享的列表,包括名称、本地路径(资源)和有关共享的管理备注

PS C:\Windows\system32> net share

Share name   Resource                        Remark

-------------------------------------------------------------------------------
C$           C:\                             Default share
D$           D:\                             Default share
F$           F:\                             Default share
G$           G:\                             Default share
IPC$                                         Remote IPC
ADMIN$       C:\Windows                      Remote Admin
isos         D:\isos
Source       D:\Source
The command completed successfully.

PS C:\Windows\system32>

答案2

对于从 Windows Vista 开始的客户端操作系统以及从 Windows Server 2003 开始​​的服务器操作系统,您可以使用wmic

wmic share get caption,name,path

相关内容